Heim > Artikel > Betrieb und Instandhaltung > So stellen Sie den Nginx-Webdienst in RHEL8 bereit
Red Hat Enterprise Linux Version 8.0 VMware Workstation Pro 14
[root@localhost ~]# systemctl stop httpd #把 httpd 停掉,防止它影响 Nginx[root@localhost ~]# yum install -y nginx[root@localhost ~]# systemctl start nginx[root@localhost ~]# iptables -F[root@localhost ~]# systemctl stop firewalld[root@localhost ~]# systemctl disable firewalld[root@localhost ~]# setenforce 0[root@localhost ~]# ifconfigens33: flags=4163 mtu 1500 inet 192.168.10.118 netmask 255.255.255.0 broadcast 192.168.10.255 inet6 fe80::e09a:769b:83f0:8efa prefixlen 64 scopeid 0x20 ether 00:50:56:34:0d:74 txqueuelen 1000 (Ethernet) RX packets 2908 bytes 1777392 (1.6 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 1800 bytes 244006 (238.2 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73 mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 1000 (Local Loopback) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 virbr0: flags=4099 mtu 1500 inet 192.168.122.1 netmask 255.255.255.0 broadcast 192.168.122.255 ether 52:54:00:9c:ef:c6 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Geben Sie 192.168.10.118 in den Browser ein, um den Status des Nginx-Webservers zu überprüfen
Sehen Sie sich die Nginx-Dateiliste des Softwarepakets an e
RHEL 8 Web ServicesRHEL 8 Building Nginx Web Service
Es ist ein 403 Forbidden-Fehler aufgetreten, da die Konfigurationsdatei nicht ordnungsgemäß konfiguriert wurde. Die Lösung lautet wie folgt:Beziehen Sie sich auf die obige Konfiguration, um sie zu ändern[root@localhost ~]# echo "HLLO RHEL8" > /usr/share/nginx/html/index.html[root@localhost ~]# systemctl restart nginx
Geben Sie 192.168.10.118 ein Browser, um den Dateifreigabestatus anzuzeigen
Host-IP anzeigen
Installiert mit yum auf RHEL8. Der Nginx-Webdienst bietet eine bessere Unterstützung für Chinesisch
[root@localhost ~]# mv /usr/share/nginx/html/* /var/lib/nginx/tmp/[root@localhost ~]# touch /usr/share/nginx/html/file{1..10}[root@localhost ~]# ls /usr/share/nginx/html/file1 file10 file2 file3 file4 file5 file6 file7 file8 file9 [root@localhost ~]# systemctl restart nginx
Das obige ist der detaillierte Inhalt vonSo stellen Sie den Nginx-Webdienst in RHEL8 bereit. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!