码迷,mamicode.com
首页 > 其他好文 > 详细

nginx安装

时间:2018-03-16 17:24:33      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:nginx安装

1、安装Nginx所需的pcre

[root@www~]#yum install pcre pcre-devel -y     (用yum安装)

[root@www~]#rqm -qa pcre                   (检查安装结果)

[root@www~]# rpm -qa pcre pcre-devel

pcre-devel-7.8-7.el6.x86_64

pcre-7.8-7.el6.x86_64

 

2、安装openssl-devel

[root@www~]#yum install -y openssl  openssl-devel

[root@www~]# rpm -qa openssl openssl-devel

openssl-1.0.1e-57.el6.x86_64

openssl-devel-1.0.1e-57.el6.x86_64

 

3、开始安装Nginx

[root@www~]#mkdir -p /home/tools     (建立目录存放安装软件)

[root@www~]#cd /homel/tools

[root@www tools]#wget -q http://nginx.org/download/nginx-1.6.3.tar.gz (下载软件包)

[root@www tools]#useradd nginx -s /sbin/nologin -M

[root@www tools]#tar xf nginx-1.6.3.tar.gz

[root@www tools]cd nginx-1.6.3

[root@www nginx-1.6.3]# ./configure --user=nginx --group=nginx --prefix=/application/nginx --with-http_stub_status_module --with-http_ssl_module

[root@www nginx-1.6.3]#make

[root@www nginx-1.6.3]#make install

[root@www nginx-1.6.3]#ln -s /application/nginx-1.6.3 /application/nginx

[root@www nginx-1.6.3]#ls -l /application/nginx/  ngixn安装路径通过软链接的方式更改为/application/nginx,方便使用

 

4、启动并检查安装结果

1)启动前检查配置文件语法

[root@www ~]#/application/nginx/sbin/nginx -t

2)启动Nginx服务

[root@www ~]#/application/nginx/sbin/nginx

3)查看Nginx服务对应的端口是否成功启动

[root@www ~]#lsof -i :80

[root@www ~]#netstat -lnt|grep 80

5、测试实际效果

Windows下通过浏览器访问


nginx安装

标签:nginx安装

原文地址:http://blog.51cto.com/422621/2087680

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!