Install wordpress on Linux

Install mariaDB

[root@wordpress ~]# dnf install mariadb mariadb-server
Last metadata expiration check: 0:14:19 ago on Fri 09 Sep 2022 10:27:20 PM +03.
Package mariadb-3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64 is already installed.

Dependencies resolved.

Package Architecture Version Repository Size

Installing:
mariadb-server x86_64 3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b ol8_appstream 16 M
Installing dependencies:
mariadb-errmsg x86_64 3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b ol8_appstream 234 k

Transaction Summary

Install 2 Packages

Total download size: 16 M
Installed size: 84 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): mariadb-errmsg-10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64.rpm 397 kB/s | 234 kB 00:00

(2/2): mariadb-server-10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64.rpm 2.6 MB/s | 16 MB 00:06

Total 2.6 MB/s | 16 MB 00:06
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : mariadb-errmsg-3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64 1/2
Running scriptlet: mariadb-server-3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64 2/2
Installing : mariadb-server-3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64 2/2
Running scriptlet: mariadb-server-3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64 2/2
Verifying : mariadb-errmsg-3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64 1/2
Verifying : mariadb-server-3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64 2/2

Installed:
mariadb-errmsg-3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64 mariadb-server-3:10.3.32-2.0.1.module+el8.5.0+20629+e1b20d6b.x86_64

Complete!
[root@wordpress ~]#

[root@wordpress ~]# mysql_install_db –user=mysql
Installing MariaDB/MySQL system tables in ‘/var/lib/mysql’ …
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
To do so, start the server, then issue the following command:

‘/usr/bin/mysql_secure_installation’

which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.

See the MariaDB Knowledgebase at http://mariadb.com/kb or the
MySQL manual for more instructions.

You can start the MariaDB daemon with:
cd ‘/usr’ ; /usr/bin/mysqld_safe –datadir=’/var/lib/mysql’

You can test the MariaDB daemon with mysql-test-run.pl
cd ‘/usr/mysql-test’ ; perl mysql-test-run.pl

Please report any problems at http://mariadb.org/jira

The latest information about MariaDB is available at http://mariadb.org/.
You can find additional information about the MySQL part at:
http://dev.mysql.com
Consider joining MariaDB’s strong and vibrant community:
https://mariadb.org/get-involved/

[root@wordpress ~]#

[root@wordpress ~]# systemctl status mariadb
● mariadb.service – MariaDB 10.3 database server
Loaded: loaded (/usr/lib/systemd/system/mariadb.service; disabled; vendor preset: disabled)
Active: inactive (dead)
Docs: man:mysqld(8)
https://mariadb.com/kb/en/library/systemd/
[root@wordpress ~]# systemctl start mariadb
[root@wordpress ~]# systemctl enable mariadb
Created symlink /etc/systemd/system/mysql.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/mysqld.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service → /usr/lib/systemd/system/mariadb.service.
[root@wordpress ~]# systemctl status mariadb
● mariadb.service – MariaDB 10.3 database server
Loaded: loaded (/usr/lib/systemd/system/mariadb.service; enabled; vendor preset: disabled)
Active: active (running) since Fri 2022-09-09 22:48:37 +03; 10s ago
Docs: man:mysqld(8)
https://mariadb.com/kb/en/library/systemd/
Main PID: 36944 (mysqld)
Status: “Taking your SQL requests now…”
Tasks: 30 (limit: 24740)
Memory: 67.3M
CGroup: /system.slice/mariadb.service
└─36944 /usr/libexec/mysqld –basedir=/usr

Sep 09 22:48:37 wordpress.localdomain systemd[1]: Starting MariaDB 10.3 database server…
Sep 09 22:48:37 wordpress.localdomain mysql-prepare-db-dir[36905]: Database MariaDB is probably initialized in /var/lib/mysql already, nothing is done.
Sep 09 22:48:37 wordpress.localdomain mysql-prepare-db-dir[36905]: If this is not the case, make sure the /var/lib/mysql is empty before running mysql-prepare-db-dir.
Sep 09 22:48:37 wordpress.localdomain mysqld[36944]: 2022-09-09 22:48:37 0 [Note] /usr/libexec/mysqld (mysqld 10.3.32-MariaDB) starting as process 36944 …
Sep 09 22:48:37 wordpress.localdomain systemd[1]: Started MariaDB 10.3 database server.
[root@wordpress ~]# mysqladmin -u root password oracle
[root@wordpress ~]#

[root@wordpress ~]# mysql -u root -p
Enter password: oracle <======
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 14
Server version: 10.3.32-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.

MariaDB [(none)]>

MariaDB [(none)]> SELECT VERSION();
+—————–+
| VERSION() |
+—————–+
| 10.3.32-MariaDB |
+—————–+
1 row in set (0.000 sec)

MariaDB [(none)]>

MariaDB [(none)]> show databases;
+——————–+
| Database |
+——————–+
| information_schema |
| mysql |
| performance_schema |
| test |
+——————–+
4 rows in set (0.000 sec)

MariaDB [(none)]> create database wpDB;
Query OK, 1 row affected (0.000 sec)

MariaDB [(none)]> CREATE USER ‘wordpress’@’localhost’ IDENTIFIED BY ‘Aa123456’;
Query OK, 0 rows affected (0.000 sec)

MariaDB [(none)]> GRANT ALL PRIVILEGES ON wpDB.* TO ‘wordpress’@’localhost’;
Query OK, 0 rows affected (0.000 sec)

MariaDB [(none)]> show databases;
+——————–+
| Database |
+——————–+
| information_schema |
| mysql |
| performance_schema |
| test |
| wordpressDB |
+——————–+
5 rows in set (0.001 sec)

MariaDB [(none)]>

===================================================================================

PHP ınstallation

[root@wordpress etc]# sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-late st-8.noarch.rpm
Updating Subscription Management repositories.
Unable to read consumer identity

This system is not registered with an entitlement server. You can use subscription-manager to register .

Last metadata expiration check: 0:11:04 ago on Sat 24 Sep 2022 02:06:06 PM UTC.
epel-release-latest-8.noarch.rpm 47 kB/s | 24 kB 00:00

Dependencies resolved.

Package Architecture Version Repository Size

Installing:
epel-release noarch 8-17.el8 @commandline 24 k

Transaction Summary

Install 1 Package

Total size: 24 k
Installed size: 34 k
Downloading Packages:
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : epel-release-8-17.el8.noarch 1/1
Running scriptlet: epel-release-8-17.el8.noarch 1/1
Many EPEL packages require the CodeReady Builder (CRB) repository.
It is recommended that you run /usr/bin/crb enable to enable the CRB repository.

Verifying : epel-release-8-17.el8.noarch 1/1
Installed products updated.

Installed:
epel-release-8-17.el8.noarch

Complete!
[root@wordpress etc]# sudo yum -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
Updating Subscription Management repositories.
Unable to read consumer identity

This system is not registered with an entitlement server. You can use subscription-manager to register .

Extra Packages for Enterprise Linux 8 – x86_64 19 MB/s | 13 MB 00:00
Extra Packages for Enterprise Linux Modular 8 – x86_64 1.3 MB/s | 733 kB 00:00
Last metadata expiration check: 0:00:01 ago on Sat 24 Sep 2022 02:17:31 PM UTC.
remi-release-8.rpm 257 kB/s | 29 kB 00:00

Dependencies resolved.

Package Architecture Version Repository Size

Installing:
remi-release noarch 8.6-1.el8.remi @commandline 29 k

Transaction Summary

Install 1 Package

Total size: 29 k
Installed size: 24 k
Downloading Packages:
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : remi-release-8.6-1.el8.remi.noarch 1/1
Verifying : remi-release-8.6-1.el8.remi.noarch 1/1
Installed products updated.

Installed:
remi-release-8.6-1.el8.remi.noarch

