博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS 6.5 下编译安装 Nginx 1.8.0
阅读量:6256 次
发布时间:2019-06-22

本文共 1251 字,大约阅读时间需要 4 分钟。

转自:https://i.cnblogs.com/EditPosts.aspx?postid=8303227&update=1

安装编译依赖的包

yum -y install gcc gcc-c++ autoconf automake makeyum -y install zlib zlib-devel openssl yum -y install openssl-devel pcre pcre-devel

安装 Nginx

# 下载源码wget  http://nginx.org/download/nginx-1.8.0.tar.gz  # 解压tar zxvf nginx-1.8.0.tar.gz cd nginx-1.8.0 # 编译安装 ./configure make && make install

运行 configure 后可以看到一大串配置信息:

nginx path prefix: "/usr/local/nginx"  nginx binary file: "/usr/local/nginx/sbin/nginx"  nginx configuration prefix: "/usr/local/nginx/conf"  nginx configuration file: "/usr/local/nginx/conf/nginx.conf" nginx pid file: "/usr/local/nginx/logs/nginx.pid" nginx error log file: "/usr/local/nginx/logs/error.log" nginx http access log file: "/usr/local/nginx/logs/access.log" nginx http client request body temporary files: "client_body_temp" nginx http proxy temporary files: "proxy_temp" nginx http fastcgi temporary files: "fastcgi_temp" nginx http uwsgi temporary files: "uwsgi_temp" nginx http scgi temporary files: "scgi_temp"

配置 Nginx

注意上面的配置信息,Nginx 的配置文件在 /usr/local/nginx/conf/ 目录下,此时可以编辑 /usr/local/nginx/conf/nginx.conf文件,修改配置,这个就不多说了。

配置完可以用 nginx -t 检查配置是否正确。

修改完之后就可以启动 Nginx 了:

 
nginx -c /usr/local/nginx/conf/nginx.conf # 查看 nginx 进程ps aux | grep nginx

转载地址:http://prtsa.baihongyu.com/

你可能感兴趣的文章
修改计算机名的注意事项
查看>>
WIN7关闭共享后怎样去掉图标上的小锁
查看>>
SRV记录注册不成功的可能的原因
查看>>
一步完成 MySQL 向 Redis 迁移
查看>>
【VMC实验室】在QCloud上创建您的SQL Cluster(4)
查看>>
我的友情链接
查看>>
卢松松:每个网站都该有个监测服务
查看>>
Memcache与MySQL并肩作战
查看>>
使用Android模拟器测试Linux驱动(1)
查看>>
验证码广告:站长增加收入新渠道
查看>>
objective-c 枚举王国遍历数组
查看>>
C# WinForm开发系列 - OWC
查看>>
关于利用VS2008创建项目遇到的小困惑备忘
查看>>
发布一款域名监控小工具——Domain(IP)Watcher
查看>>
VBS中数组的各种处理方式
查看>>
通用数据权限管理系统设计
查看>>
High Resolution Timer in Java 5
查看>>
Visio2010绘制上下文数据流图
查看>>
SQL高级---SQL TOP 子句
查看>>
EhCache 分布式缓存/缓存集群
查看>>