1台のサーバにcpanelをインストールし、phpMyAdminフォルダ内にあるconfig.inc.php
の値を変更しただけで、4台のサーバすべてからデータベースを処理できます。
このファイルには、このようなコンテンツを持つことになり、
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
/* Bind to the localhost ipv4 address and tcp */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
変更user
、password
とhost
は
を接続します