G++GCC是后续安装的基础,笔者也是在这里花费了大量的时间的,如果你的服务器上已经安装了G++GCC
相关的包,可以跳过此步了。
有需要的的同学到我的资源中去下载吧。
将安装包解压后,进入解压目录,使用命令
dpkg -i *.deb
就能完成gcc 的离线安装了。
PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。nginx的http模块使用pcre来解析正则表达式,是nginx必需的依赖。
解压进入PCRE目录
tar -xvf pcre-8.45.tar
cd pcre-8.45
./configure
make && make install
nginx使用zlib对http包的内容进行gzip。
tar -xvf zlib-1.22.0.tar
cd zlib-1.22.0.tar
./configure
make && make install
OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其它目的使用,OpenSSL包。
#解压
tar -xvf openssl-1.1.1q.tar.gz
#配置 安装
./config && make && make install
tar -xvf nginx-1.20.2.tar.gz
./configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-http_ssl_module --with-pcre=/usr/local/pcre-8.45 --with-zlib=/usr/local/zlib-1.22.0 --with-openssl=/usr/local/openssl-1.1.1q
我的安装包都在/usr/local/下,如果你指定了其它安装目录注意不要照抄我的,需要做相应的修改
make
make install
cd /usr/local/nginx
./nginx -c ./nginx.conf
启动失败
./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
1.前提是已经安装好了pcre!
root@pixel-2288H-V5:/usr/local/nginx/sbin# find / -type f -name *libpcre.so.*
/home/pixel/soft/exam-city/web/deps/pcre-8.45/.libs/libpcre.so.1.2.13
/snap/core20/1081/usr/lib/x86_64-linux-gnu/libpcre.so.3.13.3
/snap/core20/1518/usr/lib/x86_64-linux-gnu/libpcre.so.3.13.3
/snap/core18/2409/lib/x86_64-linux-gnu/libpcre.so.3.13.3
/snap/core18/2538/lib/x86_64-linux-gnu/libpcre.so.3.13.3
/usr/local/lib/libpcre.so.1.2.13
[root@server2 ~]# ln -s /usr/local/lib/libpcre.so.1.2.13 /lib64/libpcre.so.1 #建立软链接
2.将/usr/local/lib重定向到/etc/ld.so.conf文件中
echo “/usr/local/lib” >> /etc/ld.so.conf
#立即生效
ldconfig
cd /usr/local/nginx
./nginx -s reload
cd /usr/local/nginx
./nginx -s stop