centos7 Nginx命令及配置系統服務

2021-09-27 07:57:39 字數 1051 閱讀 1211

環境:

centos7

nginx 1.16

一、命令及服務配置

nginx 命令

ps -ef | grep nginx

netstat -aup | grep 80

kill -9 nginx # 個別情況下無法生效

kill -9 pid # 出現過乾掉了程序 結果服務沒停止 還占用埠重新啟動起不來

killall -9 nginx # 強行乾掉nginx 有效

配置系統服務

路徑:/etc/systemd/system 檔名稱:nginx.service

內容如下:

[unit]

description=the nginx-server process manager

after=syslog.target

after=network.target

[service]

type=forking

pidfile=/usr/local/nginx/logs/nginx.pid

execstart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

execreload=/bin/kill -s hup $mainpid

execstop=/bin/kill -s quit $mainpid

privatetmp=true

[install]

wantedby=multi-user.target

系統服務命令

service nginx start

service nginx status

service nginx reload

service nginx stop

二、其他待補充

centos7 nginx安裝及自啟動

本文章為 wget 建立nginx的yum倉庫 root localhost conf.d rpm ivh nginx release centos 7 0.el7.ngx.noarch.rpm yum install nginx 啟動nginx服務 systemctl start nginx 檢視...

CentOS 7 Nginx 控制指令碼

傳送門 2 乾貨 相信看了準備活動,基本上就會了,這個比起下面那個方法實在是簡單多了直接上指令 sudo vi usr lib systemd system nginx.service 輸入下面內容,並儲存 unit description nginx high performance web se...

CentOS7 Nginx基本操作

我初學nginx伺服器配置,有些操作記不住,所以總結一下放一起。根據學習使用的情況,內容會不定期更新。yum安裝nginx的配置檔案目錄 etc nginx 編譯安裝的nginx的配置檔案目錄 usr local nginx conf 無論是如何安裝的nginx,配置檔案的修改方式都是一樣的,只需要...