码迷,mamicode.com
首页 > 系统相关 > 详细

linux 下安装nginx

时间:2018-12-29 23:23:45      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:style   img   Fix   info   html   linux   server   ref   服务   

下载

下载版本 nginx-1.13.4.tar.gz

安装

1.解压

tar -zxvf nginx-1.13.4.tar.gz

2.配置安装目录

./configure  —prefix=/usr/local/nginx 

3.执行 

make

make install

进行安装,如果安装失败,可能是缺少了一些系统文件,安装上就是了。

配置负载均衡

在 http 节点下添加

 

upstream linuxidc {
server localhost:8080;
server localhost:8081;
}

指向后端的 8080,8081 服务

在server 节点下添加

location / {
root html;
index index.html index.htm;
proxy_pass http://linuxidc;
}

这样负载均衡 就配置好了。

nginx 操作:

启动 :

./sbin/nginx -c conf/nginx.conf

重启

./sbin/nginx -s reload

强制 停止

ps -ef | grep nginx

技术分享图片

kill -9 1422

kill -9 2509

 

linux 下安装nginx

标签:style   img   Fix   info   html   linux   server   ref   服务   

原文地址:https://www.cnblogs.com/yg_zhang/p/10197954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!