What happened and how do I fix this?
According to the error message, the Remote.It daemon was able to connect, but the service on the device either isn’t running or it is not running on the configured port.
In this case, the troubleshooting would be as follows.
Verify that the service reachable and listening on the configured port device locally.
You can do this by using netstat or telnet from the device command line. If you are using a Pi, this should work with default tools installed. (Replace the port in this example (22) with the port you have configured in Remote.It for the service.
curl -v telnet://127.0.0.1:22
If you get a timeout, then the device is not listening at that address and port.
Do the following:
- Check that the service is enabled or still running
- Check that the service is listening on the port
These things usually resolve the issue.