Linux下的Nginx安装(开机自启动)

准备工作,需要先下载pcre库,因为nginx的rewrite模块需要pcre库

这里使用的版本分别为:

pcre:8.12     下载地址: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/

nginx:0.8.54    下载地址:

image

copy压缩包至linux的相应目录,例如:opt下的software,需要确认当前登录用户有权限进行解压和安装。

1)安装pcre库:

tar zxvf pcre-8.12.tar.gz

cd pcre-8.12

./configure<或./config进行编译>

在这里可能会遇到出错,显示configure: error: newly created file is older than distributed files!

同步更新一下当前的系统时间即可,操作:

ntpdate 210.72.145.22

ntpdate 0.CentOS.pool.ntp.org

然后进行安装

make && make install

cd ../

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/b2514e4a73fb278db31ca3930208762a.html