Installing Edge behind a proxy means that the Edge instance cannot directly access the internet and all communication to ThingsBoard Cloud or any other external service is routed through a proxy server.
Compare:
Without Proxy (direct connection):
With Proxy (indirect connection):
Using a proxy server allows enhancing security by filtering and monitoring internet traffic. In restricted environments, direct internet access is often deliberately blocked, making proxy configurations a necessity for maintaining security protocols.
Beyond security, proxies can cache resources that can substantially reduce overall network consumption and improve performance for distributed systems like ThingsBoard Edge.
Have a proxy server (HTTP or HTTPS) with its address, port, and credentials (if required).
Consider the addresses that should bypass the proxy (e.g., internal resources).
Have Java 17 installed.
ThingsBoard Edge is installed and running.
Step 1. Modify Configuration File
To configure ThingsBoard Edge behind proxy running on debian-based installation (e.g., Ubuntu), modify the tb-edge.conf file:
1
2
3
4
5
6
7
8
sudo tee-a /etc/tb-edge/conf/tb-edge.conf > /dev/null <<EOL
#Enable the proxy
export CLOUD_RPC_PROXY_ENABLED=true
#Set the proxy server host and port
export CLOUD_RPC_PROXY_HOST="proxy_host"
export CLOUD_RPC_PROXY_PORT="proxy_port"
EOL
Replace proxy_host and proxy_port with your proxy’s hostname and port.
If there are hosts that should bypass the proxy (e.g., local network addresses), set using a format like: localhost|127.0.0.1|yourdomain.com
Configure Authentication (If Required)
If your proxy requires authentication, add the following parameters:
1
2
3
#(Optional) Add authentication if requiredexport CLOUD_RPC_PROXY_USERNAME="proxy_username"export CLOUD_RPC_PROXY_PASSWORD="proxy_password"
Replace proxy_user and proxy_password with your actual credentials.
Verify the Changes (Optional)
To verify the changes, run the following command:
1
cat /etc/tb-edge/conf/tb-edge.conf
Step 2. Restart ThingsBoard Edge
For the changes to take effect, restart the service after modifying the tb-edge.conf file:
1
sudo service tb-edge restart
Once the Edge service is started, open the Edge UI at http://localhost:8080. Use the tenant credentials to log in.
If the Edge HTTP bind port was changed to 18080 during Edge installation, access the ThingsBoard Edge instance at http://localhost:18080.
Troubleshooting
ThingsBoard Edge logs stored in the following directory:
1
/var/log/tb-edge
To check if there are any errors on the service side: