February 2013
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728  

Categories

February 2013
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728  

Install phpMyAdmin on CentOs 6

Install phpMyAdmin on CentOs 6 and had interesting walkthrough of the installation

1. Get the latest copy of phpMyAdmin from sourceforge

wget http://downloads.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.5.7/phpMyAdmin-3.5.7-english.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fphpmyadmin%2Ffiles%2FphpMyAdmin%2F3.5.7%2F&ts=1361966494&use_mirror=jaist

2. Extract the files

tar -zxvf phpMyAdmin-3.5.7-english.tar.gz

3. move the extracted files to proper location

mv phpMyAdmin-3.5.7-english.tar.gz /var/www/html/phpmyadmin

4. cd /var/www/html/phpmyadmin

5. Make a copy of configuration files

cp config.sample.inc.php config.inc.php

6. […]