linux nginx 安装

一、nginx下载地址:

http://nginx.org/en/download.html

二、下载nginx对应的包

 

 

 三、上传到对应的服务器

四、解压安装

## 解压文件
tar -zxvf nginx-1.22.0.tar.gz
## 重命名文件
mv nginx-1.22.0 nginx
## nginx安装前配置信息
./configure \
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi
## 安装
make && make install

负载均衡简单配置

五、找对对应的nginx安装目录下

安装目录:
/usr/local/nginx

配置文件:
vi ./conf/nginx.conf

启动nginx命令为:
./sbin/nginx -c ./conf/nginx.conf

优雅关闭命令(程序执行完之后关闭):
./sbin/nginx -s quit

强制关闭:
./sbin/nginx -s stop

 

posted @ 2023-07-28 17:17  译林  阅读(174)  评论(0编辑  收藏  举报