PREPARE sudo yum clean all sudo yum update INSTALLE APACHE sudo yum install httpd -y sudo systemctl start httpd.service INSTALL MYSQL (MariaDB) Server sudo yum install mariadb-server mariadb -y sudo systemctl start mariadb sudo mysql_secure_installation INSTALL PHP sudo yum install epel-release yum-utils sudo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm sudo yum-config-manager --enable remi-php73 sudo yum install php php-common php-opcache php-mcrypt php-cli php-gd php-curl php-mysqlnd php -v sudo systemctl restart httpd.service sudo nano /var/www/html/info.php CREATE DATABASE mysql -u root -p CREATE DATABASE ahau; CREATE USER admin@localhost IDENTIFIED BY 'nbuser'; GRANT ALL PRIVILEGES ON ahau.* TO admin@localhost IDENTIFIED BY 'password'; FLUSH PRIVILEGES; exit INSTALL WORDPRESS sudo yum install php-gd sudo service httpd restart cd ~ wget http://wordpress.org/latest.tar.gz tar xzvf latest.tar.gz sudo rsync -avP ~/wordpress/ /var/www/html/ mkdir /var/www/html/wp-content/uploads sudo chown -R apache:apache /var/www/html/* CONFIGURE WORDPRESS cd /var/www/html cp wp-config-sample.php wp-config.php nano wp-config.php // ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define('DB_NAME', 'wordpress'); /** MySQL database username */ define('DB_USER', 'wordpressuser'); /** MySQL database password */ define('DB_PASSWORD', 'password'); http://server_domain_name_or_IP UPDATE LAST VERSION OF PHP sudo yum-config-manager --enable remi-php74 yum update