How To Install PhpMyAdmin in Linux Server

1. Login using Putty into the server: https://clients.activeservers.in/knowledgebase/257/How-to-Connect-to-a-Linux-Server-Using-PuTTY-Step-by-Step-Guide.html 

2. Update Your System:  

  • Before installing any software, update your package list: sudo yum update –y 

3. Install Apache, MySQL, and PHP (LAMP Stack):

 

 4. Install phpMyAdmin:  

  • First install EPEL repository: sudo yum install epel-release –y 

  • Then, install PhpMyAdmin: sudo yum install phpmyadmin –y 

 5. Configure Apache:  

  • Edit the configuration file:  sudo nano /etc/httpd/conf.d/phpMyAdmin.conf

  • Find the lines: Require all denied replace with Require all granted 
  • Then restart Apache: sudo systemctl restart httpd (If you find any kind of error in restarting the apache then kindly check the config file for syntax error or run: sudo apachectl configtest to look for specific error) 

 6. Access phpMyAdmin:  

  • Open your browser and visit: http://your-server-ip/phpmyadmin  

  • Login with: 

          Username: root 

          Password: (your MySQL root password) 

  • phpmyadmin, linux, PHP, apache
  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

Backup restoration

Since backups are saved at various nodes to avoid data loss, we manage the backup and...

How To allow SQL Express traffic in windows firewall

Please follow the below steps to allow SQL express communication in the firewall. Open SQL...

How to change SQL authentication in SQL Express

Please follow the below steps Login to SQL Express using SQL management studio. Right-click...

Set Up Sending of Email in Plesk

To Set Up Sending of Email in Plesk, You need to follow the below Points   1. Go to Tools...

How to check Port status of VPS

It may possible that the firewall has blocked a few ports and it is not accessible.  To check...