Flipkart

Tuesday, March 30, 2010

PHPMyAdmin Installation on Fedora

Step One
To install PHPMyAdmin using yum, simply issue
# yum -y install phpMyAdmin.noarch
Step Two
PHPMyAdmin Security Access
By default installation, phpmyadmin administration page can only be accessed from localhost via web browser for added security. If you wish to access phpmyadmin page from multiple hosts, modify phpmyadmin conf page as shown below
# vi /etc/httpd/conf.d/phpMyAdmin.conf
and edit the necessary settings. For example, if you require phpmyadmin web page to be accessible from a computer host with an IP address of 123.123.123.123, edit phpMyAdmin.conf to reflect the below similar lines
#order deny,allow
#deny from all
Allow from All
allow from 127.0.0.1
allow from 123.123.123.123


and next add the Allow from All Line
< Directory /usr/share/phpMyAdmin/libraries >
   Order Deny,Allow
   Allow from All
< /Directory>
Save, exit and reload apache web server.
# service httpd restart

No comments:

Post a Comment