Reboot question
-
I'm now restoring the Vultr backup taken this morning at 9 am. I was never able to get my Cloudron installation to run following the reboot -- all it did was show me the red bar with the "Cloudron is rebooting" message, even though when I used the Vultr instance console it was obvious that Ubuntu had completed the reboot and was ready.
This is the third time I've had to do this. What am I doing wrong? -
It didn't work. The backup from 9 this morning has been restored, but the Cloudron install still refuses to boot.
I'm now going to have to install a fresh Cloudron and painstakingly re-install everything (losing all my email records in the process. It will probably entail a complete re-working of all my Cloudflare settings.Surely this isn't normal.
-
-
Reboots are usually quite fast in those VPSs so it seems the instance breaks the installation during bootup. If this happens again, SSH into the machine and look at the system logs as well as
/home/yellowtent/platformdata/logs/box.log
Further make sure thebox
andnginx
service is running. This can be checked withsystemctl status box/nginx
for example. -
Reboot are usually instantaneous, less than a minute. I think the issue here is something else. As @nebulon suggested, after a reboot, if things are unreachable, check the following in order:
- Can you SSH into the server?
- After SSH, try
systemctl status box
andsystemctl status nginx
. Are they both in running state ?- If they are not, try
journalctl -u nginx -fa
for nginx andtail -f /home/yellowtent/platformdata/logs/box.log
for box
- If they are not, try
- If both above work, check if there is some DNS issue. If you do
host my.cloudrondomain.com
on your PC/laptop, does it return the IP address of your server? Note that in some VPS providers when you restore from backup, the IP address changes. If this is the case, then the DNS must be updated accordingly to access the dashboard. If the DNS entry is wrong, you will see the red banner that you saw in your case.