共计 2173 个字符,预计需要花费 6 分钟才能阅读完成。
近期准备使用 Nginx,就着手研究一下在 CentOS7.2 上来源码安装 Nginx。开始正题。
# uname -r
3.10.0-327.el7.x86_64
# ./configure –prefix=/usr/local/nginx
安装前还是在网上稍微搜集了一些信息,我的 CentOS 安装在虚拟机上,安装的时候选择的是最小安装,所以编译安装时所需要的一些编译器和依赖库可能没有,所以先来安装这些编译环境。
# yum install gcc gcc-c++ zlib-devel pcre-devel openssl-libs openssl -y
安装完编译环境和依赖库之后再一次检测安装环境并生成 Makefile 文件,在这一步操作过程可以自定义一些相关参数,比如软件安装位置、配置文件存放位置以及依赖库文件引用路径等等,具体参数说明可以使用./configure –help 来查看。
# ./configure –prefix=/usr/local/nginx
出现如图提示表示 Makefile 文件制作完成,接下来开始准备安装啦!
使用 make 命令来进行编译,中间会出现一堆的代码 o(╯□╰)o
# make
看最后一行,表示编译没有发现问题,成功!!
最后一步,开始使用“make install”执行安装操作。
# make install
安装完成,接下来配置环境变量以后就不用使用绝对路径来操作 Nginx 来了;
# vim /etc/profile.d/http.sh
1 export PATH=/usr/local/nginx/sbin:$PATH
# source !$
可以使用 nginx - h 命令来查看相关选项:
# nginx -h
nginx version: nginx/1.10.2
Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives]
Options:
-?,-h : this help
-v : show version and exit
-V : show version and configure options then exit
-t : test configuration and exit
-T : test configuration, dump it and exit
-q : suppress non-error messages during configuration testing
-s signal : send signal to a master process: stop, quit, reopen, reload
-p prefix : set prefix path (default: /usr/local/nginx/)
-c filename : set configuration file (default: conf/nginx.conf)
-g directives : set global directives out of configuration file
常用的就是 -s 后跟 stop、reload 来关闭和重载 nginx,直接运行 nginx 则启动服务。
接下来就差最后一步就可以访问了,配置大防火墙(*@ο@*) 哇~!
# iptables -A INPUT -d 192.168.30.10 -p tcp –dport 80 -m state NEW -j ACCEPT
使用浏览器输入虚拟机的 IP 地址,如果不出意外的话会出现如下画面。
成功!!
下面关于 Nginx 的文章您也可能喜欢,不妨参考下:
CentOS 7.2 下编译安装 PHP7.0.10+MySQL5.7.14+Nginx1.10.1 http://www.linuxidc.com/Linux/2016-09/134804.htm
搭建基于 Linux6.3+Nginx1.2+PHP5+MySQL5.5 的 Web 服务器全过程 http://www.linuxidc.com/Linux/2013-09/89692.htm
Linux 下编译安装 Nginx 1.8.1 及配置 http://www.linuxidc.com/Linux/2017-02/140495.htm
CentOS 6.4 安装配置 Nginx+Pcre+php-fpm http://www.linuxidc.com/Linux/2013-08/88984.htm
Nginx 日志过滤 使用 ngx_log_if 不记录特定日志 http://www.linuxidc.com/Linux/2014-07/104686.htm
Nginx 的 500,502,504 错误解决方法 http://www.linuxidc.com/Linux/2015-03/115507.htm
Nginx 版本号修改隐藏及记录用户请求需要的时间 http://www.linuxidc.com/Linux/2017-02/141044.htm
CentOS 7 编译安装 Nginx1.10.2 脚本启动失败解决思路 http://www.linuxidc.com/Linux/2017-01/139794.htm
Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-03/141246.htm