Nginx--基础知识点--4--nginx安装
2021/12/3 7:06:11
本文主要是介绍Nginx--基础知识点--4--nginx安装,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1 安装依赖
# 查看依赖是否已安装 yum list installed | grep -E "gcc|pcre-devel|zlib-devel|openssl|openssl-devel" # 安装所有未安装的依赖 yum -y install gcc pcre-devel zlib-devel openssl openssl-devel
2 下载包
# 下载nginx包 wget http://nginx.org/download/nginx-1.20.2.tar.gz # 下载echo模块包 wget https://github.com/openresty/echo-nginx-module/archive/v0.61.tar.gz
3 解压缩
# 解压缩nginx包,位置随意 tar -zxvf nginx-1.20.2.tar.gz # 解压缩echo模块包,位置随意 tar -zxvf v0.61.tar.gz
4 编译nginx
进入nginx解压目录执行:
./configure --add-module=echo模块的解压目录 make && make install
5 启动与查看
# 检查配置文件是否正常 /usr/local/nginx/sbin/nginx -t # 启动nginx /usr/local/nginx/sbin/nginx # 查看nginx版本 /usr/local/nginx/sbin/nginx -V
6 添加环境变量
# /etc/profile最后加入 export PATH=/usr/local/nginx/sbin:$PATH
# 重新加载环境变量 source /etc/profile
7 测试
7.1 测试nginx是否启动成功
curl http://localhost
7.2 测试echo
# nginx.conf加入 location /hello_world { echo "hello world"; }
nginx -s reload curl http://localhost/hello_world
这篇关于Nginx--基础知识点--4--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专业技术文章分享