不建议开启,本人只是需要在Localhost Server上测试,又不想在macOS上安装MariaDB...废话不多说只作为简单记录...
登录
mysql -p -u root
切换到mysql
use mysql;
权限分配情况
select user,password,host from user;
修改root 为 %
grant all privileges on *.* to root@"%" identified by "xxx123.";
检查修改后的结果
select user,password,host from user;
刷新 【一定需要别忘了】
flush privileges;
我是在 Manjaro上安装的,其他开源参考:MariaDB (简体中文) - ArchWiki (archlinux.org)