Complete!
[root@wordpress etc]# sudo yum -y install yum-utils
Updating Subscription Management repositories.
Unable to read consumer identity

This system is not registered with an entitlement server. You can use subscription-manager to register .

Remi’s Modular repository for Enterprise Linux 8 – x86_64 3.4 kB/s | 833 B 00:00
Remi’s Modular repository for Enterprise Linux 8 – x86_64 3.0 MB/s | 3.1 kB 00:00
Importing GPG key 0x5F11735A:
Userid : “Remi’s RPM repository remi@remirepo.net
Fingerprint: 6B38 FEA7 231F 87F5 2B9C A9D8 5550 9759 5F11 735A
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-remi.el8
Remi’s Modular repository for Enterprise Linux 8 – x86_64 3.3 MB/s | 1.1 MB 00:00
Safe Remi’s RPM repository for Enterprise Linux 8 – x86_64 5.3 kB/s | 833 B 00:00
Safe Remi’s RPM repository for Enterprise Linux 8 – x86_64 3.0 MB/s | 3.1 kB 00:00
Importing GPG key 0x5F11735A:
Userid : “Remi’s RPM repository remi@remirepo.net
Fingerprint: 6B38 FEA7 231F 87F5 2B9C A9D8 5550 9759 5F11 735A
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-remi.el8
Safe Remi’s RPM repository for Enterprise Linux 8 – x86_64 6.9 MB/s | 2.3 MB 00:00
Package yum-utils-4.0.21-11.el8.noarch is already installed.
Dependencies resolved.
Nothing to do.
Complete!
[root@wordpress etc]#

Complete!
[root@wordpress ~]#

[root@ip-172-31-1-84 etc]# sudo yum install php81
Updating Subscription Management repositories.
Unable to read consumer identity

This system is not registered with an entitlement server. You can use subscription-manager to register.

Last metadata expiration check: 0:02:46 ago on Sat 24 Sep 2022 02:17:50 PM UTC.

Dependencies resolved.

Package Architecture Version Repository Size

Installing:
php81 x86_64 8.1-2.el8.remi remi-safe 7.4 k
Installing dependencies:
environment-modules x86_64 4.5.2-1.el8 rhel-8-baseos-rhui-rpms 421 k
httpd-filesystem noarch 2.4.37-47.module+el8.6.0+15654+427eba2e.2 rhel-8-appstream-rhui-rpms 41 k
libsodium x86_64 1.0.18-2.el8 epel 162 k
libxslt x86_64 1.1.32-6.el8 rhel-8-baseos-rhui-rpms 250 k
oniguruma5php x86_64 6.9.8-1.el8.remi remi-safe 212 k
php81-php-cli x86_64 8.1.10-1.el8.remi remi-safe 3.5 M
php81-php-common x86_64 8.1.10-1.el8.remi remi-safe 731 k
php81-runtime x86_64 8.1-2.el8.remi remi-safe 1.1 M
policycoreutils-python-utils noarch 2.9-19.el8 rhel-8-baseos-rhui-rpms 253 k
scl-utils x86_64 1:2.0.2-15.el8 rhel-8-appstream-rhui-rpms 47 k
tcl x86_64 1:8.6.8-2.el8 rhel-8-baseos-rhui-rpms 1.1 M
Installing weak dependencies:
php81-php-fpm x86_64 8.1.10-1.el8.remi remi-safe 1.8 M
php81-php-mbstring x86_64 8.1.10-1.el8.remi remi-safe 493 k
php81-php-opcache x86_64 8.1.10-1.el8.remi remi-safe 425 k
php81-php-pdo x86_64 8.1.10-1.el8.remi remi-safe 142 k
php81-php-sodium x86_64 8.1.10-1.el8.remi remi-safe 95 k
php81-php-xml x86_64 8.1.10-1.el8.remi remi-safe 194 k
Enabling module streams:
httpd 2.4

Transaction Summary

Install 18 Packages

Total download size: 11 M
Installed size: 37 M
Is this ok [y/N]: y
Downloading Packages:
(1/18): httpd-filesystem-2.4.37-47.module+el8.6.0+15654+427eba2e.2.noarch.rpm 1.2 MB/s | 41 kB 00:00
(2/18): scl-utils-2.0.2-15.el8.x86_64.rpm 1.1 MB/s | 47 kB 00:00
(3/18): environment-modules-4.5.2-1.el8.x86_64.rpm 12 MB/s | 421 kB 00:00
(4/18): tcl-8.6.8-2.el8.x86_64.rpm 22 MB/s | 1.1 MB 00:00
(5/18): libxslt-1.1.32-6.el8.x86_64.rpm 15 MB/s | 250 kB 00:00
(6/18): policycoreutils-python-utils-2.9-19.el8.noarch.rpm 16 MB/s | 253 kB 00:00
(7/18): php81-8.1-2.el8.remi.x86_64.rpm 131 kB/s | 7.4 kB 00:00
(8/18): oniguruma5php-6.9.8-1.el8.remi.x86_64.rpm 1.3 MB/s | 212 kB 00:00
(9/18): php81-php-common-8.1.10-1.el8.remi.x86_64.rpm 7.8 MB/s | 731 kB 00:00
(10/18): php81-php-cli-8.1.10-1.el8.remi.x86_64.rpm 14 MB/s | 3.5 MB 00:00
(11/18): php81-php-fpm-8.1.10-1.el8.remi.x86_64.rpm 19 MB/s | 1.8 MB 00:00
(12/18): php81-php-mbstring-8.1.10-1.el8.remi.x86_64.rpm 13 MB/s | 493 kB 00:00
(13/18): php81-php-opcache-8.1.10-1.el8.remi.x86_64.rpm 11 MB/s | 425 kB 00:00
(14/18): php81-php-pdo-8.1.10-1.el8.remi.x86_64.rpm 4.4 MB/s | 142 kB 00:00
(15/18): php81-php-sodium-8.1.10-1.el8.remi.x86_64.rpm 2.9 MB/s | 95 kB 00:00
(16/18): php81-php-xml-8.1.10-1.el8.remi.x86_64.rpm 5.9 MB/s | 194 kB 00:00
(17/18): php81-runtime-8.1-2.el8.remi.x86_64.rpm 23 MB/s | 1.1 MB 00:00

(18/18): libsodium-1.0.18-2.el8.x86_64.rpm 250 kB/s | 162 kB 00:00

