Nginxコマンド


インストールNginx

sudo apt-get install -y nginx

Nginxの削除

sudo apt-get remove nginx nginx-common # 설정 파일을 제외한 모든 파일을 제거합니다.

sudo apt-get purge nginx nginx-common # 모든 것을 제거합니다.

sudo apt-get autoremove # 위의 명령을 사용한 후에는 더 이상 필요하지 않은 nginx에서 사용하는 종속성을 제거하기 위해이 명령을 사용하십시오.

Nginxの実行

service nginx start
sudo service nginx start
sudo systemctl start nginx

Nginxの再実行

service nginx restart
sudo service nginx restart
sudo systemctl restart nginx

Nginxの停止

service nginx stop
sudo service nginx stop
sudo systemctl stop nginx

Nginx状態

service nginx status
sudo service nginx status
ps -ef | grep nginx