一、NGINX 下载
mkdir -p /soft/nginx
cd /soft/nginx
wget https://nginx.org/download/nginx-1.21.6.tar.gz
二、下载相关依赖
①在线安装依赖:
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
②下载依赖到本地安装依赖:
yum install --downloadonly --downloaddir=/soft/nginx/ gcc-c++
yum install --downloadonly --downloaddir=/soft/nginx/ pcre pcre-devel4
yum install --downloadonly --downloaddir=/soft/nginx/ zlib zlib-devel
yum install --downloadonly --downloaddir=/soft/nginx/ openssl openssl-devel
cd /soft/nginx
rpm -ivh --nodeps *.rpm
建议内网先下载安装包和依赖通过介质拷贝至系统;
三、NGINX 安装编译
cd /soft/nginx
tar -zxvf nginx-1.21.6.tar.gz
cd nginx-1.21.6
./configure
make
make install
注:编译后会在安装目录的同层(/soft/nginx/)生成nginx应用目录,相关配置、启动在此层。而不是在安装目录下一层(/soft/nginx/nginx-1.21.6/)或者使用whereis nginx查看软件目录,如果查询没有反应,以前者为准。
三、NGINX 启动和其他相关命令
启动nginx:
cd /soft/nginx/sbin/
./nginx
检查nginx是否启动:
ps aux | grep nginx
检测nginx配置文件是否正常 :
./nginx -t -c conf/nginx.conf
修改配置后平滑重启:
./nginx -s reload -c conf/nginx.conf
执行完当前的任务后再退出:文章来源:https://www.toymoban.com/news/detail-556288.html
./nginx -s quit
强制终止Nginx:文章来源地址https://www.toymoban.com/news/detail-556288.html
./nginx -s stop
到了这里,关于[NGINX] NGINX下载、安装编译、启动检查停止命令的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!