1.认识Nginx
Nginx ("engine x") 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器。 Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,第一个公开版本0.1.0发布于2004年10月4日。其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。
2.Nginx安装
2.1Nginx 安装准备工作(相关组件安装)
a. 安装c++编译环境,如已安装可略过
yum install gcc-c++
b. 安装pcre
PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。这些在执行正规表达式模式匹配时用与Perl 5同样的语法和语义是很有用的。
- 下载pcre并解压然后进行安装配置:
[root@server1 nginx]# wget https://ftp.pcre.org/pub/pcre/pcre2-10.30.tar.gz
[root@server1 nginx]# gunzip pcre2-10.30.tar.gz
[root@server1 nginx]# tar xf pcre2-10.30.tar
[root@server1 pcre2-10.30]# cd pcre2-10.30/
[root@server1 pcre2-10.30]# ./configure
- 编译安装pcre
[root@server1 pcre2-10.30]# make
[root@server1 pcre2-10.30]# make install
c.openssl安装
yum install openssl-devel -y
d.建立nginx用户
建立nginx用户并加入相应的组中,后续的配置中会用到这些信息:
[root@server1 nginx]# useradd -g www www -s /sbin/nologin ##创建nginx运行账户www并加入到www组,不允许www用户直接登录系统
2.2 安装Nginx(源码编译安装)
2.1下载源码(版本尽量选择稳定版)
[root@server1 nginx]# wget http://nginx.org/download/nginx-1.12.1.tar.gz
2.2 解压源码并进行配置
[root@server1 nginx]# tar zxvf nginx-1.12.1.tar.gz
[root@server1 nginx]# cd nginx-1.12.1
[root@server1 nginx-1.12.1]# ./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module
注意:配置和安装过程中可能会出现一些依赖缺少的问题,为了程序能够正常安装运行,请先解决依赖问题!
提示可以忽略http_rewrite_module模块继续安装
又提示缺少openssl library,原来是没装openssl ,yum安装
再继续
出现下图所示说明成功,接下来继续进行编译安装
2.3 编译安装
[root@server1 nginx-1.12.1]# make && make install
2.4 检查是否安装成功
[root@server1 nginx-1.12.1]# cd /usr/local/nginx/sbin
[root@server1 sbin]# ./nginx -t
结果如下则基本安装成功:
2.5 服务的启动停止重启与测试
- 启动
- 方法1
# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf - 方法2,进入nginx目录并启动
# cd /usr/local/nginx/sbin
# ./nginx
- 方法1
2.6 nginx的基本操作
[root@server1 sbin]# /usr/local/nginx/sbin/nginx ##启动
[root@server1 sbin]# /usr/local/nginx/sbin/nginx -s stop(quit、reload) ##停止/重启
[root@server1 sbin]# /usr/local/nginx/sbin/nginx -h ##命令帮助
[root@server1 sbin]# /usr/local/nginx/sbin/nginx -t 验证配置文件
[root@server1 sbin]# vim /usr/local/nginx/conf/nginx.conf 配置文件
2.7 测试
- 浏览器中测试
http://ip:80
浏览器出现“welcome to nginx”页面则为正常启动: