码迷,mamicode.com
首页 > 数据库 > 详细

centos6.5 nginx+php+mysql之nginx安装

时间:2015-03-09 19:21:15      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:nginx安装

一.安装make

yum -y install gcc automake autoconf libtool make


二.安装g++

yum -y install gcc gcc-c++


三.安装pcre

cd /usr/local/src/

用网页打开 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/

查看pcre版本

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.35.tar.gzpcre-8.35.tar.gz #下载pcre版本为8.35

解压缩

tar -zxvf pcre-8.35.tar.gz

cd pcre-8.35

./configure

make

make install


四.安装zlib

cd /usr/local/src/

wget http://zlib.net/zlib-1.2.8.tar.gz

tar -zxvf zlib-1.2.8.tar.gz

cd zlib-1.2.8

./configure

make

make install


五.安装ssl

cd /usr/local/src/

wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz

tar -zxvf openssl-1.0.1c.tar.gz

六.安装nginx

cd /usr/local/src/

wget http://nginx.org/download/nginx-1.4.2.tar.gz

tar -zxvf nginx-1.4.2.tar.gz

cd nginx-1.4.2

./configure --sbin-path=/usr/local/nginx/nginx \--conf-path=/usr/local/nginx/nginx.conf \--pid-path=/usr/local/nginx/nginx.pid \--with-http_ssl_module \--with-pcre=/usr/local/src/pcre-8.35 \--with-zlib=/usr/local/src/zlib-1.2.8 \--with-openssl=/usr/local/src/openssl-1.0.1c

make

make install


启动nginx

/usr/local/nginx/nginx

yum -y install links #下载links命令

links 192.168.66.176

出现welcome to nginx!表面安装成功.





参考信息:http://www.nginx.cn/install




centos6.5 nginx+php+mysql之nginx安装

标签:nginx安装

原文地址:http://huwei555.blog.51cto.com/1347480/1618632

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