centos7 x設定nginx開機自啟動

2021-09-25 10:56:32 字數 850 閱讀 5785

1、在 /lib/systemd/system/ 下新建nginx.service檔案,內容如下:

[unit]

description=nginx service

after=network.target

[service]

type=forking

execstart=/sbin/nginx

execreload=/sbin/nginx -s reload

execstop=/sbin/nginx -s quit

privatetmp=true

[install]

wantedby=multi-user.target

2、root使用者下執行

systemctl disable nginx

3、相關控制命令

# systemctl start nginx.service          啟動nginx服務

# systemctl stop nginx.service  停止服務

# systemctl restart nginx.service  重新啟動服務

# systemctl list-units --type=service 檢視所有已啟動的服務

# systemctl status nginx.service 檢視服務當前狀態

# systemctl enable nginx.service 設定開機自啟動

# systemctl disable nginx.service 停止開機自啟動

** 

Nginx安裝步驟(CentOS7 x版本)

1 需要安裝gcc的環境。yum install gcc c 2 安裝第三方的開發包。yum install y pcre pcre devel注 pcre devel是使用pcre開發的乙個二次開發庫。nginx也需要此庫。yum install y zlib zlib develyum inst...

CentOS 7 X 安全手記

一 安裝雲鎖 1 報錯 2 關閉selinux vim etc selinux config 將 selinux enforcing 改 selinux disabled 3 重啟系統 reboot now 二 centos7相關的操作 1 防火牆 firewall cmd 1 禁止被ping 禁止...

CentOS7 X磁碟掛載

假設掛載點為 www 假設磁碟為 dev vdc 假設磁碟只有卷 dev vdc1 該方案可能會丟失磁碟所有資料,操作前請先備份 磁碟已格式化 用過的磁碟 磁碟立即掛載 mkdir www mount dev vdc1 www 啟用開機掛載 獲取磁碟id ll dev disk by path lr...