如果你只希望在 phpMyAdmin 中不需要输入主机名,而用户名和密码仍然需要手动输入,你可以在 config.inc.php
文件中进行如下配置:
<?php
$cfg['Servers'] = [];
$i = 1;
// 设置主机名
$cfg['Servers'][$i]['host'] = '你的主机名'; // 例如 'localhost' 或 '127.0.0.1'
// 使用 cookie 进行身份验证
$cfg['Servers'][$i]['auth_type'] = 'cookie';
// 其他配置
$cfg['Servers'][$i]['user'] = ''; // 留空,手动输入用户名
$cfg['Servers'][$i]['password'] = ''; // 留空,手动输入密码
// 允许修改主机和其他服务器设置
$cfg['ShowServers'] = true; // 允许显示服务器选择
这样配置后,phpMyAdmin 会自动使用你在配置文件中指定的主机名,但仍然要求用户输入用户名和密码。确保将 '你的主机名'
替换为实际的数据库主机名,例如 'localhost'
或 '127.0.0.1'
。