安装 phpMyAdmin 进行远程访问

安装 phpMyAdmin 进行远程访问

我使用 Ubuntu 20.04,并使用远程 MySql DB(安装在外部服务器上)。

我想安装 phpMyAdmin 而不安装本地 MySql 服务器,但找不到如何操作。可能吗?

或者,如果有任何好的和简单的 GUI,我可以安装不同的 GUI。

答案1

您可以通过命令安装它:

sudo apt install phpmyadmin php-mbstring php-zip php-gd php-json php-curl

并且config.inc.php您应该更改那里的行:

$cfg['Servers'][$i]['host'] = 'HostName:port'; 
$cfg['Servers'][$i]['user'] = 'userName'; 
$cfg['Servers'][$i]['password'] = 'Password'; 
$cfg['Servers'][$i]['auth_type'] = 'config';   

相关内容