1.安装各种依赖

#gcc安装,nginx源码编译需要
yum install gcc-c++

#PCRE pcre-devel 安装,nginx 的 http 模块使用 pcre 来解析正则表达式
yum install -y pcre pcre-devel

#zlib安装,nginx 使用zlib对http包的内容进行gzip
yum install -y zlib zlib-devel

#OpenSSL 安装,强大的安全套接字层密码库,nginx 不仅支持 http 协议,还支持 https(即在ssl协议上传输http)
yum install -y openssl openssl-devel

2.下载
1)直接官网下载【官网链接】

2)使用wget命令下载(推荐)

#下载版本号可根据目前官网最新稳定版自行调整
wget -c https://nginx.org/download/nginx-1.16.1.tar.gz

3.安装

#根目录使用ls命令可以看到下载的nginx压缩包,然后解压
tar -zxvf nginx-1.16.1.tar.gz

#解压后进入目录
cd nginx-1.16.1

#使用默认配置
./configure

#编译安装
make
make install

#查找安装路径,默认都是这个路径
[root@nice-s etc]# whereis nginx
nginx: /usr/local/nginx

#启动、停止nginx
cd /usr/local/nginx/sbin/
./nginx     #启动
./nginx -s stop  #停止,直接查找nginx进程id再使用kill命令强制杀掉进程
./nginx -s quit  #退出停止,等待nginx进程处理完任务再进行停止
./nginx -s reload  #重新加载配置文件,修改nginx.conf后使用该命令,新配置即可生效

#重启nginx,建议先停止,再启动
./nginx -s stop
./nginx

#查看nginx进程,如下返回,即为成功
[root@nice-s etc]# ps aux|grep nginx
root     24742  0.0  0.1  20680  1200 ?        Ss   09:47   0:00 nginx: master process ./nginx
nobody   26933  0.0  0.1  21104  1684 ?        S    10:57   0:00 nginx: worker process
root     27148  0.0  0.0 112708   980 pts/0    R+   11:43   0:00 grep --color=auto nginx

4.开机自启动

#在rc.local增加启动代码即可
vi /etc/rc.local
#增加一行 /usr/local/nginx/sbin/nginx 增加后保存
#设置执行权限
cd /etc
chmod 755 rc.local

1.jpg
浏览器输入服务器ip即可看到nginx欢迎界面

5.配置域名映射

#进入nginx配置文件目录,找到nginx的配置文件nginx.conf
cd /usr/local/nginx/conf/

#直接修改
vi nginx.conf

1.jpg

#设定实际的服务器列表 
upstream test_server{
   server 127.0.0.1:8080;
}

#HTTP服务器
server {
    #监听80端口,80端口是知名端口号,用于HTTP协议
    listen       80;
    
    #定义使用www.test.com域名访问
    server_name  www.test.com;
    
    #反向代理的路径(和upstream绑定),location后面设置映射的路径 
    location / {
        proxy_pass http://test_server;
    } 

    location / {
        root usr/local/nginx/test;
        index /index.html;                        
        try_files $uri $uri/ /index.html;
    }   
}

需要修改server_name和location里面的内容

#修改完成后,重新加载配置文件
cd /usr/local/nginx/sbin/
./nginx -s reload

Jello
181 声望20 粉丝

看得越多,懂的越少,还年轻,多学习


下一篇 »
分布式事务