1130 - Host '10.0.0.1' is not allowed to connect to this MySQL server
一、1130 - Host '10.0.0.1' is not allowed to connect to this MySQL server
二、1130 - Host '10.0.0.1' is not allowed to connect to this MariaDB server
endl
一、1130 - Host ‘10.0.0.1’ is not allowed to connect to this MySQL server
mysql -u root -p #连接服务登录mysql
show databases;#查看当前所有数据库
use mysql;#进入mysql数据库
show tables;#查看mysql数据库中所有的表select Host, User from user;#查看user表中的数据
update user setHost='%' where User='root';#修改user表中的Host
flush privileges;#最后刷新一下
二、1130 - Host ‘10.0.0.1’ is not allowed to connect to this MariaDB server
#首先进入 mysql 数据库中
grant all privileges on *.* to 'root'@'%' with grant option;
flush privileges;exit;
前言:
map和 set 是 C STL(标准模板库)中的两种非常重要的容器,它们基于一种叫做平衡二叉搜索树(通常是红黑树)的数据结构来实现。在 C 中,map 是一个键值对容器,set 只存储唯一的键…