To restart a Nginx server or service, we can use the systemctl
command-line utility followed by the reload nginx
command in Linux.
# Restarts Nginx service
sudo systemctl reload nginx
What is systemctl
?
- The
systemctl
is a command-line utility that is used to control and manage thesystemd
services. - It is widely used with web server services like Nginx, Apache, etc.