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

安装nginx

时间:2018-03-01 21:56:03      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:nginx

首先安装pcre库
查看当前系统版本
[root@localhost src]# cat /etc/redhat-release
CentOS Linux release 7.4.1708 (Core)

[root@localhost src]# uname -m
x86_64

yum 安装
[root@localhost src]# yum install pcre pcre-devel -y

yum install -y openssl openssl-devel

支撑包pcre和openssl安装完毕后,下载nginx
wget http://nginx.org/download/nginx-1.6.3.tar.gz
增加用户nginx并禁止登陆

[root@localhost src]# useradd nginx -s /sbin/nologin -M

yum -y install gcc

[root@localhost nginx-1.6.3]# ./configure --user=nginx --group=nginx --prefix=/application/nginx-1.6.3 --with-http_stub_status_module --with-http_ssl_module
启动前的语法检查
[root@localhost nginx]# /application/nginx/sbin/nginx -t
开发的程序发布目录
[root@localhost html]# cd /application/nginx/html/

安装nginx

标签:nginx

原文地址:http://blog.51cto.com/13505564/2074384

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