00044-centos 安装nginx
Posted wx5ebd512bcd459
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了00044-centos 安装nginx相关的知识,希望对你有一定的参考价值。
要安装nginx的依赖pcre
wget https://jaist.dl.sourceforge.net/project/pcre/pcre/8.44/pcre-8.44.tar.gz
tar -xvf pcre-8.44.tar.gz
cd pcre-8.44
#安装编译
./configure
这里出错:
configure: error: no acceptable C compiler found in $PATH
需要安装GCC软件套件
yum install gcc
安装后,再运行: ./configure
这里继续出错:
configure: error: Invalid C
- figure: error: Invalid C++ compiler or C++ compiler flags
安装:
yum install
- all -y gcc-c++
安装后,再运行: ./configure
到这里,OK。
make && make install
#查看pcre版本
pcre-config --version
开始安装nginx:
wget https://nginx.org/download/nginx-1.20.0.tar.gz
tar -xvf nginx-1.20.0.tar.gz
cd nginx-1.20.0
#编译安装
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/home/pcre-8.44
这里出错:./configure: error: SSL modules require the OpenSSL library.
解决方法:执行以下命令:
yum -y install openssl openssl-devel
再执行上个安装命令,OK。
make && make install
#查看版本
/usr/local/nginx/sbin/nginx -v
安装完毕。
启动命令:
/usr/local/nginx/sbin/nginx (无参数) 启动
/usr/local/nginx/sbin/nginx -s stop (-s stop)关闭
/usr/local/nginx/sbin/nginx -s reload (-s reload)重启
浏览器输入ip:80, 即可访问。
查看防火墙:
systemctl status firewalld.service
systemctl stop firewalld.service(停止防火墙)
systemctl start firewalld.service(打开防火墙)
开放端口:
firewall-cmd --zone=public --add-port=10001/tcp --permanent
firewall-cmd --zone=public --add-port=10002/tcp --permanent
firewall-cmd --reload
以上是关于00044-centos 安装nginx的主要内容,如果未能解决你的问题,请参考以下文章