通过 SSH 的 MYSQL 用户设置权限主机
如何通过 SSH 为 MySql 设置用户主机权限?
我在 WebMin > 中意外地为我的根用户设置了错误的域/IP MySQL 服务器权限。就像我进入主机以允许远程访问并输入错误的地址一样。现在,即使 Webmin 也无法使用凭据进入数据库。
How do you set a users host permission via SSH for MySql?
I've managed to accidentally set the wrong domain/ip for my root user in WebMin > MySQL Server permissions. Like I went into hosts to allow remote access and put the wrong address. Now even Webmin cannot get into he database with the credentials.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过 SSH 登录服务器。
使用以下命令进入mysql:
skip-grant-tables
将导致mysql放弃该会话的权限系统。然后使用 grant 命令向 root 用户授予任何权限:
Login to server via SSH.
Use following command to enter mysql:
skip-grant-tables
will cause mysql to abandon privilege system for this session.Then use grant command to grant any privilege to your root user: