MySQLの管理ツール phpMyAdmin のインストールです
wget http://jaist.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-2.8.0.4.tar.gz
tar xvzf phpMyAdmin-2.8.0.4.tar.gz
cd phpMyAdmin-2.8.0.4
cp libraries/config.default.php config.inc.php
config.inc.php を作成して下記3点の修正でOK
vi config.inc.php
$cfg[‘Servers’][$i][‘host’] =’localhost’ // MySQL hostname or IP address
$cfg[‘Servers’][$i][‘user’] = ‘root’; // MySQL user
$cfg[‘Servers’][$i][‘password’] = ‘password’; // MySQL password (only needed
ブラウザからアクセスできるようにすればすぐに使えます
$cfg[‘Servers’][$i][‘auth_type’] = ‘config’; のままBasic認証をかけて使っています