Linux系统安装Nginx(tengine)详解

准备目录

[[email protected] /]# mkdir /usr/local/nginx
[[email protected] /]# cd /usr/local/nginx

下载

http://tengine.taobao.org/download_cn.html
本次下载的版本是2.3.2,下载完成上传到linux目录(usr/local/nginx)

解压

[[email protected] nginx]# tar -zxvf tengine-2.3.2.tar.gz
[[email protected] nginx]# cd tengine-2.3.2

[[email protected] tengine-2.3.2]# yum -y install gcc

设置Nginx安装路径,如果没有指定,默认为/usr/local/nginx
[[email protected] tengine-2.3.2]# ./configure --prefix=/usr/local/nginx

可能会出现这个错误
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using —without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using —with-pcre= option.

如果出现了,就执行下这个
[[email protected] tengine-2.3.2]# yum -y install openssl openssl-devel

再次执行
[[email protected] tengine-2.3.2]# ./configure —prefix=/usr/local/nginx

编译

[[email protected] tengine-2.3.2]# make
(make的过程是把各种语言写的源码文件,变成可执行文件和各种库文件)

安装

[[email protected] tengine-2.3.2]# make install
(make install是把这些编译出来的可执行文件和库文件复制到合适的地方)

启动

参数 -c 指定了配置文件的路径,如果不加的话就是使用默认的配置文件
[[email protected] tengine-2.3.2]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

停止

停止操作是通过向nginx进程发送信号(什么是信号请参阅linux文 章)来进行的

查询nginx主进程号

ps -ef | grep nginx
在进程列表里 面找master进程,它的编号就是主进程号了

从容停止Nginx

kill -QUIT 主进程号

快速停止Nginx

kill -TERM 主进程号

强制停止Nginx

pkill -9 nginx

另外, 若在nginx.conf配置了pid文件存放路径则该文件存放的就是Nginx主进程号,如果没指定则放在nginx的logs目录下。有了pid文 件,我们就不用先查询Nginx的主进程号,而直接向Nginx发送信号了,命令如下:
kill -信号类型 ‘/usr/nginx/logs/nginx.pid’

平滑重启

如果更改了配置就要重启Nginx,要先关闭Nginx再打开?不是的,可以向Nginx 发送信号,平滑重启。
平滑重启命令:
kill -HUP 主进程号或进程号文件路径
或者使用

/usr/nginx/sbin/nginx -s reload

注意,修改了配置文件后最好先检查一下修改过的配置文件是否正 确,以免重启后Nginx出现错误影响服务器稳定运行。

判断Nginx配置是否正确命令

nginx -t -c /usr/nginx/conf/nginx.conf
或者

/usr/nginx/sbin/nginx -t

访问
在浏览器中输入IP:端口号(默认80),出现如下图所示,说明安装成功。