Total 11 MB/s | 11 MB 00:01
Extra Packages for Enterprise Linux 8 – x86_64 1.6 MB/s | 1.6 kB 00:00
Importing GPG key 0x2F86D6A1:
Userid : “Fedora EPEL (8) epel@fedoraproject.org
Fingerprint: 94E2 79EB 8D8F 25B2 1810 ADF1 21EA 45AB 2F86 D6A1
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
Is this ok [y/N]: y
Key imported successfully
Safe Remi’s RPM repository for Enterprise Linux 8 – x86_64 3.0 MB/s | 3.1 kB 00:00
Importing GPG key 0x5F11735A:
Userid : “Remi’s RPM repository remi@remirepo.net
Fingerprint: 6B38 FEA7 231F 87F5 2B9C A9D8 5550 9759 5F11 735A
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-remi.el8
Is this ok [y/N]: y
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : oniguruma5php-6.9.8-1.el8.remi.x86_64 1/18
Installing : policycoreutils-python-utils-2.9-19.el8.noarch 2/18
Installing : libxslt-1.1.32-6.el8.x86_64 3/18
Installing : tcl-1:8.6.8-2.el8.x86_64 4/18
Running scriptlet: tcl-1:8.6.8-2.el8.x86_64 4/18
Installing : environment-modules-4.5.2-1.el8.x86_64 5/18
Running scriptlet: environment-modules-4.5.2-1.el8.x86_64 5/18
Installing : scl-utils-1:2.0.2-15.el8.x86_64 6/18
Installing : php81-runtime-8.1-2.el8.remi.x86_64 7/18
Running scriptlet: php81-runtime-8.1-2.el8.remi.x86_64 7/18
Installing : php81-php-common-8.1.10-1.el8.remi.x86_64 8/18
Installing : php81-php-cli-8.1.10-1.el8.remi.x86_64 9/18
Installing : php81-php-mbstring-8.1.10-1.el8.remi.x86_64 10/18
Installing : php81-php-opcache-8.1.10-1.el8.remi.x86_64 11/18
Installing : php81-php-pdo-8.1.10-1.el8.remi.x86_64 12/18
Installing : php81-php-xml-8.1.10-1.el8.remi.x86_64 13/18
Running scriptlet: httpd-filesystem-2.4.37-47.module+el8.6.0+15654+427eba2e.2.noarch 14/18
Installing : httpd-filesystem-2.4.37-47.module+el8.6.0+15654+427eba2e.2.noarch 14/18
Installing : php81-php-fpm-8.1.10-1.el8.remi.x86_64 15/18
Running scriptlet: php81-php-fpm-8.1.10-1.el8.remi.x86_64 15/18
Installing : libsodium-1.0.18-2.el8.x86_64 16/18
Installing : php81-php-sodium-8.1.10-1.el8.remi.x86_64 17/18
Installing : php81-8.1-2.el8.remi.x86_64 18/18
Running scriptlet: php81-8.1-2.el8.remi.x86_64 18/18
Running scriptlet: php81-php-fpm-8.1.10-1.el8.remi.x86_64 18/18
Verifying : libsodium-1.0.18-2.el8.x86_64 1/18
Verifying : scl-utils-1:2.0.2-15.el8.x86_64 2/18
Verifying : httpd-filesystem-2.4.37-47.module+el8.6.0+15654+427eba2e.2.noarch 3/18
Verifying : tcl-1:8.6.8-2.el8.x86_64 4/18
Verifying : environment-modules-4.5.2-1.el8.x86_64 5/18
Verifying : libxslt-1.1.32-6.el8.x86_64 6/18
Verifying : policycoreutils-python-utils-2.9-19.el8.noarch 7/18
Verifying : oniguruma5php-6.9.8-1.el8.remi.x86_64 8/18
Verifying : php81-8.1-2.el8.remi.x86_64 9/18
Verifying : php81-php-cli-8.1.10-1.el8.remi.x86_64 10/18
Verifying : php81-php-common-8.1.10-1.el8.remi.x86_64 11/18
Verifying : php81-php-fpm-8.1.10-1.el8.remi.x86_64 12/18
Verifying : php81-php-mbstring-8.1.10-1.el8.remi.x86_64 13/18
Verifying : php81-php-opcache-8.1.10-1.el8.remi.x86_64 14/18
Verifying : php81-php-pdo-8.1.10-1.el8.remi.x86_64 15/18
Verifying : php81-php-sodium-8.1.10-1.el8.remi.x86_64 16/18
Verifying : php81-php-xml-8.1.10-1.el8.remi.x86_64 17/18
Verifying : php81-runtime-8.1-2.el8.remi.x86_64 18/18
Installed products updated.

Installed:
environment-modules-4.5.2-1.el8.x86_64 httpd-filesystem-2.4.37-47.module+el8.6.0+15654+427eba2e.2.noarch libsodium-1.0.18-2.el8.x86_64
libxslt-1.1.32-6.el8.x86_64 oniguruma5php-6.9.8-1.el8.remi.x86_64 php81-8.1-2.el8.remi.x86_64
php81-php-cli-8.1.10-1.el8.remi.x86_64 php81-php-common-8.1.10-1.el8.remi.x86_64 php81-php-fpm-8.1.10-1.el8.remi.x86_64
php81-php-mbstring-8.1.10-1.el8.remi.x86_64 php81-php-opcache-8.1.10-1.el8.remi.x86_64 php81-php-pdo-8.1.10-1.el8.remi.x86_64
php81-php-sodium-8.1.10-1.el8.remi.x86_64 php81-php-xml-8.1.10-1.el8.remi.x86_64 php81-runtime-8.1-2.el8.remi.x86_64
policycoreutils-python-utils-2.9-19.el8.noarch scl-utils-1:2.0.2-15.el8.x86_64 tcl-1:8.6.8-2.el8.x86_64

Complete!
[root@ip-172-31-1-84 etc]#

[root@ip-172-31-1-84 etc]# php81 –version
PHP 8.1.10 (cli) (built: Aug 30 2022 16:09:36) (NTS gcc x86_64)
Copyright (c) The PHP Group
Zend Engine v4.1.10, Copyright (c) Zend Technologies
with Zend OPcache v8.1.10, Copyright (c), by Zend Technologies
[root@ip-172-31-1-84 etc]#

—–> Configuration files for PHP are located in /etc/opt/remi/php81/ directory
$ ls -1 /etc/opt/remi/php81/

—>

Install PHP 8.1 extensions

sudo yum install php81-php-{cli,fpm,mysqlnd,devel,gd,mbstring,curl,xml,pear,bcmath,json,opcache,ldap}

[root@ip-172-31-1-84 etc]# sudo yum install php81-php-{cli,fpm,mysqlnd,devel,gd,mbstring,curl,xml,pear,bcmath,json,opcache,ldap}
Updating Subscription Management repositories.
Unable to read consumer identity

This system is not registered with an entitlement server. You can use subscription-manager to register.

Last metadata expiration check: 0:06:20 ago on Sat 24 Sep 2022 02:17:50 PM UTC.
Package php81-php-cli-8.1.10-1.el8.remi.x86_64 is already installed.
Package php81-php-fpm-8.1.10-1.el8.remi.x86_64 is already installed.
Package php81-php-mbstring-8.1.10-1.el8.remi.x86_64 is already installed.
Package php81-php-common-8.1.10-1.el8.remi.x86_64 is already installed.
Package php81-php-xml-8.1.10-1.el8.remi.x86_64 is already installed.
Package php81-php-common-8.1.10-1.el8.remi.x86_64 is already installed.
Package php81-php-opcache-8.1.10-1.el8.remi.x86_64 is already installed.

Dependencies resolved.

Package Architecture Version Repository Size

