Nginx啟動不了報錯未找到命令的解決方法(- bash: nginx: 未找到命令)

八橘子發表於2020-12-09

故障現象

 nginx stop
- bash: nginx: 未找到命令

解決方法

1,開啟環境變數所在的檔案

vim /etc/profile

2,在profile檔案末尾,加上一行
用來指向你的nginx的安裝位置的sbin目錄

PATH=$PATH:/usr/local/nginx/sbin

3,重新載入環境,解決

source /etc/profile

相關文章