准备工作,需要先下载pcre库,因为nginx的rewrite模块需要pcre库
这里使用的版本分别为:
pcre:8.12 下载地址: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
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 ../