1、防止 make: command not found,提前安装一些插件,取决于当前环境是否已安装,如果已经安装就不需要执行此命令
yum -y install gcc automake autoconf libtool make防止 make: command not found
2、下载源码进行安装
wget3、安装需要的插件
yum -y install gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel4、解压压缩包
tar -zxvf nginx-1.18.0.tar.gz5、指定安装路径
./configure --prefix=http://www.likecs.com/root/nginx/nginx-1.18.06、编译并安装
make && make install7、启动服务(进入到安装目录的sbin)
./nginx8、重启服务(进入到安装目录的sbin)
./nginx -s reload9、停止服务(进入到安装目录的sbin)
./nginx -s stop 或者 ./nginx -s quit