一、安裝
若是找不wget請安裝,命令:yum -y install wget
二、安裝成功後nginx的幾個默認目錄
輸入命令: whereis nginx
執行目錄:/usr/sbin/nginx
模塊所在目錄:/usr/lib64/nginx/modules
配置所在目錄:/etc/nginx/
默認站點目錄:/usr/share/nginx/html
主要配置文件:/etc/nginx/nginx.conf 指向:/etc/nginx/conf.d/default.conf
PID目錄:/var/run/nginx.pid
錯誤日誌:/var/log/nginx/error.log
訪問日誌:/var/log/nginx/access.log
三、查看nginx狀態(未啓動前)
命令1:systemctl status nginx.service
四、啓動、中止、重載命令
systemctl start nginx.service
systemctl stop nginx.service
systemctl reload nginx.service
systemctl status nginx.service
五、查看nginx的狀態及進程與端口(啓動後)
命令1:systemctl status nginx.service
以上nginx就已安裝成功了!!!
命令2:netstat -antp | grep :80(查看80端口被哪一個服務佔用)or netstat -antpuel | grep ":22" | grep -v grep(過慮grep自己)
命令3:netstat -antp | grep :(查看全部端口占用狀況)
命令4:ps aux | grep nginx(查看nginx進程運行狀態)or ps aux | grep :80 | grep -v grep(過慮grep自己)
六、殺掉進程命令
a)相關nginx進行所有殺掉:killall -9 nginx
b)把PID兩個進程殺掉:kill -9 pid1 and kill -9 pid1
七、查看版本
命令:nginx -V