事前確認事項 †設定箇所 †確認方法 †違うサーバを見に行かせる †/etc/phpmyadmin/config.ini.phpの $cfg['Servers'][$i]['host'] = 'db.server.ip.etc..'; の行を該当サーバのfqdnかIPに変更する 複数のサーバーを見に行かせる †/etc/phpmyadmin/config.ini.phpの /** * Server(s) configuration */ $i = 0; // The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use $cfg['Servers'][0]. // You can disable a server config entry by setting host to ''. $i++; /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = 'cookie'; /* Server parameters */ $cfg['Servers'][$i]['host'] = 'localhost'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $i++; $cfg['Servers'][$i]['auth_type'] = 'cookie'; /* Server parameters */ $cfg['Servers'][$i]['host'] = 'anothor server'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $cfg['DisplayServerList'] = TRUE; エラー時には †参考URL † |