PHPMyAdmin 设置阿里云rds访问

打开 PHPMyAdmin 项目目录,找到 config.sample.inc.php 文件 重命名为:config.inc.php。

填入配置信息:

// 阿里云
$cfg['blowfish_secret'] = 'theExampleWrites16ValuesHere';
$cfg['Servers'][$i]['host']='localhost.mysql.rds.aliyuncs.com:3306'; //数据库地址
$cfg['Servers'][$i]['user']='root'; //账号
$cfg['Servers'][$i]['password']='root'; //密码

host:更改完整地址,注意无需http(s)

user:对应阿里云中的rds账号

password:对应阿里云中的rds密码

posted @ 2021-02-21 00:23  神经蛙  阅读(414)  评论(0编辑  收藏  举报