centos系统
cd ~
wget http://nginx.org/download/nginx-1.8.0.tar.gz
wget http://www.openssl.org/source/openssl-fips-2.0.9.tar.gz
wget http://zlib.net/fossils/zlib-1.2.8.tar.gz
wget https://github.com/lihhhh/download/raw/master/nginx/pcre-8.38.tar.gz
yum install gcc-c++
cd ~
tar zxvf openssl-fips-2.0.9.tar.gz
cd openssl-fips-2.0.9
./config && make && make install
cd ~
tar zxvf pcre-8.38.tar.gz
cd pcre-8.38
./configure && make && make install
cd ~
tar zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure && make && make install
cd ~
tar zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0
yum -y install openssl openssl-devel
./configure --with-http_ssl_module && make && make install
ubuntu 系统
cd ~
wget http://nginx.org/download/nginx-1.25.0.tar.gz
wget http://www.openssl.org/source/openssl-fips-2.0.9.tar.gz
wget http://zlib.net/zlib-1.2.11.tar.gz
wget https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz
sudo apt-get install build-essential
cd ~
tar zxvf openssl-fips-2.0.9.tar.gz
cd openssl-fips-2.0.9
./config && make && sudo make install
cd ~
tar zxvf pcre-8.44.tar.gz
cd pcre-8.44
./configure && make && sudo make install
cd ~
tar zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure && make && sudo make install
cd ~
tar zxvf nginx-1.25.0.tar.gz
cd nginx-1.25.0
sudo apt-get install libssl-dev
./configure --with-http_ssl_module && make && sudo make install
启动nginx
/usr/local/nginx/sbin/nginx
出现错误提示
[root@localhost lib]# 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 找不到文件路径!!
[root@localhost] ln -s /usr/local/lib/libpcre.so.1 /lib64/
然后再启动/usr/local/nginx/sbin/nginx
应该就ok了
测试访问服务器ip 不用加端口号: