进入Linux找一个地方创建nginx目录,例如 /usr/java/nginx ,进入目录,进行一些资源的和环境的下载工作:
下载nginx: wget http://nginx.org/download/nginx-1.8.0.tar.gz 下载openssl : wget http://www.openssl.org/source/openssl-fips-2.0.9.tar.gz 下载zlib : wget http://zlib.net/zlib-1.2.8.tar.gz 下载pcre : wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz 如果没有安装c++编译环境,还得安装,通过yum install gcc-c++完成安装
然后编译安装:openssl :
[root@superman] tar zxvf openssl-fips-2.0.9.tar.gz
[root@superman] cd openssl-fips-2.0.9
[root@superman] ./config && make && make installpcre:
[root@superman] tar zxvf pcre-8.36.tar.gz
[root@superman] cd pcre-8.36
[root@superman] ./configure && make && make install
zlib:
[root@superman]tar zxvf zlib-1.2.8.tar.gz
[root@superman] cd zlib-1.2.8
[root@superman] ./configure && make && make install
最后安装nginx :
[root@superman]tar zxvf nginx-1.8.0.tar.gz
[root@superman] cd nginx-1.8.0
[root@superman] ./configure && make && make install
启动nginx /usr/local/nginx/sbin/nginx
出现错误提示 [root@supermanlib]# error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
原因 在RedHat 64位机器上nginx读取的pcre文件为/lib64/libpcre.so.1文件,默认安装pcre时libpcre.so文件安装在/usr/local/lib/目录下,所以输入/opt/nginx/sbin/nginx -V 找不到文件路径!! 1.首先确定安装了pcre. 2.切换路径: cd /usr/local/lib 执行 ln -s /usr/local/lib/libpcre.so.1 /lib64/ 3.root权限下添加软链接 /usr/local/lib/libpcre.so.1 到 /lib64/ : ln -s /usr/local/lib/libpcre.so.1 /lib64/
============== 1.openssl ./config && make && make install 2.zlib ./config && make && make install 3.pcre ./config && make && make install 4.c++编译环境 yum install gcc-c++ 5.perl ./config && make && make install