How to Install PHP on Rocky Linux
Rocky Linux is a new distribution that aims to provide a stable, secure, and reliable operating system for servers. If you’re using Rocky Linux and need to install PHP for your web applications, this guide will walk you through the process.
Step 1: Enable Remi Repository
The Remi repository contains the latest versions of PHP packages for Rocky Linux. To enable it, first install the EPEL (Extra Packages for Enterprise Linux) repository by running the following command:
sudo dnf install epel-release
Next, install the Remi repository by running the following command:
sudo dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
Step 2: Install PHP
Once you have enabled the Remi repository, you can proceed to install PHP. To install the latest version of PHP along with common extensions, run the following command:
sudo dnf module reset php
sudo dnf module enable php:remi-8.0
sudo dnf install php
If you need additional PHP extensions, you can install them by running the following command:
sudo dnf install php-extensions
Step 3: Verify PHP Installation
To verify that PHP has been installed successfully, you can run the following command to check the PHP version:
php -v
You should see the PHP version displayed in the output if the installation was successful.
Step 4: Configure PHP
Finally, you may need to configure PHP according to your web application’s requirements. The PHP configuration file is located at /etc/php.ini
. You can edit this file to adjust settings such as maximum file upload size, error reporting level, and more.
Once you have made changes to the PHP configuration, remember to restart the web server for the changes to take effect.
Conclusion
Installing PHP on Rocky Linux is a straightforward process with the help of the Remi repository. By following the steps outlined in this guide, you can quickly set up PHP for your web applications and ensure they run smoothly on your Rocky Linux server.