การการติดตั้ง phpMyAdmin เพื่อบริหารฐานข้อมูล MySQL

1.) ดาวน์โหลดได้ที่ http://www.phpmyadmin.net ในที่นี้เป็น version 2.6.4-pl4 แล้วแตก file ออกมาโดยคำสั่ง
[root@mail pub]# tar -xvzf phpMyAdmin-2.6.4-pl4.tar.gz

phpMyAdmin-2.6.4-pl4

2.) copy ไปไว้ที่ต้องการ เช่น
[root@test root]# cp phpMyAdmin-2.6.4-pl4 /var/www/html/phpMyAdmin

3.) เปิด file config.inc.php ขึ้นมา แล้วแก้ไข

$cfg['PmaAbsoluteUri'] = '';

ใส่เป็น
$cfg['PmaAbsoluteUri'] = 'http://localhost/phpMyAdmin';

$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
$cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed with 'config' auth_type)

ใส่เป็น
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'passwd123';