权限

use mysql;
//username 是你的用户名,注意替换 ,%是代表所有IP,可以指定唯一IP
update user set host ='%' where user='username';
//刷新权限
flush privileges;

配置

mariadb的配置文件在 /etc/mysql/mariadb.conf.d/50-server.cnf

[mysqld]

bind-address = 0.0.0.0

//配置完成,必须重启生效
~:sudo systemctl restart mysql.service
01-31 17:37