Installing:
php81-php-bcmath x86_64 8.1.10-1.el8.remi remi-safe 93 k
php81-php-devel x86_64 8.1.10-1.el8.remi remi-safe 812 k
php81-php-gd x86_64 8.1.10-1.el8.remi remi-safe 99 k
php81-php-ldap x86_64 8.1.10-1.el8.remi remi-safe 100 k
php81-php-mysqlnd x86_64 8.1.10-1.el8.remi remi-safe 199 k
php81-php-pear noarch 1:1.10.13-1.el8.remi remi-safe 367 k
Installing dependencies:
autoconf noarch 2.69-29.el8 rhel-8-appstream-rhui-rpms 711 k
automake noarch 1.16.1-7.el8 rhel-8-appstream-rhui-rpms 713 k
binutils x86_64 2.30-113.el8 rhel-8-baseos-rhui-rpms 5.8 M
cmake-filesystem x86_64 3.20.2-4.el8 rhel-8-appstream-rhui-rpms 45 k
cpp x86_64 8.5.0-10.1.el8_6 rhel-8-appstream-rhui-rpms 10 M
dejavu-fonts-common noarch 2.35-7.el8 rhel-8-baseos-rhui-rpms 74 k
dejavu-sans-fonts noarch 2.35-7.el8 rhel-8-baseos-rhui-rpms 1.5 M
emacs-filesystem noarch 1:26.1-7.el8 rhel-8-baseos-rhui-rpms 70 k
fontconfig x86_64 2.13.1-4.el8 rhel-8-baseos-rhui-rpms 274 k
fontpackages-filesystem noarch 1.44-22.el8 rhel-8-baseos-rhui-rpms 16 k
fribidi x86_64 1.0.4-8.el8 rhel-8-appstream-rhui-rpms 89 k
gcc x86_64 8.5.0-10.1.el8_6 rhel-8-appstream-rhui-rpms 23 M
gcc-c++ x86_64 8.5.0-10.1.el8_6 rhel-8-appstream-rhui-rpms 12 M
gd3php x86_64 2.3.3-8.el8.remi remi-safe 148 k
glibc-devel x86_64 2.28-189.5.el8_6 rhel-8-baseos-rhui-rpms 80 k
glibc-headers x86_64 2.28-189.5.el8_6 rhel-8-baseos-rhui-rpms 484 k
graphite2 x86_64 1.3.10-10.el8 rhel-8-appstream-rhui-rpms 122 k
harfbuzz x86_64 1.7.5-3.el8 rhel-8-appstream-rhui-rpms 294 k
isl x86_64 0.16.1-6.el8 rhel-8-appstream-rhui-rpms 841 k
jbigkit-libs x86_64 2.1-14.el8 rhel-8-appstream-rhui-rpms 55 k
kernel-headers x86_64 4.18.0-372.26.1.el8_6 rhel-8-baseos-rhui-rpms 9.4 M
keyutils-libs-devel x86_64 1.5.10-9.el8 rhel-8-baseos-rhui-rpms 48 k
krb5-devel x86_64 1.18.2-14.el8 rhel-8-baseos-rhui-rpms 560 k
libX11 x86_64 1.6.8-5.el8 rhel-8-appstream-rhui-rpms 611 k
libX11-common noarch 1.6.8-5.el8 rhel-8-appstream-rhui-rpms 158 k
libXau x86_64 1.0.9-3.el8 rhel-8-appstream-rhui-rpms 37 k
libXpm x86_64 3.5.12-8.el8 rhel-8-appstream-rhui-rpms 58 k
libaom x86_64 3.1.1-1.el8 epel 1.7 M
libavif x86_64 0.10.1-3.el8 epel 76 k
libcom_err-devel x86_64 1.45.6-4.el8 rhel-8-baseos-rhui-rpms 39 k
libdav1d x86_64 0.5.2-1.el8 epel 347 k
libimagequant x86_64 2.12.5-1.el8 epel 63 k
libjpeg-turbo x86_64 1.5.3-12.el8 rhel-8-appstream-rhui-rpms 157 k
libkadm5 x86_64 1.18.2-14.el8 rhel-8-baseos-rhui-rpms 187 k
libmpc x86_64 1.1.0-9.1.el8 rhel-8-appstream-rhui-rpms 61 k
libraqm x86_64 0.7.0-4.el8 epel 19 k
libselinux-devel x86_64 2.9-5.el8 rhel-8-baseos-rhui-rpms 200 k
libsepol-devel x86_64 2.9-3.el8 rhel-8-baseos-rhui-rpms 87 k
libstdc++-devel x86_64 8.5.0-10.1.el8_6 rhel-8-appstream-rhui-rpms 2.0 M
libtiff x86_64 4.0.9-21.el8 rhel-8-appstream-rhui-rpms 188 k
libtool x86_64 2.4.6-25.el8 rhel-8-appstream-rhui-rpms 709 k
libverto-devel x86_64 0.3.0-5.el8 rhel-8-baseos-rhui-rpms 18 k
libwebp x86_64 1.0.0-5.el8 rhel-8-appstream-rhui-rpms 273 k
libxcb x86_64 1.13.1-1.el8 rhel-8-appstream-rhui-rpms 229 k
libxcrypt-devel x86_64 4.1.1-6.el8 rhel-8-baseos-rhui-rpms 25 k
libxml2-devel x86_64 2.9.7-13.el8_6.1 rhel-8-appstream-rhui-rpms 1.0 M
m4 x86_64 1.4.18-7.el8 rhel-8-baseos-rhui-rpms 223 k
make x86_64 1:4.2.1-11.el8 rhel-8-baseos-rhui-rpms 498 k
openssl-devel x86_64 1:1.1.1k-7.el8_6 rhel-8-baseos-rhui-rpms 2.3 M
pcre2-devel x86_64 10.32-3.el8_6 rhel-8-baseos-rhui-rpms 605 k
pcre2-utf16 x86_64 10.32-3.el8_6 rhel-8-baseos-rhui-rpms 229 k
pcre2-utf32 x86_64 10.32-3.el8_6 rhel-8-baseos-rhui-rpms 220 k
perl-Thread-Queue noarch 3.13-1.el8 rhel-8-appstream-rhui-rpms 24 k
php81-php-process x86_64 8.1.10-1.el8.remi remi-safe 98 k
svt-av1-libs x86_64 0.8.7-1.el8 epel 4.7 M
xz-devel x86_64 5.2.4-4.el8_6 rhel-8-baseos-rhui-rpms 63 k
zlib-devel x86_64 1.2.11-18.el8_5 rhel-8-baseos-rhui-rpms 58 k

Transaction Summary

Install 63 Packages

