我们有大约4台服务器,每台服务器都托管着多个网站。
我们希望使用cpanel更新所有这些服务器的所有网站。为此,我们应该在所有4台服务器上安装cpanel,还是可以从单个cpanel实例控制所有4台服务器?如果是,怎么样?
答案 0 :(得分:0)
只需在一台服务器上安装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
以进行连接