Yesterday, due to a payment issue, DigitalOcean stopped all our servers. After resolving the payment with a new card, we restarted all the servers. While most droplets came back online, one critical droplet named ejabbered is still not responding. Here’s what we tried so far:
The droplet is running XMPP+MQTT, which is vital to our operations. The downtime is severely impacting our system, and we’re completely lost on how to recover the service.
Could anyone guide us on how to troubleshoot or recover the service? We’d appreciate any advice or steps to fix this issue.
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.
Hey Shreyash,
Can you share the exact error that you get when you try to access the server? Is it timing out when you try to SSH or is it timing out when you try to access the MQTT service only?
If it is the SSH connection that is timing out, since you’ve already tried power cycles and recovery mode, the next step is to confirm whether the Droplet is actually booting correctly:
Also once you access the server either via the recovery console, can you make sure the network interfaces are correctly set up by running:
And next, verify that your droplet has internet connectivity:
Still on the networking side of things, can you check that your firewall (UFW or iptables) isn’t blocking necessary ports for XMPP and MQTT?
If you are able to SSH to the Droplet and the networking looks ok, then it’s possible that the services themselves failed to start after the Droplet came back online. Can you try the following:
If the services are still not responding, the logs might provide more information:
Another thing that you should check is that the Droplet has enough disk space:
If your services rely on a database, check if the database service (like MySQL or PostgreSQL) is running.
If none of the above steps resolve the issue, you may want to consider restoring from a recent snapshot or backup if you have one available.
Let me know how it goes, and if you run into any specific error messages, feel free to share them here!
- Bobby