Total download size: 86 M
Installed size: 227 M
Is this ok [y/N]: y
Downloading Packages:
(1/63): libdav1d-0.5.2-1.el8.x86_64.rpm 8.3 MB/s | 347 kB 00:00
(2/63): libimagequant-2.12.5-1.el8.x86_64.rpm 142 kB/s | 63 kB 00:00
(3/63): libraqm-0.7.0-4.el8.x86_64.rpm 4.3 MB/s | 19 kB 00:00
(4/63): libavif-0.10.1-3.el8.x86_64.rpm 125 kB/s | 76 kB 00:00
(5/63): perl-Thread-Queue-3.13-1.el8.noarch.rpm 875 kB/s | 24 kB 00:00
(6/63): jbigkit-libs-2.1-14.el8.x86_64.rpm 4.8 MB/s | 55 kB 00:00
(7/63): graphite2-1.3.10-10.el8.x86_64.rpm 7.3 MB/s | 122 kB 00:00
(8/63): harfbuzz-1.7.5-3.el8.x86_64.rpm 14 MB/s | 294 kB 00:00
(9/63): libtool-2.4.6-25.el8.x86_64.rpm 25 MB/s | 709 kB 00:00
(10/63): isl-0.16.1-6.el8.x86_64.rpm 30 MB/s | 841 kB 00:00
(11/63): libXpm-3.5.12-8.el8.x86_64.rpm 5.3 MB/s | 58 kB 00:00
(12/63): libxcb-1.13.1-1.el8.x86_64.rpm 18 MB/s | 229 kB 00:00
(13/63): fribidi-1.0.4-8.el8.x86_64.rpm 5.5 MB/s | 89 kB 00:00
(14/63): libXau-1.0.9-3.el8.x86_64.rpm 4.1 MB/s | 37 kB 00:00
(15/63): libmpc-1.1.0-9.1.el8.x86_64.rpm 4.2 MB/s | 61 kB 00:00
(16/63): automake-1.16.1-7.el8.noarch.rpm 29 MB/s | 713 kB 00:00
(17/63): libjpeg-turbo-1.5.3-12.el8.x86_64.rpm 13 MB/s | 157 kB 00:00
(18/63): cmake-filesystem-3.20.2-4.el8.x86_64.rpm 3.4 MB/s | 45 kB 00:00
(19/63): autoconf-2.69-29.el8.noarch.rpm 25 MB/s | 711 kB 00:00
(20/63): libX11-1.6.8-5.el8.x86_64.rpm 33 MB/s | 611 kB 00:00
(21/63): libX11-common-1.6.8-5.el8.noarch.rpm 14 MB/s | 158 kB 00:00
(22/63): libwebp-1.0.0-5.el8.x86_64.rpm 19 MB/s | 273 kB 00:00
(23/63): libtiff-4.0.9-21.el8.x86_64.rpm 16 MB/s | 188 kB 00:00
(24/63): libaom-3.1.1-1.el8.x86_64.rpm 1.7 MB/s | 1.7 MB 00:01
(25/63): cpp-8.5.0-10.1.el8_6.x86_64.rpm 54 MB/s | 10 MB 00:00
(26/63): libstdc++-devel-8.5.0-10.1.el8_6.x86_64.rpm 15 MB/s | 2.0 MB 00:00
(27/63): libxml2-devel-2.9.7-13.el8_6.1.x86_64.rpm 30 MB/s | 1.0 MB 00:00
(28/63): gcc-c++-8.5.0-10.1.el8_6.x86_64.rpm 43 MB/s | 12 MB 00:00
(29/63): fontpackages-filesystem-1.44-22.el8.noarch.rpm 1.3 MB/s | 16 kB 00:00
(30/63): libverto-devel-0.3.0-5.el8.x86_64.rpm 1.2 MB/s | 18 kB 00:00
(31/63): m4-1.4.18-7.el8.x86_64.rpm 11 MB/s | 223 kB 00:00
(32/63): libselinux-devel-2.9-5.el8.x86_64.rpm 9.0 MB/s | 200 kB 00:00
(33/63): dejavu-fonts-common-2.35-7.el8.noarch.rpm 6.5 MB/s | 74 kB 00:00
(34/63): svt-av1-libs-0.8.7-1.el8.x86_64.rpm 4.4 MB/s | 4.7 MB 00:01
(35/63): dejavu-sans-fonts-2.35-7.el8.noarch.rpm 19 MB/s | 1.5 MB 00:00
(36/63): libxcrypt-devel-4.1.1-6.el8.x86_64.rpm 696 kB/s | 25 kB 00:00
(37/63): keyutils-libs-devel-1.5.10-9.el8.x86_64.rpm 3.2 MB/s | 48 kB 00:00
(38/63): libsepol-devel-2.9-3.el8.x86_64.rpm 4.6 MB/s | 87 kB 00:00
(39/63): libkadm5-1.18.2-14.el8.x86_64.rpm 11 MB/s | 187 kB 00:00
(40/63): emacs-filesystem-26.1-7.el8.noarch.rpm 4.5 MB/s | 70 kB 00:00
(41/63): zlib-devel-1.2.11-18.el8_5.x86_64.rpm 4.1 MB/s | 58 kB 00:00
(42/63): krb5-devel-1.18.2-14.el8.x86_64.rpm 22 MB/s | 560 kB 00:00
(43/63): fontconfig-2.13.1-4.el8.x86_64.rpm 17 MB/s | 274 kB 00:00
(44/63): make-4.2.1-11.el8.x86_64.rpm 20 MB/s | 498 kB 00:00
(45/63): xz-devel-5.2.4-4.el8_6.x86_64.rpm 4.1 MB/s | 63 kB 00:00
(46/63): libcom_err-devel-1.45.6-4.el8.x86_64.rpm 2.7 MB/s | 39 kB 00:00
(47/63): gcc-8.5.0-10.1.el8_6.x86_64.rpm 35 MB/s | 23 MB 00:00
(48/63): glibc-headers-2.28-189.5.el8_6.x86_64.rpm 13 MB/s | 484 kB 00:00
(49/63): binutils-2.30-113.el8.x86_64.rpm 18 MB/s | 5.8 MB 00:00
(50/63): pcre2-utf32-10.32-3.el8_6.x86_64.rpm 10 MB/s | 220 kB 00:00
(51/63): openssl-devel-1.1.1k-7.el8_6.x86_64.rpm 21 MB/s | 2.3 MB 00:00
(52/63): pcre2-devel-10.32-3.el8_6.x86_64.rpm 16 MB/s | 605 kB 00:00
(53/63): pcre2-utf16-10.32-3.el8_6.x86_64.rpm 12 MB/s | 229 kB 00:00
(54/63): glibc-devel-2.28-189.5.el8_6.x86_64.rpm 5.7 MB/s | 80 kB 00:00
(55/63): kernel-headers-4.18.0-372.26.1.el8_6.x86_64.rpm 23 MB/s | 9.4 MB 00:00
(56/63): php81-php-bcmath-8.1.10-1.el8.remi.x86_64.rpm 665 kB/s | 93 kB 00:00
(57/63): gd3php-2.3.3-8.el8.remi.x86_64.rpm 864 kB/s | 148 kB 00:00
(58/63): php81-php-gd-8.1.10-1.el8.remi.x86_64.rpm 3.5 MB/s | 99 kB 00:00
(59/63): php81-php-ldap-8.1.10-1.el8.remi.x86_64.rpm 2.3 MB/s | 100 kB 00:00
(60/63): php81-php-mysqlnd-8.1.10-1.el8.remi.x86_64.rpm 3.9 MB/s | 199 kB 00:00
(61/63): php81-php-devel-8.1.10-1.el8.remi.x86_64.rpm 4.9 MB/s | 812 kB 00:00
(62/63): php81-php-process-8.1.10-1.el8.remi.x86_64.rpm 3.5 MB/s | 98 kB 00:00

(63/63): php81-php-pear-1.10.13-1.el8.remi.noarch.rpm 4.9 MB/s | 367 kB 00:00

