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

本文共 1303 字,大约阅读时间需要 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

转载于:https://www.cnblogs.com/sharpest/p/8303227.html

你可能感兴趣的文章
问题账户需求分析
查看>>
JavaSE-代码块
查看>>
爬取所有校园新闻
查看>>
32、SpringBoot-整合Dubbo
查看>>
python面向对象基础
查看>>
HDU 2044 一只小蜜蜂(递归)
查看>>
docker 下 安装rancher 笔记
查看>>
spring两大核心对象IOC和AOP(新手理解)
查看>>
数据分析相关
查看>>
Python LDAP中的时间戳转换为Linux下时间
查看>>
微信小程序蓝牙连接小票打印机
查看>>
环境错误2
查看>>
C++_了解虚函数的概念
查看>>
全新jmeter视频已经上架
查看>>
Windows 8下如何删除无线配置文件
查看>>
解决Windows 7中文件关联和打开方式
查看>>
oracle系列(五)高级DBA必知的Oracle的备份与恢复(全录收集)
查看>>
hp 服务器通过串口重定向功能的使用
查看>>
国外10大IT网站和博客网站
查看>>
android第十一期 - SmoothSwitchLibrary仿IOS切换Activity动画效果
查看>>