事前確認事項

設定箇所

確認方法

違うサーバを見に行かせる

/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


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2012-03-12 (月) 16:54:42 (197d)