Total 34 MB/s | 86 MB 00:02
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : zlib-devel-1.2.11-18.el8_5.x86_64 1/63
Installing : libmpc-1.1.0-9.1.el8.x86_64 2/63
Installing : fontpackages-filesystem-1.44-22.el8.noarch 3/63
Installing : libjpeg-turbo-1.5.3-12.el8.x86_64 4/63
Installing : dejavu-fonts-common-2.35-7.el8.noarch 5/63
Installing : dejavu-sans-fonts-2.35-7.el8.noarch 6/63
Installing : fontconfig-2.13.1-4.el8.x86_64 7/63
Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 7/63
Installing : cpp-8.5.0-10.1.el8_6.x86_64 8/63
Running scriptlet: cpp-8.5.0-10.1.el8_6.x86_64 8/63
Installing : php81-php-process-8.1.10-1.el8.remi.x86_64 9/63
Installing : pcre2-utf16-10.32-3.el8_6.x86_64 10/63
Installing : pcre2-utf32-10.32-3.el8_6.x86_64 11/63
Installing : pcre2-devel-10.32-3.el8_6.x86_64 12/63
Installing : kernel-headers-4.18.0-372.26.1.el8_6.x86_64 13/63
Running scriptlet: glibc-headers-2.28-189.5.el8_6.x86_64 14/63
Installing : glibc-headers-2.28-189.5.el8_6.x86_64 14/63
Installing : glibc-devel-2.28-189.5.el8_6.x86_64 15/63
Running scriptlet: glibc-devel-2.28-189.5.el8_6.x86_64 15/63
Installing : libxcrypt-devel-4.1.1-6.el8.x86_64 16/63
Installing : libcom_err-devel-1.45.6-4.el8.x86_64 17/63
Installing : xz-devel-5.2.4-4.el8_6.x86_64 18/63
Installing : binutils-2.30-113.el8.x86_64 19/63
Running scriptlet: binutils-2.30-113.el8.x86_64 19/63
Installing : make-1:4.2.1-11.el8.x86_64 20/63
Running scriptlet: make-1:4.2.1-11.el8.x86_64 20/63
Installing : emacs-filesystem-1:26.1-7.el8.noarch 21/63
Installing : libkadm5-1.18.2-14.el8.x86_64 22/63
Installing : libsepol-devel-2.9-3.el8.x86_64 23/63
Installing : libselinux-devel-2.9-5.el8.x86_64 24/63
Installing : keyutils-libs-devel-1.5.10-9.el8.x86_64 25/63
Installing : m4-1.4.18-7.el8.x86_64 26/63
Running scriptlet: m4-1.4.18-7.el8.x86_64 26/63
Installing : autoconf-2.69-29.el8.noarch 27/63
Running scriptlet: autoconf-2.69-29.el8.noarch 27/63
Installing : libverto-devel-0.3.0-5.el8.x86_64 28/63
Installing : krb5-devel-1.18.2-14.el8.x86_64 29/63
Installing : openssl-devel-1:1.1.1k-7.el8_6.x86_64 30/63
Installing : libstdc++-devel-8.5.0-10.1.el8_6.x86_64 31/63
Installing : libwebp-1.0.0-5.el8.x86_64 32/63
Installing : libX11-common-1.6.8-5.el8.noarch 33/63
Installing : cmake-filesystem-3.20.2-4.el8.x86_64 34/63
Installing : libxml2-devel-2.9.7-13.el8_6.1.x86_64 35/63
Installing : libXau-1.0.9-3.el8.x86_64 36/63
Installing : libxcb-1.13.1-1.el8.x86_64 37/63
Installing : libX11-1.6.8-5.el8.x86_64 38/63
Installing : libXpm-3.5.12-8.el8.x86_64 39/63
Installing : fribidi-1.0.4-8.el8.x86_64 40/63
Installing : isl-0.16.1-6.el8.x86_64 41/63
Running scriptlet: isl-0.16.1-6.el8.x86_64 41/63
Installing : gcc-8.5.0-10.1.el8_6.x86_64 42/63
Running scriptlet: gcc-8.5.0-10.1.el8_6.x86_64 42/63
Installing : gcc-c++-8.5.0-10.1.el8_6.x86_64 43/63
Installing : graphite2-1.3.10-10.el8.x86_64 44/63
Installing : harfbuzz-1.7.5-3.el8.x86_64 45/63
Running scriptlet: harfbuzz-1.7.5-3.el8.x86_64 45/63
Installing : libraqm-0.7.0-4.el8.x86_64 46/63
Installing : jbigkit-libs-2.1-14.el8.x86_64 47/63
Running scriptlet: jbigkit-libs-2.1-14.el8.x86_64 47/63
Installing : libtiff-4.0.9-21.el8.x86_64 48/63
Installing : perl-Thread-Queue-3.13-1.el8.noarch 49/63
Installing : automake-1.16.1-7.el8.noarch 50/63
Installing : libtool-2.4.6-25.el8.x86_64 51/63
Running scriptlet: libtool-2.4.6-25.el8.x86_64 51/63
Installing : svt-av1-libs-0.8.7-1.el8.x86_64 52/63
Installing : libimagequant-2.12.5-1.el8.x86_64 53/63
Installing : libdav1d-0.5.2-1.el8.x86_64 54/63
Installing : libaom-3.1.1-1.el8.x86_64 55/63
Installing : libavif-0.10.1-3.el8.x86_64 56/63
Installing : gd3php-2.3.3-8.el8.remi.x86_64 57/63
Installing : php81-php-gd-8.1.10-1.el8.remi.x86_64 58/63
Installing : php81-php-devel-8.1.10-1.el8.remi.x86_64 59/63
Installing : php81-php-pear-1:1.10.13-1.el8.remi.noarch 60/63
Installing : php81-php-mysqlnd-8.1.10-1.el8.remi.x86_64 61/63
Installing : php81-php-ldap-8.1.10-1.el8.remi.x86_64 62/63
Installing : php81-php-bcmath-8.1.10-1.el8.remi.x86_64 63/63
Running scriptlet: php81-php-bcmath-8.1.10-1.el8.remi.x86_64 63/63
Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 63/63
Verifying : libaom-3.1.1-1.el8.x86_64 1/63
Verifying : libavif-0.10.1-3.el8.x86_64 2/63
Verifying : libdav1d-0.5.2-1.el8.x86_64 3/63
Verifying : libimagequant-2.12.5-1.el8.x86_64 4/63
Verifying : libraqm-0.7.0-4.el8.x86_64 5/63
Verifying : svt-av1-libs-0.8.7-1.el8.x86_64 6/63
Verifying : perl-Thread-Queue-3.13-1.el8.noarch 7/63
Verifying : jbigkit-libs-2.1-14.el8.x86_64 8/63
Verifying : graphite2-1.3.10-10.el8.x86_64 9/63
Verifying : harfbuzz-1.7.5-3.el8.x86_64 10/63
Verifying : libtool-2.4.6-25.el8.x86_64 11/63
Verifying : isl-0.16.1-6.el8.x86_64 12/63
Verifying : libXpm-3.5.12-8.el8.x86_64 13/63
Verifying : libxcb-1.13.1-1.el8.x86_64 14/63
Verifying : fribidi-1.0.4-8.el8.x86_64 15/63
Verifying : libXau-1.0.9-3.el8.x86_64 16/63
Verifying : libmpc-1.1.0-9.1.el8.x86_64 17/63
Verifying : automake-1.16.1-7.el8.noarch 18/63
Verifying : libjpeg-turbo-1.5.3-12.el8.x86_64 19/63
Verifying : cmake-filesystem-3.20.2-4.el8.x86_64 20/63
Verifying : autoconf-2.69-29.el8.noarch 21/63
Verifying : libX11-1.6.8-5.el8.x86_64 22/63
Verifying : libX11-common-1.6.8-5.el8.noarch 23/63
Verifying : libwebp-1.0.0-5.el8.x86_64 24/63
Verifying : libtiff-4.0.9-21.el8.x86_64 25/63
Verifying : cpp-8.5.0-10.1.el8_6.x86_64 26/63
Verifying : libstdc++-devel-8.5.0-10.1.el8_6.x86_64 27/63
Verifying : gcc-c++-8.5.0-10.1.el8_6.x86_64 28/63
Verifying : libxml2-devel-2.9.7-13.el8_6.1.x86_64 29/63
Verifying : gcc-8.5.0-10.1.el8_6.x86_64 30/63
Verifying : fontpackages-filesystem-1.44-22.el8.noarch 31/63
Verifying : libverto-devel-0.3.0-5.el8.x86_64 32/63
Verifying : m4-1.4.18-7.el8.x86_64 33/63
Verifying : libselinux-devel-2.9-5.el8.x86_64 34/63
Verifying : dejavu-fonts-common-2.35-7.el8.noarch 35/63
Verifying : dejavu-sans-fonts-2.35-7.el8.noarch 36/63
Verifying : libxcrypt-devel-4.1.1-6.el8.x86_64 37/63
Verifying : keyutils-libs-devel-1.5.10-9.el8.x86_64 38/63
Verifying : libsepol-devel-2.9-3.el8.x86_64 39/63
Verifying : libkadm5-1.18.2-14.el8.x86_64 40/63
Verifying : emacs-filesystem-1:26.1-7.el8.noarch 41/63
Verifying : krb5-devel-1.18.2-14.el8.x86_64 42/63
Verifying : zlib-devel-1.2.11-18.el8_5.x86_64 43/63
Verifying : fontconfig-2.13.1-4.el8.x86_64 44/63
Verifying : make-1:4.2.1-11.el8.x86_64 45/63
Verifying : binutils-2.30-113.el8.x86_64 46/63
Verifying : xz-devel-5.2.4-4.el8_6.x86_64 47/63
Verifying : libcom_err-devel-1.45.6-4.el8.x86_64 48/63
Verifying : kernel-headers-4.18.0-372.26.1.el8_6.x86_64 49/63
Verifying : glibc-headers-2.28-189.5.el8_6.x86_64 50/63
Verifying : openssl-devel-1:1.1.1k-7.el8_6.x86_64 51/63
Verifying : pcre2-utf32-10.32-3.el8_6.x86_64 52/63
Verifying : pcre2-devel-10.32-3.el8_6.x86_64 53/63
Verifying : pcre2-utf16-10.32-3.el8_6.x86_64 54/63
Verifying : glibc-devel-2.28-189.5.el8_6.x86_64 55/63
Verifying : gd3php-2.3.3-8.el8.remi.x86_64 56/63
Verifying : php81-php-bcmath-8.1.10-1.el8.remi.x86_64 57/63
Verifying : php81-php-devel-8.1.10-1.el8.remi.x86_64 58/63
Verifying : php81-php-gd-8.1.10-1.el8.remi.x86_64 59/63
Verifying : php81-php-ldap-8.1.10-1.el8.remi.x86_64 60/63
Verifying : php81-php-mysqlnd-8.1.10-1.el8.remi.x86_64 61/63
Verifying : php81-php-pear-1:1.10.13-1.el8.remi.noarch 62/63
Verifying : php81-php-process-8.1.10-1.el8.remi.x86_64 63/63
Installed products updated.

