Linux 下安装 Nginx
2021/8/27 7:07:29
本文主要是介绍Linux 下安装 Nginx,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Linux 下安装 Nginx
1.下载
官网下载:https://nginx.org/.
2.上传安装包到linux系统
3.安装依赖环境
(1) 安装gcc环境
yum install gcc-c++
(2) 安装PCRE库,用于解析正则表达式
yum install -y pcre pcre-devel
(3) zlib压缩和解压缩依赖
yum install -y zlib zlib-devel
(4) SSL安全的加密的套接字协议层,用于HTTP安全传输,也就是https
yum install -y openssl openssl-devel
4.解压,解压后得到的是源码,需要编译后才能安装
tar -zxvf nginx-1.16.1.tar.gz
5.编译前准备
(1)创建nginx临时目录,如果不创建,启动nginx的过程中会报错
mkdir /var/temp/nginx -p
(2)在nginx目录下,输入以下命令,来创建makefile文件
./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
- 注:上面的 \ 代表换行
- 配置命令说明
命令 | 解释 |
---|---|
--prefix | 指定ngnix安装目录 |
--pid-path | 指向nginx的pid |
--lock-path | 锁定安装文件,防止被恶意篡改或误操作 |
--error-log-path | 错误日志 |
--http-log-path | http日志 |
--with-http_gzip_static_module | 启用gzip模块,在线实时压缩输出流数据 |
--http-client-body-temp-path | 设定客户端请求的临时目录 |
--http-proxy-temp-path | 设定http代理临时目录 |
--http-fastcgi-temp-path | 设定fastcgi临时目录 |
--http-uwsgi-temp-path | 设定uwsgi临时目录 |
--http-scgi-temp-path | 设定scgi临时目录 |
6.编译
make
7.安装
make install
8.进入sbin目录启动ngnix
- 进入sbin目录
cd /usr/local/nginx/sbin
- 启动
./nginx
- 停止
./nginx -s stop
- 重新加载
./nginx -s reload
完成!!!
这篇关于Linux 下安装 Nginx的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享
- 2024-08-14nginx 让访问带有/relid的地址返回404 ,例子 /relid-x-0.36-y-131.html-icode9专业技术文章分享
- 2024-08-14nginx 判断地址有/statics/的路径,指向到/home/html/statics/目录-icode9专业技术文章分享