How to verify if Ng...
 
Share:
Notifications
Clear all

How to verify if Nginx is running or not on ubuntu server?


Neha
 Neha
(@asha)
Member Admin
Joined: 4 years ago
Posts: 31
Topic starter  

How to verify if nginx is running or not on ubuntu server?


Quote
Topic Tags
myTechMint
(@mytechmint)
Member Moderator
Joined: 4 years ago
Posts: 52
 

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

ReplyQuote