1命令找不到
# nginx -s reload
-bash: nginx: command not found
原因是没添加环境变量
步骤如下:
1、编辑/etc/profile
vim /etc/profile
2、在最后一行添加配置,:wq保存
PATH=$PATH:/usr/local/nginx/sbin
export PATH
3、使配置立即生效
source /etc/profile
2安装nginx遇到的问题,看我另一个链接
https://www.cnblogs.com/rdchen/p/13408769.html
原文:https://www.cnblogs.com/rdchen/p/13408955.html