解决MySQL ERROR 1130 (HY000): Host '192.168.31.115' is not allowed to connect to this MariaDB server

# 给root用户授权
GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.31.115' IDENTIFIED BY 'root' WITH GRANT OPTION;
原文地址:https://www.cnblogs.com/apollo1616/p/10435656.html