Hello,
In this week’s feature highlight, we look at How to Install WordPress on AlmaLinux 8

Prerequisites:
WordPress requires LAMP stack installed and running
For detailed installation, refer to LAMP Stack on Almalinux 8
Allow firewall HTTP and optionally HTTPS port 80 and 443:
Allow the firewall to HTTP and HTTPS and reload it with following commands
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
Output:
[root@my ~]# firewall-cmd --permanent --zone=public --add-service=http
success
[root@my ~]# firewall-cmd --permanent --zone=public
… Read More