02_ Nginx 安装

目录
  • 2.1 进入 nginx 官网,下载
  • 2.2 安装 nginx
    • 1)、使用 wget 安装 pcre
    • 2)、解压文件
    • 3)、再执行 make && make install
    • 4)、安装 openssl zlib
    • 可选
    • 5)、安装 nginx
    • 6)、查看开放的端口号
    • 7)、设置开放的端口号
    • 8)、重启防火墙
  • 3、测试

2.1 进入 nginx 官网,下载

http://nginx.org/

nginx-1.19.1.tar.gz

2.2 安装 nginx

1)、使用 wget 安装 pcre
https://ftp.pcre.org/pub/pcre/pcre2-10.35.tar.gz
https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz

pcre2-10.35.tar.gz 或 pcre-8.44.tar.gz

2)、解压文件
./configure 完成后,回到 pcre 目录下执行 make, 
3)、再执行 make && make install
make && make install PREFIX=/usr/local/nginx
4)、安装 openssl zlib
yum -y install make zlib zlib-devel gcc-c++ libtool  openssl openssl-devel 
可选
# 一键安装上面四个依赖
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
5)、安装 nginx
1、 解压缩 nginx-xx.tar.gz 包。 
2、 进入解压缩目录,执行./configure。  
3、 make && make install PREFIX=/usr/local/nginx

6)、查看开放的端口号
firewall-cmd --list-all
7)、设置开放的端口号
firewall-cmd --add-service=http --permanent
sudo firewall-cmd --add-port=80/tcp --permanent
8)、重启防火墙
firewall-cmd --reload

3、测试

1、cd /usr/local/nginx/sbin
# 启动 nginx
2、./nginx 
3、curl localhost:80/ 或 https://ip:80/



Welcome to nginx!



Welcome to nginx!

If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.

Thank you for using nginx.

你可能感兴趣的:(02_ Nginx 安装)