Linux(RHEL7及CentOS7)下Nginx的安装与配置

简介: 一、环境操作系统版本:CentOS Linux release 7.4.1708 (Core) 最小化安装版二、安装过程1、安装编译工具及相关库。

一、环境

操作系统版本:CentOS Linux release 7.4.1708 (Core) 最小化安装版

二、安装过程

1、安装编译工具及相关库。

[root@Geeklp-Nginx ~]# yum -y install gcc-c++ zlib-devel openssl-devel libtool

2、下载Nginx及PCRE。

[root@Geeklp-Nginx ~]# curl -C - -O http://mirrors.sohu.com/nginx/nginx-1.13.7.tar.gz
[root@Geeklp-Nginx ~]# curl -C - -O https://ftp.pcre.org/pub/pcre/pcre-8.41.tar.gz

3、编译安装PCRE。

[root@Geeklp-Nginx ~]# tar -xvzf pcre-8.41.tar.gz
[root@Geeklp-Nginx pcre-8.41]# cd pcre-8.41
[root@Geeklp-Nginx pcre-8.41]# mkdir /usr/local/share/applications/pcre-8.41
[root@Geeklp-Nginx pcre-8.41]# ./configure --prefix=/usr/local/share/applications/pcre-8.41/
[root@Geeklp-Nginx pcre-8.41]# make && make install

4、编译安装Nginx。

[root@Geeklp-Nginx ~]# tar -xvzf nginx-1.13.7.tar.gz
[root@Geeklp-Nginx nginx-1.13.7]# cd nginx-1.13.7
[root@Geeklp-Nginx nginx-1.13.7]# ./configure --prefix=/usr/local/share/applications/nginx-1.13.7/ --with-http_ssl_module
[root@Geeklp-Nginx nginx-1.13.7]# make && make install

5、启动Nginx。

[root@Geeklp-Nginx nginx-1.13.7]# /usr/local/share/applications/nginx-1.13.7/sbin/nginx

6、配置防火墙。

[root@Geeklp-Nginx nginx-1.13.7]# firewall-cmd --permanent --add-port=80/tcp
[root@Geeklp-Nginx nginx-1.13.7]# firewall-cmd --reload

7、验证。
在浏览器中输入服务器地址:10.1.1.21。出现如下图所示则说明Nginx安装成功!
这里写图片描述

三、配置Nginx

1、查看Nginx版本:

[root@Geeklp-Nginx nginx-1.13.7]# /usr/local/share/applications/nginx-1.13.7/sbin/nginx -v
nginx version: nginx/1.13.7

2、修改配置文件,去掉以下几行的注释,此步骤主要用于测试配置文件修改是否正确。
这里写图片描述
3、检查配置是否正确。

[root@Geeklp-Nginx conf]# ../sbin/nginx -t
nginx: the configuration file /usr/local/share/applications/nginx-1.13.7//conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/share/applications/nginx-1.13.7//conf/nginx.conf test is successful

4、重载配置文件,配置防火墙。

[root@Geeklp-Nginx conf]# ../sbin/nginx -s reload

[root@Geeklp-Nginx conf]# firewall-cmd --permanent --add-port=443/tcp
[root@Geeklp-Nginx conf]# firewall-cmd --reload

5、验证。在浏览器里输入https://10.1.1.21/
这里写图片描述
说明https配置已经生效,但是不能正常使用,如需正常使用还需进一步配置。此处暂不讨论。
6、停止Nginx。

[root@Geeklp-Nginx conf]# ../sbin/nginx -s stop

7、启动Nginx并再次重启Nginx。

[root@Geeklp-Nginx conf]# ../sbin/nginx
[root@Geeklp-Nginx conf]# ../sbin/nginx -s reopen

8、查看帮助。

[root@Geeklp-Nginx conf]# ../sbin/nginx -h
nginx version: nginx/1.13.7
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/share/applications/nginx-1.13.7//)
  -c filename   : set configuration file (default: conf/nginx.conf)
  -g directives : set global directives out of configuration file

9、配置开机启动。

[root@Geeklp-Nginx sbin] echo "/usr/local/share/applications/nginx-1.13.7/sbin/nginx">>/etc/rc.local
[root@Geeklp-Nginx sbin]# chmod u+x /etc/rc.d/rc.local

其他内容后期文章再进一步讨论。

相关文章
|
1月前
|
缓存 应用服务中间件 网络安全
Nginx中配置HTTP2协议的方法
Nginx中配置HTTP2协议的方法
94 7
|
6天前
|
负载均衡 Ubuntu 应用服务中间件
nginx修改网站默认根目录及发布(linux、centos、ubuntu)openEuler软件源repo站点
通过合理配置 Nginx,我们可以高效地管理和发布软件源,为用户提供稳定可靠的服务。
37 13
|
9天前
|
存储 应用服务中间件 nginx
nginx反向代理bucket目录配置
该配置实现通过Nginx代理访问阿里云OSS存储桶中的图片资源。当用户访问代理域名下的图片URL(如 `http://代理域名/123.png`)时,Nginx会将请求转发到指定的OSS存储桶地址,并重写路径为 `/prod/files/2024/12/12/123.png`。
40 5
|
1月前
|
缓存 负载均衡 算法
如何配置Nginx反向代理以实现负载均衡?
如何配置Nginx反向代理以实现负载均衡?
|
24天前
|
负载均衡 前端开发 应用服务中间件
负载均衡指南:Nginx与HAProxy的配置与优化
负载均衡指南:Nginx与HAProxy的配置与优化
43 3
|
1月前
|
负载均衡 监控 应用服务中间件
配置Nginx反向代理时如何指定后端服务器的权重?
配置Nginx反向代理时如何指定后端服务器的权重?
63 4
|
1月前
|
安全 应用服务中间件 网络安全
如何测试Nginx反向代理实现SSL加密访问的配置是否正确?
如何测试Nginx反向代理实现SSL加密访问的配置是否正确?
59 3
|
1月前
|
安全 应用服务中间件 网络安全
配置Nginx反向代理实现SSL加密访问的步骤是什么?
我们可以成功地配置 Nginx 反向代理实现 SSL 加密访问,为用户提供更安全、可靠的网络服务。同时,在实际应用中,还需要根据具体情况进行进一步的优化和调整,以满足不同的需求。SSL 加密是网络安全的重要保障,合理配置和维护是确保系统安全稳定运行的关键。
118 3
|
1月前
|
应用服务中间件 网络安全 nginx
轻松上手Nginx Proxy Manager:安装、配置与实战
Nginx Proxy Manager (NPM) 是一款基于 Nginx 的反向代理管理工具,提供直观的 Web 界面,方便用户配置和管理反向代理、SSL 证书等。本文档介绍了 NPM 的安装步骤,包括 Docker 和 Docker Compose 的安装、Docker Compose 文件的创建与配置、启动服务、访问 Web 管理界面、基本使用方法以及如何申请和配置 SSL 证书,帮助用户快速上手 NPM。
230 1
|
分布式计算 资源调度 Hadoop