Nginx简介
Nginx(engine x)是一款轻量级的Web服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器, 在BSD-like协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力在同类型的网页服务器中表现较好,中国大陆使用nginx网站的用户有:百度、京东、新浪、网易、腾讯、淘宝等。Nginx第一个公开版本0.1.0发布于2004年10月4日。[1]
安装所需环境
本文使用CentOS 7作为安装环境[2]
1. gcc安装
安装nginx需要先将官网下载的源代码进行编译,编译依赖gcc环境,如果没有gcc环境,则需要安装:
yum install gcc-c++
2. PCRE pcre-devel安装
PCRE(Perl Compatible Regular Expression)是一个Perl库,包括Perl兼容的正则表达式库。Nginx的http模块使用pcre来解析正则表达式,所以需要在Linux上安装pcre库,pcre-devel是使用pcre开发一个二次开发库。nginx也需要此库。
yum install -y pcre pcre-devel
3. zlib安装
zlib库提供了很多种压缩和解压缩的方式,nginx使用zlib对http包的内容进行gzip,所以需要在CentOS上安装zlib库。
yum install -y zlib zlib-devel
4. Openssl安装
OpenSSL是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其它目的使用。Nginx不仅支持http协议,还支持https,所以需要在CentOS上安装OpenSSL库。
yum install -y openssl openssl-devel
下载并安装Nginx
-
直接下载.tar.gz压缩包,地址:https://nginx.org/en/download.html
image.png
-
使用wget命令下载
image.png
wget -c https://nginx.org/download/nginx-1.16.1.tar.gz
这里下载最新的稳定版。
-
解压
tar -zxvf nginx-1.16.1.tar.gz
cd nginx-1.16.1
将nginx移动到/usr/local/nginx中
mv nginx-1.16.1 /usr/local
rename nginx-1.16.1 nginx
- 配置
(1)使用默认配置
命令行下运行:./configure
(2)自定义配置
./configure
--prefix=/usr/local/nginx
--conf-path=/usr/local/nginx/conf/nginx.conf
--pid-path=/usr/local/nginx/conf/nginx.pid
--lock-path=/var/lock/nginx.lock
--error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--with-http_gzip_static_module
--http-client-body-temp-path=/var/temp/nginx/client
--http-proxy-temp-path=/var/temp/nginx/proxy
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi
--http-scgi-temp-path=/var/temp/nginx/scgi
centos安装nginx 报错:cp:
conf/koi-win' and
/usr/local/nginx/conf/koi-win' are the same file
解决方法:运行./configure --prefix=/usr/local/nginx --conf-path=/usr/local/nginx/nginx.conf
编译安装
make
make install
查找安装路径
image.png
启动、停止Nginx
cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s quit
./nginx -s reload
./nginx -s quit:此方式停止步骤是待nginx进程处理任务完毕进行停止。
./nginx -s stop:此方式相当于先查出nginx进程id再使用kill命令强制杀掉进程。
查询nginx进程
ps aux|grep nginx
重启Nginx
1.先停止再启动(推荐):
对 nginx 进行重启相当于先停止再启动,即先执行停止命令再执行启动命令。如下:
./nginx -s quit
./nginx
2.重新加载配置文件:
当 ngin x的配置文件 nginx.conf 修改后,要想让配置生效需要重启 nginx,使用-s reload不用先停止 ngin x再启动 nginx 即可将配置信息在 nginx 中生效,如下:
./nginx -s reload
启动成功后,在浏览器可以看到这样的页面:
image.png
开机自启动
即在rc.local增加启动代码就可以了。
vi /etc/rc.local
增加一行 /usr/local/nginx/sbin/nginx
设置执行权限:
chmod 755 rc.local
image.png
添加Nginx为系统服务[3]
# 添加nginx.service
# vim /lib/systemd/system/nginx.service[Unit]
Description=nginx service
After=network.target[Service]
Type=forking
# 路径对应安装路径
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true[Install]
WantedBy=multi-user.target
添加完成后,即可使用systemctl start nginx等进行管理,例如添加开机自启动:
systemctl enable nginx.service
但同时也要把之前在vi /etc/rc.local里增加的一行 /usr/local/nginx/sbin/nginx去掉。
问题一:nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)
解决方法:[4]
使用指定nginx.conf文件的方式重启nginx
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
参考:
[1] 百度百科:https://baike.baidu.com/item/nginx/3817705
[2] https://www.cnblogs.com/zhoading/p/8514050.html
[3] https://blog.51cto.com/bilibili/2411078
[4] https://www.cnblogs.com/houss/p/11291629.html
网友评论