Installed:
autoconf-2.69-29.el8.noarch automake-1.16.1-7.el8.noarch binutils-2.30-113.el8.x86_64 cmake-filesystem-3.20.2-4.el8.x86_64
cpp-8.5.0-10.1.el8_6.x86_64 dejavu-fonts-common-2.35-7.el8.noarch dejavu-sans-fonts-2.35-7.el8.noarch emacs-filesystem-1:26.1-7.el8.noarch
fontconfig-2.13.1-4.el8.x86_64 fontpackages-filesystem-1.44-22.el8.noarch fribidi-1.0.4-8.el8.x86_64 gcc-8.5.0-10.1.el8_6.x86_64
gcc-c++-8.5.0-10.1.el8_6.x86_64 gd3php-2.3.3-8.el8.remi.x86_64 glibc-devel-2.28-189.5.el8_6.x86_64 glibc-headers-2.28-189.5.el8_6.x86_64
graphite2-1.3.10-10.el8.x86_64 harfbuzz-1.7.5-3.el8.x86_64 isl-0.16.1-6.el8.x86_64 jbigkit-libs-2.1-14.el8.x86_64
kernel-headers-4.18.0-372.26.1.el8_6.x86_64 keyutils-libs-devel-1.5.10-9.el8.x86_64 krb5-devel-1.18.2-14.el8.x86_64 libX11-1.6.8-5.el8.x86_64
libX11-common-1.6.8-5.el8.noarch libXau-1.0.9-3.el8.x86_64 libXpm-3.5.12-8.el8.x86_64 libaom-3.1.1-1.el8.x86_64
libavif-0.10.1-3.el8.x86_64 libcom_err-devel-1.45.6-4.el8.x86_64 libdav1d-0.5.2-1.el8.x86_64 libimagequant-2.12.5-1.el8.x86_64
libjpeg-turbo-1.5.3-12.el8.x86_64 libkadm5-1.18.2-14.el8.x86_64 libmpc-1.1.0-9.1.el8.x86_64 libraqm-0.7.0-4.el8.x86_64
libselinux-devel-2.9-5.el8.x86_64 libsepol-devel-2.9-3.el8.x86_64 libstdc++-devel-8.5.0-10.1.el8_6.x86_64 libtiff-4.0.9-21.el8.x86_64
libtool-2.4.6-25.el8.x86_64 libverto-devel-0.3.0-5.el8.x86_64 libwebp-1.0.0-5.el8.x86_64 libxcb-1.13.1-1.el8.x86_64
libxcrypt-devel-4.1.1-6.el8.x86_64 libxml2-devel-2.9.7-13.el8_6.1.x86_64 m4-1.4.18-7.el8.x86_64 make-1:4.2.1-11.el8.x86_64
openssl-devel-1:1.1.1k-7.el8_6.x86_64 pcre2-devel-10.32-3.el8_6.x86_64 pcre2-utf16-10.32-3.el8_6.x86_64 pcre2-utf32-10.32-3.el8_6.x86_64
perl-Thread-Queue-3.13-1.el8.noarch php81-php-bcmath-8.1.10-1.el8.remi.x86_64 php81-php-devel-8.1.10-1.el8.remi.x86_64 php81-php-gd-8.1.10-1.el8.remi.x86_64
php81-php-ldap-8.1.10-1.el8.remi.x86_64 php81-php-mysqlnd-8.1.10-1.el8.remi.x86_64 php81-php-pear-1:1.10.13-1.el8.remi.noarch php81-php-process-8.1.10-1.el8.remi.x86_64
svt-av1-libs-0.8.7-1.el8.x86_64 xz-devel-5.2.4-4.el8_6.x86_64 zlib-devel-1.2.11-18.el8_5.x86_64

Complete!
[root@ip-172-31-1-84 etc]#

—–> Use below commands list all PHP modules

$ php81 –modules

[root@ip-172-31-1-84 etc]# php81 –modules
[PHP Modules]
bcmath
bz2
calendar
Core
ctype
curl
date
dom
exif
fileinfo
filter
ftp
gd
gettext
hash
iconv
json
ldap
libxml
mbstring
mysqli
mysqlnd
openssl
pcntl
pcre
PDO
pdo_mysql
pdo_sqlite
Phar
posix
readline
Reflection
session
shmop
SimpleXML
sockets
sodium
SPL
sqlite3
standard
sysvmsg
sysvsem
sysvshm
tokenizer
xml
xmlreader
xmlwriter
xsl
Zend OPcache
zlib

[Zend Modules]
Zend OPcache

[root@ip-172-31-1-84 etc]#

systemctl enable –now cockpit.socket
yum install httpd
[root@wordpress ~]# systemctl start httpd
[root@wordpress ~]# systemctl enable httpd
Created symlink /etc/systemd/system/multi-user.target.wants/httpd.service → /usr/lib/systemd/system/httpd.service.
[root@wordpress ~]# systemctl restart httpd

[root@wordpress ~]# systemctl status firewalld
● firewalld.service – firewalld – dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)
Active: active (running) since Sat 2022-09-10 18:32:00 +03; 2h 30min ago
Docs: man:firewalld(1)
Main PID: 781 (firewalld)
Tasks: 3 (limit: 24864)
Memory: 35.1M
CGroup: /system.slice/firewalld.service
└─781 /usr/libexec/platform-python -s /usr/sbin/firewalld –nofork –nopid

Sep 10 18:31:59 wordpress.localdomain systemd[1]: Starting firewalld – dynamic firewall daemon…
Sep 10 18:32:00 wordpress.localdomain systemd[1]: Started firewalld – dynamic firewall daemon.
Sep 10 18:32:00 wordpress.localdomain firewalld[781]: WARNING: AllowZoneDrifting is enabled. This is considered an insecure configuration option. It will be removed in a future release. Please>
Sep 10 20:28:32 wordpress.localdomain firewalld[781]: WARNING: AllowZoneDrifting is enabled. This is considered an insecure configuration option. It will be removed in a future release. Please>
Sep 10 20:30:39 wordpress.localdomain firewalld[781]: WARNING: AllowZoneDrifting is enabled. This is considered an insecure configuration option. It will be removed in a future release. Please>
lines 1-15/15 (END)

[root@wordpress ~]# firewall-cmd –state
running
[root@wordpress ~]# firewall-cmd –get-active-zones
public
interfaces: enp0s8 enp0s3
[root@wordpress ~]#

[root@wordpress ~]# firewall-cmd –list-all
public (active)
target: default
icmp-block-inversion: no
interfaces: enp0s3 enp0s8
sources:
services: cockpit dhcpv6-client ssh
ports:
protocols:
forward: no
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
[root@wordpress ~]#

[root@wordpress ~]# firewall-cmd –zone=public –permanent –add-service=http
success
[root@wordpress ~]# firewall-cmd –zone=public –permanent –add-service=https
success
[root@wordpress ~]# firewall-cmd –reload
success
[root@wordpress ~]#

