Install LAMP Stack ( Apache, MariaDB, php, phpMyAdmin) on Fedora 22/23/24

5) Install phpMyAdmin

phpMyAdmin is a free open-source web-based administration tool for managing the MySQL, MariaDB servers which will help us to manage the database easily.

[Install phpMyAdmin]
$ sudo dnf install phpmyadmin

open the file /etc/httpd/conf.d/phpMyAdmin.conf and find the value RequireAny and you will get two location. Modify like below. so that you can access anywhere.

Configure phpMyAdmin
$ sudo nano /etc/httpd/conf.d/phpMyAdmin.conf

#   Require ip 127.0.0.1
#   Require ip ::1
    Require all granted


[Restart apache service]
$ sudo systemctl restart httpd.service

Open your web browser and navigate to http://localhost/phpMyAdmin or http://your-server-ip-address/phpMyAdmin or http://127.0.0.1/phpMyAdmin
install-lamp-on-fedora-24-workstation-6
We are preparing all articles in-depth to understand by all level/stage Linux administrators. If the article is useful for you, then please spend less than a minute to share your valuable comments in our commenting section. Please stay tune with us…Good Luck.

About Magesh Maruthamuthu

Love to play with all Linux distribution

View all posts by Magesh Maruthamuthu

4 Comments on “Install LAMP Stack ( Apache, MariaDB, php, phpMyAdmin) on Fedora 22/23/24”

  1. The firewall might need to be restarted after running the commands in step 2a – I know my setup required it.

    $sudo systemctl reload firewalld

  2. Very detailed, yet easy to follow and concise. Thanks for taking the time to put this together. It helped me to get LAMP up and running quickly so I can learn the languages of web development and how to set up WordPress and other CMS sites.

Leave a Reply

Your email address will not be published. Required fields are marked *