侧边栏壁纸
  • 累计撰写 223 篇文章
  • 累计创建 205 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

LNMP--2.Nginx 编译安装

zhanjie.me
2018-01-04 / 0 评论 / 0 点赞 / 0 阅读 / 0 字

LNMP--2.Nginx 编译安装

​ Nginx 官网:http://nginx.org ,镜像下载地址: http://mirrors.sohu.com/nginx/nginx-1.8.0.tar.gz

​ (1)下载、解压 Nginx

[root@localhost ~]# cd /usr/local/src/

[root@localhost src]# wget http://mirrors.sohu.com/nginx/nginx-1.8.0.tar.gz

[root@localhost src]# tar zxf nginx-1.8.0.tar.gz

​ (2)配置编译选项

[root@localhost src]# cd nginx-1.8.0

[root@localhost nginx-1.8.0]# ./configure \

--prefix=/usr/local/nginx \

--with-http_realip_module \

--with-http_sub_module \

--with-http_gzip_static_module \

--with-http_stub_status_module  \

--with-pcre

​ ​ 错误:

./configure: error: the HTTP rewrite module requires the PCRE library.

# yum install -y pcre-devel

​ (3)编译、安装 Nginx

[root@localhost nginx-1.8.0]# make

[root@localhost nginx-1.8.0]# make install

[root@localhost nginx-1.8.0]# echo $?

0

​ (4)启动 nginx:

[root@localhost nginx-1.8.0]# /usr/local/nginx/sbin/nginx

[root@localhost nginx-1.8.0]# ps aux|grep nginx

root     30621  0.0  0.0  23856   796 ?        Ss   00:50   0:00 nginx: master process /usr/local/nginx/sbin/nginx

nobody   30622  0.1  0.1  24284  1384 ?        S    00:50   0:00 nginx: worker process

root     30624  0.0  0.0 103324   868 pts/1    S+   00:50   0:00 grep nginx
0

评论区