[root@wordpress ~]# firewall-cmd –list-all
public (active)
target: default
icmp-block-inversion: no
interfaces: enp0s3 enp0s8
sources:
services: cockpit dhcpv6-client http https ssh
ports:
protocols:
forward: no
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
[root@wordpress ~]#

[root@wordpress ~]# mkdir wordpress
[root@wordpress ~]# cd wordpress/
[root@wordpress wordpress]# ls
[root@wordpress wordpress]# wget http://wordpress.org/latest.tar.gz
–2022-09-10 21:24:14– http://wordpress.org/latest.tar.gz
Resolving wordpress.org (wordpress.org)… 198.143.164.252
Connecting to wordpress.org (wordpress.org)|198.143.164.252|:80… connected.
HTTP request sent, awaiting response… 301 Moved Permanently
Location: https://wordpress.org/latest.tar.gz [following]
–2022-09-10 21:24:14– https://wordpress.org/latest.tar.gz
Connecting to wordpress.org (wordpress.org)|198.143.164.252|:443… connected.
HTTP request sent, awaiting response… 200 OK
Length: 21172479 (20M) [application/octet-stream]
Saving to: ‘latest.tar.gz’

latest.tar.gz 100%[==============>] 20.19M 2.60MB/s in 9.2s

2022-09-10 21:24:24 (2.20 MB/s) – ‘latest.tar.gz’ saved [21172479/21172479]

[root@wordpress wordpress]#

[root@wordpress wordpress]# tar xzvf latest.tar.gz

[root@wordpress wordpress]# sudo rsync -avP wordpress/ /var/www/html/

[root@wordpress wordpress]# cd /var/www/html

cd /var/www/html

cp wp-config-sample.php wp-config.php

[root@wordpress html]# ls -la
total 220
drwxr-xr-x. 5 nobody nobody 4096 Aug 30 20:40 .
drwxr-xr-x. 4 root root 33 Sep 10 20:59 ..
-rw-r–r–. 1 nobody nobody 405 Feb 6 2020 index.php
-rw-r–r–. 1 nobody nobody 19915 Jan 1 2022 license.txt
-rw-r–r–. 1 nobody nobody 7401 Mar 23 00:11 readme.html
-rw-r–r–. 1 nobody nobody 7165 Jan 21 2021 wp-activate.php
drwxr-xr-x. 9 nobody nobody 4096 Aug 30 20:40 wp-admin
-rw-r–r–. 1 nobody nobody 351 Feb 6 2020 wp-blog-header.php
-rw-r–r–. 1 nobody nobody 2338 Nov 10 2021 wp-comments-post.php
-rw-r–r–. 1 nobody nobody 3001 Dec 14 2021 wp-config-sample.php
drwxr-xr-x. 4 nobody nobody 52 Aug 30 20:40 wp-content
-rw-r–r–. 1 nobody nobody 3943 Apr 28 12:49 wp-cron.php
drwxr-xr-x. 26 nobody nobody 12288 Aug 30 20:40 wp-includes
-rw-r–r–. 1 nobody nobody 2494 Mar 19 23:31 wp-links-opml.php
-rw-r–r–. 1 nobody nobody 3973 Apr 12 04:47 wp-load.php
-rw-r–r–. 1 nobody nobody 48498 Apr 29 17:36 wp-login.php
-rw-r–r–. 1 nobody nobody 8577 Mar 22 19:25 wp-mail.php
-rw-r–r–. 1 nobody nobody 23706 Apr 12 12:26 wp-settings.php
-rw-r–r–. 1 nobody nobody 32051 Apr 11 14:42 wp-signup.php
-rw-r–r–. 1 nobody nobody 4748 Apr 11 14:42 wp-trackback.php
-rw-r–r–. 1 nobody nobody 3236 Jun 8 2020 xmlrpc.php
[root@wordpress html]#

[root@wordpress html]# sudo chown -R apache:apache /var/www/html/wordpress
[root@wordpress html]# ls -la
total 220
drwxr-xr-x. 5 nobody nobody 4096 Aug 30 20:40 .
drwxr-xr-x. 4 root root 33 Sep 10 20:59 ..
-rw-r–r–. 1 apache apache 405 Feb 6 2020 index.php
-rw-r–r–. 1 apache apache 19915 Jan 1 2022 license.txt
-rw-r–r–. 1 apache apache 7401 Mar 23 00:11 readme.html
-rw-r–r–. 1 apache apache 7165 Jan 21 2021 wp-activate.php
drwxr-xr-x. 9 apache apache 4096 Aug 30 20:40 wp-admin
-rw-r–r–. 1 apache apache 351 Feb 6 2020 wp-blog-header.php
-rw-r–r–. 1 apache apache 2338 Nov 10 2021 wp-comments-post.php
-rw-r–r–. 1 apache apache 3001 Dec 14 2021 wp-config-sample.php
drwxr-xr-x. 4 apache apache 52 Aug 30 20:40 wp-content
-rw-r–r–. 1 apache apache 3943 Apr 28 12:49 wp-cron.php
drwxr-xr-x. 26 apache apache 12288 Aug 30 20:40 wp-includes
-rw-r–r–. 1 apache apache 2494 Mar 19 23:31 wp-links-opml.php
-rw-r–r–. 1 apache apache 3973 Apr 12 04:47 wp-load.php
-rw-r–r–. 1 apache apache 48498 Apr 29 17:36 wp-login.php
-rw-r–r–. 1 apache apache 8577 Mar 22 19:25 wp-mail.php
-rw-r–r–. 1 apache apache 23706 Apr 12 12:26 wp-settings.php
-rw-r–r–. 1 apache apache 32051 Apr 11 14:42 wp-signup.php
-rw-r–r–. 1 apache apache 4748 Apr 11 14:42 wp-trackback.php
-rw-r–r–. 1 apache apache 3236 Jun 8 2020 xmlrpc.php
[root@wordpress html]#

Step Three — Configure WordPress

cd /var/www/html

cp wp-config-sample.php wp-config.php

nano /var/www/html/wp-config.php

// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘wpDB’);

/** MySQL database username */
define(‘DB_USER’, ‘wordpress’);

/** MySQL database password */
define(‘DB_PASSWORD’, ‘Aa123456’);

Last login: Sat Sep 10 21:20:50 2022 from 192.168.142.1
[root@wordpress ~]# vim /etc/httpd/conf/httpd.conf
[root@wordpress ~]#


ec2-34-254-248-161.eu-west-1.compute.amazonaws.com

erdalcakiroglu/GHfXsWfj#GGg8KDWOs

ec2-34-254-248-161.eu-west-1.compute.amazonaws.com

apache logs :
/var/log/apache/access.log

https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-on-centos-7
https://opensource.com/article/20/10/mariadb-mysql-linux

Troubleshooting

—-> The uploaded file exceeds the upload_max_filesize directive in php.ini.
[root@wordpress etc]# vi /etc/opt/remi/php81/php.ini
change parameter : upload_max_filesize = 200MB
restart php services
systemctl restart php*

—–> wordpress pluginleri gelmiyor…
disable seLinux
SELinux reserve the files permission in CentOS. After disabling SELinux the issue was fixed.
/etc/selinux/config

—–> Upgrade PHP to 8.0
How To Upgrade PHP 7.2 to PHP 7.4 on CentOS 8 or RHEL 8
Step 1: Add EPEL and REMI Repository

sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
sudo yum -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
Step 2: Install PHP 7.4 on CentOS 8 / RHEL 8

sudo dnf -y install dnf-utils
Step 3: Enable the module stream for PHP 7.4 on CentOS 8 / RHEL 8

sudo dnf module reset php -y
sudo dnf module install php:remi-8
Step 4: Install additional packages

sudo dnf update
sudo yum install php php-curl php-cli php-mysql php-gd php-common -y
php -v

–> Install Plugins
All-in-One WP Migration
elementor By Elementor.com

–> Add Themes
OceanWP

Leave a Comment