【Nginx那些事】系列
【Nginx那些事】nginx 安装及常用指令
【Nginx那些事】Nginx 配置文件说明
【Nginx那些事】nginx原理解析
【Nginx那些事】nginx配置实例(一)反向代理
【Nginx那些事】nginx配置实例(二)负载均衡
【Nginx那些事】nginx配置实例(三)动静分离
【Nginx那些事】nginx配置实例(四)搭建高可用集群
【Nginx那些事】nginx 安装及常用指令
centos7 安装 nginx
nginx 安装需要的依赖环境
- gcc
- pcre
- openssl
- zlib
通过指令安装
yum install gcc-c++
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel
下载nginx
自个下载
直接下载.tar.gz安装包,地址:https://nginx.org/en/download.html
wget 下载
更换版本,自行替换下载链接
# 下载nginx
wget -c https://nginx.org/download/nginx-1.19.0.tar.gz
# 解压
tar -zxvf nginx-1.19.0.tar.gz
cd nginx-1.19.0
配置nginx
默认配置
一般使用默认配置即可
cd nginx-1.19.0
./configure
自定义配置(可选)
./configure \
--prefix=/usr/local/nginx \
--conf-path=/usr/local/nginx/conf/nginx.conf \
--pid-path=/usr/local/nginx/conf/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
注:将临时文件目录指定为/var/temp/nginx,需要在/var下创建temp及nginx目录
安装nginx
# 编译安装
make && make install
cd /usr/local/nginx/sbin/
# 查看版本号
./nginx -v
# 查看安装路径
whereis nginx
启动、停止nginx
cd /usr/local/nginx/sbin/
# 启动
./nginx
# 强暴关闭
./nginx -s stop
# 优雅关闭
./nginx -s quit
# 重启
./nginx -s reopen
# 重载
./nginx -s reload
查看nginx进程
ps aux|grep nginx
dokcer 安装 nginx
移步 docker安装nginx,配置nginx 查看
常用指令
cd /usr/local/nginx/sbin/
# 启动
./nginx
# 查看nginx版本
./nginx -v
# 强暴关闭
./nginx -s stop
# 优雅关闭
./nginx -s quit
# 重启
./nginx -s reopen
# 重载
./nginx -s reload
# 检测配置文件
./nginx -t