1、去官网下载压缩包:nginx: download
2、下载完成,放到centos7系统中,解压文件:
tar -zxvf nginx-1.24.0.tar.gz nginx-1.24.0
3、检测是否已经安装编译依赖:
//查看是否存在gcc依赖
gcc -v
//查看是否存在zlib依赖
cat /usr/lib64/pkgconfig/zlib.pc
//查看是否存在pcre依赖
pcre-config --version
//安装依赖
yum -y install gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel
4、将解压后的文件移动道/usr/local/下
mv /****(某某文件夹)/nginx-1.24.0 /usr/local/
5、进入文件夹nginx-1.24.0,配置安装目录:
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
//注意:此处安装目录prefix不能和解压后的文件夹名称相同
#命令解析:
#执行命令
#prefix= 指向安装目录(编译安装)
#conf-path= 指向配置文件(nginx.conf)
#error-log-path= 指向错误日志目录
#pid-path= 指向pid文件(nginx.pid)
#http-log-path= 设定access log路径
#with-http_gzip_static_module 启用ngx_http_gzip_static_module支持(在线实时压缩输出数据流)
#with-http_stub_status_module 启用ngx_http_stub_status_module支持(获取nginx自上次启动以来的工作状态)
#with-http_ssl_module 启用ngx_http_ssl_module支持(使支持https请求,需已安装openssl)
#完整配置命令:
./configure --prefix=/usr/local/nginx --conf-path=/usr/local/nginx/conf/nginx.conf --error-log-path=/usr/local/nginx/logs/error.log --pid-path=/usr/local/nginx/logs/nginx.pid --http-log-path=/usr/local/nginx/logs/access.log --with-http_gzip_static_module --with-http_stub_status_module --with-http_ssl_module
6、编译及安装:
//编译:
make
//安装
make install
7、退出nginx-1.24.0文件夹,回到上一层文件夹,可以看到多了个nginx文件夹,进入nginx/sbin/文件夹,启动nginx服务:
./nginx
8、开启防火墙80端口规则,检验nginx安装情况:
#查询开启的所有端口
firewall-cmd --list-port
#设置80端口开启
firewall-cmd --zone=public --add-port=80/tcp --permanent
#验证80端口是否开启成功 (单个端口查询)
firewall-cmd --zone=public --query-port=80/tcp
#设置80端口关闭
firewall-cmd --zone=public --remove-port=80/tcp --permanent
#重启防火墙服务,使修改的规则生效
firewall-cmd --reload
9、最后,可以访问一下centos7地址,测试nginx
10、nginx常用服务器命令
cd /usr/local/nginx/sbin/
./nginx 启动
./nginx -s stop 停止
./nginx -s quit 安全退出
./nginx -s reload 重新加载配置文件 如果我们修改了配置文件,就需要重新加载。
ps aux|grep nginx 查看nginx进程
11、设置开机自启动:
进入/usr/lib/systemd/system/文件夹,新建nginx.service文件;
vi nginx.service
[Unit]
Description=nginx
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true
[Install]
WantedBy=multi-user.target