Friday, April 1, 2011

How to install phpmyadmin CENTOS

  1. $ su -
  2. # cd /var/www/html
  3. # wget -c http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/3.3.10/phpMyAdmin-3.3.10-english.tar.gz/download
  4. # tar xvzf phpMyAdmin-3.3.10-english.tar.gz
  5. # mv phpMyAdmin-3.3.10-english phpmyadmin
  6. # cd phpmyadmin
  7. # cp config.sample.inc.php config.inc.php
  8. # vi config.inc.php
    :
    $cfg['Servers'][$i]['auth_type'] = ‘http‘; # default is cookies
    :
  9. # service httpd restart
You can test by open phpmyadmin by this link :
http://your.domain.com/phpmyadmin/
You should be find pop up for insert your user name and password

No comments:

Post a Comment