When server gets reboot it requires at least 5-10 mins(depends on server hardware and services running) to start all the services so it’s better to keep patience.
After that if your service not fall into automatically start category then you’ve to manually start that service on server.
If your service fall into automatically start service when server boots up then wait 5-10 minutes and after that you can check your project URL whether it’s working or not, if not working then check your web server status is active/deactivated.
If web server status is deactivated then simply start web service by suitable command.
Here are some important commands,
For service status check:
Apache: service apache2 status
node: pm2 list
mysql: service mysql status
mongodb: service mongodb status
For start service:
Apache: service apache2 start
node: pm2 start /path/server.js
mysql: service mysql start
mongodb: service mongodb start
For restart service:
Apache: service apache2 restart
node: pm2 restart /path/server.js
mysql: service mysql restart
mongodb: service mongodb restart
Note: Always check live projects URLs and keep file updated.
Development server- Live(public) URLs
(Permission required to edit into sheet)