Today when i was making a dropplet that had a postgreSQL database and a Mariadb, everytime that i closed the console and tried to open it up again there was an {“errors”:“SSH CONNECTION LOST”}, i tried to create another dropplet with the same configuration but the same error appears over and over again.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hello @edivaldovictor
Can you share more about the configuration and what ssh-client/console are you using?
This error can occur due to session timeout for inactivity or memory-related issue and so on.
Regards
Hi @edivaldovictor,
So, you were getting {“errors”:“SSH CONNECTION LOST”} when you were trying to SSH or were you getting the error when you just minimized your terminal and opened it a little after that?
If it’s the second, usually terminals do time out when you don’t do anything and just leave them like that. To set the SSH keep-alive option on the server edit the file /etc/ssh/sshd_config. Add the line
ClientAliveInterval 60
. Afterwards restart the serviceservice sshd restart
.