기본 지식 - Nginx 설치 마 운 트 해제 및 상용 명령
1162 단어 Nginx
#
apt-get update
apt-get install nginx
#
sudo /etc/init.d/nginx start
:
Usage: nginx {start|stop|restart|reload|force-reload|status|configtest|rotate|upgrade}
#
sudo apt-get remove nginx nginx-common # Removes all but config files.
sudo apt-get purge nginx nginx-common # Removes everything.
sudo apt-get autoremove # After using any of the above commands, use this in order to remove dependencies used by nginx which are no longer required.
2. Centos 온라인 설치
# yum
sudo rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
#
sudo yum install nginx
#
sudo systemctl start nginx
#
sudo systemctl restart nginx
# , , , 。
sudo systemctl reload nginx
#
sudo systemctl stop nginx.service
sudo systemctl disable nginx.service
sudo userdel -r nginx
chkconfig nginx off
sudo rm -rf /etc/nginx
sudo rm -rf /var/log/nginx
sudo rm -rf /var/cache/nginx/
sudo rm -rf /usr/lib/systemd/system/nginx.service
yum remove nginx
3. 상용 명령
nginx -s reload # , nginx
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
linux2에 nginx 설치설치 가능한 nginx를 확인하고, 해당 nginx를 설치한다. localhost 혹은 해당 ip로 접속을 하면 nginx 화면을 볼 수 있다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.