在/etc/profile配置文件中加入
html
vim /etc/profile
bash
export NGINX_HOME=/usr/local/nginx
export PATH=$PATH:$NGINX_HOME/sbin
bash
sed -i 'aexport NGINX_HOME=/usr/local/nginx' /etc/profile
sed -i 'aPATH=$PATH:$NGINX_HOME/sbin' /etc/profile
export NGINX_HOME=安装路径
export PATH=引用安装路径变量/sbin
添加完之后一定要重新执行配置文件。
bash
source /etc/profile
bash
sh /etc/profile
bash
. /etc/profile