You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2. Navigate to `Access -> Tunnels -> Create a tunnel`.
3. Fill in a name you like and save the tunnel.
4. Find the code block below `If you already have cloudflared installed on your machine`.
## Starting the Cloudflared Service
To start the Cloudflared service on your machine, follow the steps below:
```bash
# Start the service
/etc/init.d/cloudflared start
# Remove the service from the default runlevel (just in case it was added earlier)
rc-update del cloudflared
# Add the service to the runlevel again (this ensures that the service starts automatically when the system boots)
rc-update add cloudflared
# Start the service immediately
rc-service cloudflared start
# Add the service to the default runlevel
rc-update add cloudflared default
```
That's it! You have successfully installed and set up Cloudflared on your system.
## Troubleshooting
If you encounter any issues while following this guide, please check the official [Cloudflared documentation](https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/installation) for further help.