Topic starter 19/08/2021 12:23 am
How to verify if nginx is running or not on ubuntu server?
myTechMint liked
20/08/2021 11:33 pm
You can verify if Nginx is running or not on the Ubuntu server with the below command
service nginx status
You can use the below commands to start, stop and restart Nginx on Ubuntu
sudo systemctl start nginx
sudo systemctl stop nginx
sudo systemctl restart nginx