How to Install WordPress on CentOS 8

29/12/2020
Chưa phân loại
WordPress is a very popular PHP based CMS (Content Management System). For small businesses, personal/hobby websites, WordPress can be a lifesaver.  In this article, I am going to show you how to install WordPress on CentOS 8. So, let’s get started.

Installing PHP, Apache and MariaDB:

As I’ve said earlier, WordPress is written on PHP programming language. So, you must have a working LAMP server installed on CentOS 8 in order to run WordPress.

First, update the DNF package repository with the following command:

$ sudo dnf makecache

Now, install Apache, PHP, MariaDB with the following command:

$ sudo dnf install mariadb mariadb-server httpd

httpd-tools php php-cli php-json php-gd php-mbstring php-pdo php-xml

phpmysqlnd phppeclzip wget

To confirm the installation, press Y and then press <Enter>.

Apache, PHP and MariaDB should be installed.

Apache httpd service won’t be running (inactive) by default on CentOS 8.

$ sudo systemctl status httpd

Now, start the Apache httpd service with the following command:

$ sudo systemctl start httpd

Now, Apache httpd service should be running (active).

$ sudo systemctl status httpd

Now, add Apache httpd service to the system startup with the following command:

$ sudo systemctl enable httpd

mariadb service won’t be running (inactive) by default on CentOS 8.

$ sudo systemctl status mariadb

Now, start the mariadb service with the following command:

$ sudo systemctl start mariadb

Now, mariadb service should be running (active).

$ sudo systemctl status mariadb

Now, add mariadb service to the system startup with the following command:

$ sudo systemctl enable mariadb

Creating a Database for WordPress:

Now, you have to create a new MariaDB database for WordPress.

First, login to the MariaDB shell with the following command:

$ sudo mysql u root p

Now, type in your password and press <Enter>. By default, no password is set. So just press <Enter> if you’re following along.

You should be logged into the MariaDB console.

Now, create a new MariaDB database wordpress with the following SQL statement:

MariaDB> CREATE DATABASE wordpress;

Now, create a new user wordpress with the password secret and grant the user wordpress all privileges (read, write, modify etc.) to the database wordpress with the following SQL statement:

MariaDB> GRANT ALL ON wordpress.* TO ‘wordpress’@‘localhost’ IDENTIFIED BY ‘secret’;

Now, for the changes to take effect, run the following SQL statement:

MariaDB> FLUSH PRIVILEGES;

Now, exit out of the MariaDB database console as follows:

MariaDB> quit

Downloading and Installing WordPress:

WordPress is not available in the official package repository of CentOS 8. So, you must download it from the official website of WordPress and install it on CentOS 8. It’s very easy.

First, navigate to the /var/www directory as follows:

$ cd /var/www

Now, download the latest WordPress archive from the official website of WordPress with the following command:

$ sudo wget https://wordpress.org/latest.tar.gz

wget is downloading WordPress archive. It may take a few minutes to complete.

WordPress archive should be downloaded.

The WordPress archive file latest.tar.gz should be in the /var/www directory as you can see in the screenshot below.

$ ls -lh

Now, extract the WordPress archive file latest.tar.gz with the following command:

$ sudo tar xvzf latest.tar.gz

Once the WordPress archive file latest.tar.gz is extracted, a new directory wordpress/ should be created as you can see in the screenshot below.

$ ls -lh

Now, you can remove the latest.tar.gz file as follows:

$ sudo rm -v latest.tar.gz

Now, change the owner and group of the wordpress/ directory and its contents to apache as follows:

$ sudo chown -Rf apache:apache ./wordpress/

Now, change the permission or the wordpress/ directory and its content to 775 as follows:

$ sudo chmod -Rf 775 ./wordpress/

If you have SELinux enabled (which is very likely on CentOS 8/RHEL 8), run the following command to set the correct SELinux context to the /var/www/wordpress directory and its contents.

$ sudo semanage fcontext -a -t httpd_sys_rw_content_t
"/var/www/wordpress(/.*)?"

For the SELinux changes to take effect, run the following command:

$ sudo restorecon -Rv /var/www/wordpress

Now, create a new Apache configuration file wordpress.conf for WordPress with the following command:

$ sudo vi /etc/httpd/conf.d/wordpress.conf

Vi text editor should open. Now, press i to go to INSERT mode.

Now, type in the following lines of codes in the wordpress.conf file.

<VirtualHost *:80>
ServerAdmin root@localhost
DocumentRoot /var/www/wordpress
<Directory "/var/www/wordpress">
Options Indexes FollowSymLinks
AllowOverride all
Require all granted
</Directory>
ErrorLog /var/log/httpd/wordpress_error.log
CustomLog /var/log/httpd/wordpress_access.log common
</VirtualHost>

Finally, the wordpress.conf file should look as shown in the screenshot below.

Now, press <Esc>, type in :wq! and press <Enter> to save the file.

Now, restart the Apache httpd service with the following command:

$ sudo systemctl restart httpd

Apache http service should be active without any errors as you can see in the screenshot below.

$ sudo systemctl status httpd

Accessing WordPress:

In order to access WordPress installed on your CentOS 8 machine, you must know the IP address or domain name of your CentOS 8 machine.

You can find the IP address of your CentOS 8 machine with the following command:

$ ip a

As you can see, the IP address of my CentOS 8 machine is 192.168.20.129. It will be different for you. So, make sure to replace it with yours from now on.

Now, open your favorite web browser and visit http://192.168.20.129. You should see the following page. Click on Let’s go.

Now, type in the MariaDB database information (i.e. Database Name, Username, Password). Leave the Database Host and Table Prefix as it is if you don’t know what they are. Once you’re done, click on Submit

Now, click on Run the installation.

Now, type in your site details and click on Install WordPress.

Don’t forget to take a note of the Username and Password you’re setting here as you will need them very shortly.

WordPress should be installed. Now, click on Log In.

Now, type in your site Username and Password and click on Log In.

You should be logged in to the WordPress admin panel. You can manage your site from here.

So, that’s how you install WordPress on CentOS 8. Thanks for reading this article.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Install MongoDB on Ubuntu

In this quick post, we will see how we can install one of the most popular NoSQL database, MongoDB on Ubuntu and start...
28/12/2020

[Zabbix] Tích hợp Zabbix vào Grafana

Grafana là công cụ hiển thị biểu đồ monitor rất phổ biến. Grafana có thể xử lý được rất nhiều...
30/12/2020

What is NodeJS?

In this tutorial, we will get started with Node.js. Learn about some of its most popular features and will try to motivate...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

Mua proxy v4 chạy socks5 để chơi game an toàn, tốc độ cao ở đâu?
18/05/2024

Thuê mua proxy Telegram trọn gói, tốc độ cao, giá siêu hời
18/05/2024

Thuê mua proxy Viettel ở đâu uy tín, chất lượng và giá tốt? 
14/05/2024

Dịch vụ thuê mua proxy US UK uy tín, chất lượng số #1
13/05/2024

Thuê mua proxy Việt Nam: Báo giá & các thông tin MỚI NHẤT
13/05/2024