我的nginx安装目录为:usr/local/nginx
百度了好多都是在说在*/etc/profile*文件中添加
PATH=$PATH:/var/local/nginx/sbin
export PATH
即可使用nginx命令;可是我配置上怎么都不管用,一度以为自己写错了,我也怀疑过是否需要重启,但是都没有说,作为一个服务器小白的我也不知道该怎么重启。直到百度了好久,才找到一个正解,最终实锤,在文件中添加上内容后需要重新加载文件。命令:source /etc/profile
步骤:
1、vim /etc/profile
2、在profile文件中最后添加
PATH=$PATH:/usr/local/nginx/sbin
export PATH
3、保存并退出后,重新加载profile
source /etc/profile