After , I installed PHP5, Apache2 and MySQL completed. I want to maintain MySQL service by phpMyAdmin program. This is solution of how to install phpMyAdmin 2.11.3 on CentOS 5.
[ad#ad-post-1]
- $ su –
- # cd /var/www/html
- # wget -c http://prdownloads.sourceforge.net/phpmyadmin/
phpMyAdmin-2.11.3-english.tar.gz?download - # tar xvfz phpMyAdmin-2.11.3-english.tar.gz
- # mv phpMyAdmin-2.11.3-english phpmyadmin
- # cd phpmyadmin
- # cp config.sample.inc.php config.inc.php
- # vi config.inc.php
:
$cfg[‘Servers’][$i][‘auth_type’] = ‘http‘; # default is cookies
: - # 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.