博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Navicat 连接MariaDB 失败: Host '*' is not allowed to connect to this MariaDB server
阅读量:5126 次
发布时间:2019-06-13

本文共 635 字,大约阅读时间需要 2 分钟。

题描述:Navicat 为管理方便,连接 中ariadb失败,如下如下错误:Host '*' is not allowed to connect to this MariaDB server

解决方案:

//允许用户testuser从ip为222.129.1.1的主机连接到mysql服务器,并使用testpassword作为密码MariaDB [(none)]> grant all privileges on *.* to 'testuser'@'222.129.1.1' identified by 'testpassword' with grant option;  (若是允许所有ip:GRANT ALL PRIVILEGES ON *.* TO ‘testuser’@'%’ IDENTIFIED BY ‘testpassword’ WITH GRANT OPTION;)MariaDB [(none)]> flush privileges;   //刷新权限缓存MariaDB [(none)]> show privileges;MariaDB [(none)]> show grants for  'testuser'@'222.129.1.1'

  

posted on
2019-03-20 10:20 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/fanlong0212/p/10563237.html

你可能感兴趣的文章
《linux就该这么学》第六节,计划任务和用户身份管理!
查看>>
php: +1天, +3个月, strtotime(): +1 day, +3 month
查看>>
mysql: 模糊查询 feild like keyword or feild like keyword , concat(feild1,feild2,feild3) like keyword...
查看>>
Python小数据池
查看>>
JavaScript 函数(作用域以及闭包)
查看>>
ORACLE EBS 多账套总结
查看>>
使用MyBatista----上传图像
查看>>
神经网络中使用Batch Normalization 解决梯度问题
查看>>
Win8 IIS 安装和部署网站问题
查看>>
GIT的Push和Pull,强制Pull覆盖本地命令
查看>>
phpMyAdmin导入大的sql文件
查看>>
Winform开发之ADO.NET对象Connection、Command、DataReader、DataAdapter、DataSet和DataTable简介...
查看>>
Ubuntu更改鼠标灵敏度
查看>>
基于 vue2 导航栏透明渐变
查看>>
JavaScript HTML DOM元素节点常用操作接口
查看>>
利用expect实现自动化操作
查看>>
Golang tcp转发 remoteAddr错误
查看>>
文字超出两行 则显示。。。
查看>>
xv6/调度算法及并发程序设计
查看>>
宏函数和函数的区别
查看>>