2020年04月11日
Tweet
参考
phpMyAdminで複数のサーバーを管理する
タイトルもほぼ一緒です。上記参考サイトの通り。
config.inc.php を以下の通り修正しました。
/**
* Servers configuration
*/
$i = 0;
/**
* First server
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['verbose'] = 'MAIN;
$cfg['Servers'][$i]['host'] = '192.168.0.X;
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['verbose'] = 'Sub;
$cfg['Servers'][$i]['host'] = '192.168.0.X;
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;
これだけでした。
phpMyAdminで複数のサーバーを管理する
タイトルもほぼ一緒です。上記参考サイトの通り。
config.inc.php を以下の通り修正しました。
/**
* Servers configuration
*/
$i = 0;
/**
* First server
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['verbose'] = 'MAIN;
$cfg['Servers'][$i]['host'] = '192.168.0.X;
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['verbose'] = 'Sub;
$cfg['Servers'][$i]['host'] = '192.168.0.X;
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;
これだけでした。
stock_value at 15:28│Comments(0)│技術