Reputation: 2059
I can not connect to my droplet on digital ocean. I create it, work with it, copy and launch my project on the server and all this I do from local laptop, without any problem. But after a while, the server not connected by 'ssh'. I can join into console from digitalocean site and all well work.
But in remote, by ssh I get timeout connecting error every time.
Upvotes: 1
Views: 3491
Reputation: 11
The problem sometimes might be not enabling port 22.
Once you are logged in to your web console, us this command
sudo ufw allow 22
Upvotes: 1
Reputation: 2059
Resolved.
The problem is that I created an easy password for the server. When I did create strong password the issue not repeats.
Upvotes: 1
Reputation: 151
There could be multiple reasons behind this, Maybe you misconfigured your firewall and you are blocking incoming ssh connections to your droplet. Another reason could be that your ssh server is down, or the you changed the default ssh port.
Upvotes: 0