1. 安装环境准备
1.1 安装 gcc
安装 nginx 需要先将官网下载的源码进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装:
$ yum install -y gcc-c++
1.2 安装 PCRE pcre-devel
PCRE(Perl Compatible Regular Expressions) 是一个Perl库,包括 perl 兼容的正则表达式库。nginx 的 http 模块使用 pcre 来解析正则表达式,所以需要在 linux 上安装 pcre 库,pcre-devel 是使用 pcre 开发的一个二次开发库。nginx也需要此库
$ yum install -y pcre pcre-devel
1.3 安装 zlib
zlib 库提供了很多种压缩和解压缩的方式, nginx 使用 zlib 对 http 包的内容进行 gzip ,所以需要在 Centos 上安装 zlib 库
$ yum install -y zlib zlib-devel
1.4 安装 OpenSSL
OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及 SSL 协议,并提供丰富的应用程序供测试或其它目的使用。
nginx 不仅支持 http 协议,还支持 https(即在ssl协议上传输http),所以需要在 Centos 安装 OpenSSL 库
$ yum install -y openssl openssl-devel
2. 下载上传解压
2.1 下载
2.2 上传
$ rz nginx-1.21.6.tar.gz
2.3 解压
$ tar -zxvf nginx-1.21.6.tar.gz
3. 源码编译及安装
3.1 默认编译及安装(不修改安装位置,以configure配置位置安装)
$ cd nginx-1.21.6/
$ ./configure --with-stream
$ make
$ make install
3.2 修改安装位置
3.2.1 修改configure文件中prefix的值
3.2.2 执行configure文件时指定安装目录
$ cd nginx-1.21.6/
$ ./configure --prefix=安装路径 --with-stream
$ make
$ make install
3.2.3 在make install指定DESTDIR参数:
$ cd nginx-1.21.6/
$ ./configure --with-stream
$ make
$ make install DESTDIR=安装路径
4. 启动nginx
$ cd /home/xingyun/Program/Nginx/sbin
$ ./nginx
启动时,可能会出现默认80端口已占用的情况,如出现80端口占用只需修改nginx.conf的配置文件
$ vim nginx.conf
server {
listen 8080;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
}