PHPMyAdmin:如何为每个服务器保存一个有意义的名称?

时间:2019-02-26 22:17:47

标签: phpmyadmin

我花了几个小时来尝试配置PHPMyAdmin,但无法成功。

目前,我必须使用数据库ip,用户名和密码(类似于我在图片中放入的假数据)。

我尝试修改配置文件,但未成功。我想保存一个连接列表(许多数据库在同一台服务器上)。并仅使用主密码。有机会吗?

enter image description here

/**
 * Servers configuration
 */
$i = 0;

/**
 * First server
 */

$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['host'] = 'x.x.x.x';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = true;

/**
 * Second server
*/

$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'y.y.y.y';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = true;

0 个答案:

没有答案