Open In App

How To Install WordPress On Rocky Linux 9

Last Updated : 17 Apr, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

WordPress is widely recognized as the preferred platform for building websites and blogs due to its ease of use and wide range of customization features. Suppose you’re considering installing WordPress on Rocky Linux, an open-source operating system known for its reliability. In that case, you’ll find the process to be quite straightforward when coupled with the LAMP stack – Linux, Apache, MySQL, and PHP. In the following article, we will guide you through each step of setting up WordPress on Rocky Linux using LAMP, allowing you to get your website or blog up and running smoothly in no time. So, let’s dive into the process!

Step 1: Update Your System in Rocky Linux

Before installing any new software, it’s a good practice to update your system’s package repository and install packages to the latest versions. Open a terminal and run the following command:

yum update 

updating yum

Step 2: Installation process of LAMP

LAMP means Linux, Apache, MariaDB, and PHP. To run WordPress, we need a web server, a database server, and PHP. So, we’ll set up the Apache web server, the MariaDB database server, and PHP.

Install Apache in Rocky Linux 9

Run the following command to install Apache:

yum install httpd

installing httpdRun the following commands to start, enable (to be able to start on the boot), and verify the status of the Apache service:

systemctl start httpd
systemctl enable httpd
systemctl status httpd

starting , enabling and viewing status of httpd

Install MariaDB in Rocky Linux 9

Install MariaDB, a MySQL-compatible database server:

yum install mariadb-server

installing mariadb-serverRun the following commands to start, enable (to be able to start on the boot), and verify the status of the MariaDB service:

systemctl start mariadb
systemctl enable mariadb
systemctl status mariadb

starting , enabling and viewing status of mariaDB

Securing MariaDB installation

mysql_secure_installation

Create or (press enter not to create) a password for the root user. If you press enter, you’ll be able to proceed with your existing root account password, so press “n” for authentication and not to change the root password queries:

Securing MariaDB

PHP Installation in Rocky Linux 9

Install PHP and required PHP extensions:

yum install php php-mysqlnd php-gd php-xml php-mbstring

Installing PHP Run the following commands to reload the PHP configuration, to restart and verify the status of the Apache service as well:

systemctl restart httpd
systemctl status httpd

Restarting Apache Service

Step 3: Install WordPress in Rocky Linux 9

Initially, it’s required to install the “wget” command to download, extract, move, and set specific permissions for WordPress files by running the following commands.

yum install wget

Installing wget commandDownload the latest version of WordPress and make sure you put the “latest.tar.gz” at the ending (at this time the latest version of WordPress is 6.5.2):

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

Downloading WordPress PackageExtract the downloaded files:

tar -xzvf latest.tar.gz

Extracting Downloaded ArchiveIt’s required to move WordPress files to the Apache web server’s root directory, despite it allowing the webserver to serve the WordPress site correctly when users access it through a web browser:

cp -r wordpress/* /var/www/html/

Moving WordPress files to Apache DirectorySet the specific permissions for WordPress files, and verify the “html” directory permissions via the “ls” and “grep” commands:

chown -R apache:apache /var/www/html/
chmod -R 755 /var/www/html/
ls -l /var/www | grep html

Granting Permissions

Step 4: Configuration of Database

Create a new database and user by typing a current MariaDB root password if you’ve not changed a root password during MariaDB installation step:

mysql -u root -p

Logging into DataBaseCreate a new database:

CREATE DATABASE IT4U;

Creating New DatabaseCreate a new user and set a password:

CREATE USER 'arazahmadov'@'localhost' IDENTIFIED BY 'Pass123';

Setting New User and its PasswordTo perform any operation on a specific database or tables within that database grants privileges to a specific user:

 GRANT ALL PRIVILEGES ON IT4U.* TO 'arazahmadov'@'localhost';

Granting Database PermissionsApply the privileges and exit.

FLUSH PRIVILEGES;
EXIT;

Applying the Permissions

Step 5: Configuration of WordPress

Rename the original WordPress configuration file, and verify via the “ls” and “grep” commands:

cd /var/www/html/
mv wp-config-sample.php wp-config.php
ls -l | grep wp-config.php

Renaming WordPress Config FileOpen the “wp-config-php” configuration file and replace the following lines to identify with the database settings previously made:

wp-config.php
define ('DB_NAME', 'IT4U');
define ('DB_USER', 'arazahmadov');
define ('DB_PASSWORD', 'Pass123');

Updating Database Connection Settings

Step 6: Configuration of Firewall settings

Run the following commands to add “http“, and “https” protocols to the firewall and verify via the grep command:

firewall-cmd --permanent --add-service=http 
firewall-cmd --permanent --add-service=https
firewall-cmd --reload
firewall-cmd --list-all | grep http

Configuring Firewall Settings

Step 7: Log in to WordPress

Log into the WordPress website by typing “http://your_server_ip_address/wp-admin” and include the credentials you set during the previous installation process:

Log in to WordPress

How To Install WordPress On Rocky Linux 9 – FAQs

What are the system requirements for installing WordPress on Rocky Linux 9?

You’ll need a LAMP stack (Linux, Apache, MySQL, PHP), PHP version 7.4 or higher, MySQL or MariaDB, and sufficient disk space.

How can I install a LAMP stack on Rocky Linux 9 for WordPress?

Use the package manager to install Apache, MySQL/MariaDB, PHP, and necessary modules like php-mysql and php-gd.

Is it recommended to use a control panel like cPanel for managing WordPress on Rocky Linux 9?

While not mandatory, using a control panel like cPanel can simplify tasks such as database management and server configuration.

What security measures should I take after installing WordPress on Rocky Linux 9?

Secure your installation by setting strong passwords, regularly updating WordPress and its plugins/themes, using SSL/TLS certificates, and implementing security plugins.

How can I troubleshoot common issues during WordPress installation on Rocky Linux 9?

Check error logs, ensure file permissions are correct, verify database credentials, disable conflicting plugins/themes, and consult WordPress forums or support resources.

Conclusion

In conclusion, this article demonstrates that setting up WordPress is incredibly smooth and has proven to be a seamless experience, with both administrative and standard user functionalities working flawlessly. Installing and configuring it went smoothly, showing how well WordPress works in an open-source environment. By following the instructions provided here, users can easily and confidently start their websites or blogs on this reliable platform. With WordPress, you have the power to create, manage, and customize your online presence effortlessly, making it a pleasant experience for both creators and visitors.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads