1.选定源码目录
选定目录 /usr/local/
cd /usr/local/
2.安装PCRE库(准备安装包pcre-8.36.zip到local目录下)
cd /usr/local/
zip pcre-8.36.zip
cd pcre-8.36
./configure (编译)
make (预安装)
make install (正式安装)
3.安装zlib库
cd /usr/local/
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
4.安装ssl(有的vps默认没装ssl)
cd /usr/local/
wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz
tar -zxvf openssl-1.0.1c.tar.gz
cd openssl-1.0.1c
./config
make
make install
--with-zlib=/usr/local/zlib-1.2.8 (指的是zlib-1.2.8 的源码路径。).....
安装成功后 /usr/local/nginx/conf 目录下如下
----------------------------------------------------------------------
端口
启动确保系统的 80 端口没被其他程序占用
#netstat -ano|grep 80
如果查不到结果后执行,有结果则忽略此步骤
启动
/usr/local/nginx/sbin/nginx 启动 Nginx
打开浏览器访问此机器的 IP,如果浏览器出现 Welcome to nginx! 则表示 Nginx 已经安装并运行成功。
运行结果如下:
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了Centos65 下安装nginx128,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。