Complete the command to start the nginx service.
sudo systemctl [1] nginxThe start command tells systemctl to start the nginx service.
Complete the command to stop the nginx service.
sudo systemctl [1] nginxThe stop command tells systemctl to stop the nginx service.
Fix the command to reload nginx configuration without stopping the service.
sudo systemctl [1] nginxThe reload command tells systemctl to reload the nginx configuration without stopping the service.
Fill both blanks to restart nginx and check its status.
sudo systemctl [1] nginx && sudo systemctl [2] nginx
restart stops and starts nginx to apply changes, and status shows if nginx is running.
Fill all three blanks to reload nginx, then check its status and enable it to start on boot.
sudo systemctl [1] nginx && sudo systemctl [2] nginx && sudo systemctl [3] nginx
This sequence reloads nginx configuration, checks if nginx is running, and enables nginx to start automatically on system boot.
