安装

首先打开 nginx 官网 http://nginx.org/en/download.html

找到对应的版本, 然后复制里面的下载地址(可以右键,复制下载地址)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 在 centos 中使用 wget 下载
wget http://nginx.org/download/nginx-1.21.3.tar.gz

# 解压生成对应的文件夹
tar -zxvf http://nginx.org/download/nginx-1.21.3.tar.gz

# 进入对应的 nginx 文件夹, 配置 configure 参数, --prefix 指定软件安装在哪里
cd nginx-1.21.3
./configure --prefix=/usr/local/nginx

# 编译
make

# 安装
make install

# 启动
/usr/local/nginx/sbin/nginx #方法1
nginx #方法2

# 查看端口,或者浏览器访问验证
netstat –ntpl #方法1
ps -ef | grep nginx #方法2

参考

https://www.jianshu.com/p/374c13e61a2e