Implementation steps for Nginx installation in yum mode under CentOS7

  • 2020-06-15 11:01:48
  • OfStack

Steps to install Nginx in yum mode under CentOS7

Nginx is a powerful, high-performance Web and reverse proxy server with a number of excellent features. Low overhead, high concurrency, support for caching, support for forward and backward proxies, support for load balancing, support for regularization, support for rewrite, etc. So the fans are numerous. This article briefly describes the installation and deployment of yum based on CentOS 7 for your reference.

If it is a compiled installation, please refer to: Linux 6 for installation

For common configuration of Nginx, see: Overview of Nginx and daily administration

1. Configure nginx yum source


 The demo environment 
[root@centos7-router ~]# more /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)

[root@centos7-router ~]# vim /etc/yum.repos.d/nginx.repo

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/
gpgcheck=0
enabled=1

 Will be in the above configuration file OS Replace with rhel or centos . OSRELEASE Replace with 6 or 7 Which is the current Linux for 6 or 7 version 

 Look at the machine ip
[root@centos7-router ~]# ip addr|grep inet|grep global
inet 172.24.8.254/24 brd 172.24.8.255 scope global eno16777728
inet 192.168.1.175/24 brd 192.168.1.255 scope global dynamic eno33554960

2. Install nginx


[root@centos7-router ~]# yum install nginx -y
[root@centos7-router ~]# yum install nginx-module-perl.x86_64 -y 

 View the relevant documentation of the process 
[root@centos7-router ~]# rpm -ql nginx
/etc/logrotate.d/nginx
/etc/nginx
/etc/nginx/conf.d
/etc/nginx/conf.d/default.conf
/etc/nginx/fastcgi_params
/etc/nginx/koi-utf
/etc/nginx/koi-win
/etc/nginx/mime.types
/etc/nginx/modules
/etc/nginx/nginx.conf
/etc/nginx/scgi_params
/etc/nginx/uwsgi_params
/etc/nginx/win-utf
/etc/sysconfig/nginx
/etc/sysconfig/nginx-debug
/usr/lib/systemd/system/nginx-debug.service
/usr/lib/systemd/system/nginx.service
/usr/lib64/nginx
/usr/lib64/nginx/modules
/usr/libexec/initscripts/legacy-actions/nginx
/usr/libexec/initscripts/legacy-actions/nginx/check-reload
/usr/libexec/initscripts/legacy-actions/nginx/upgrade
/usr/sbin/nginx
/usr/sbin/nginx-debug
/usr/share/doc/nginx-1.12.2
/usr/share/doc/nginx-1.12.2/COPYRIGHT
/usr/share/man/man8/nginx.8.gz
/usr/share/nginx
/usr/share/nginx/html
/usr/share/nginx/html/50x.html
/usr/share/nginx/html/index.html
/var/cache/nginx
/var/log/nginx

3. Verify nginx


 Start the nginx
root@centos7-router ~]# systemctl start nginx
[root@centos7-router ~]# systemctl enable nginx ### Configure self-start 
[root@centos7-router ~]# ss -nltp|grep nginx
LISTEN 0 128 *:80 *:* users:(("nginx",pid=65418,fd=6),("nginx",pid=65415,fd=6))

 To view nginx The version of the 
[root@centos7-router ~]# nginx -v
nginx version: nginx/1.12.2

 View or modify the configuration file 
[root@centos7-router ~]# more /etc/nginx/nginx.conf

user nginx;
worker_processes 1;

error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;

events {
worker_connections 1024;
}

http {
include /etc/nginx/mime.types;  ### Author : Leshami
default_type application/octet-stream; ### Blog : http://blog.csdn.net/leshami

log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';

access_log /var/log/nginx/access.log main;

sendfile on;
#tcp_nopush on;

keepalive_timeout 65;

#gzip on;

include /etc/nginx/conf.d/*.conf;
}

[root@centos7-router ~]# firewall-cmd --add-service=http --permanent
[root@centos7-router ~]# firewall-cmd --reload

 Verify from other machines nginx
[root@centos7-web ~]# curl http://172.24.8.254
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/" rel="external nofollow" >nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/" rel="external nofollow" >nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

If you have any questions, please leave a message or go to this site community exchange discussion, thank you for reading, hope to help you, thank you for your support to this site!


Related articles: