Host Is Not Allowed to Connect to This MySQL Server

Mysql 8 版本 8.0.24

bash 复制代码
[root@VM-0-5-centos ~]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 128
Server version: 8.0.24 Source distribution

部署在腾讯云服务器,本地电脑操作python想连接远程MySQL,提示异常

'ip地址' Is Not Allowed to Connect to This MySQL Server

显然是权限不足

创建新的管理员用户或修改root用户以允许从"vScopeServerIP"进行连接

复制代码
> CREATE USER 'newusername'@'*' IDENTIFIED BY 'your_password';
> GRANT ALL PRIVILEGES ON *.* TO 'newusername'@'*' WITH GRANT OPTION;
> CREATE USER 'newusername'@'ip' IDENTIFIED BY 'password';
> GRANT ALL PRIVILEGES ON *.* TO 'newusername'@'ip' WITH GRANT OPTION;
> FLUSH PRIVILEGES;
相关推荐
2501_915106328 小时前
安卓抓包软件2026,免证书抓包 应用层抓包 代理抓包全解析
网络协议·计算机网络·网络安全·ios·adb·https·udp
ymwlchina17 小时前
华为手机P40 Plus如何通过adb无线连接
adb·华为·智能手机
00后程序员张1 天前
Android证书绑定抓包失败?Android SSL Pinning绕过实战指南
android·网络协议·计算机网络·网络安全·adb·https·ssl
九皇叔叔3 天前
MySQL ORDER BY 性能优化详解:Using filesort、联合索引、ASC/DESC 与覆盖索引
android·adb
firstacui5 天前
Mysql调优
android·mysql·adb
醉颜凉5 天前
MySQL 8 忘记 root 密码?这两种方法帮你轻松解决
数据库·mysql·adb
2601_962063236 天前
【Spring Boot】掌握 Spring 事务:隔离级别与传播机制解读与应用
spring boot·spring·adb
小成很成7 天前
mysql 8.0.21 升级 mysql 8.0.45(经过生产环境验证)
android·mysql·adb
2501_916007478 天前
免费抓包工具 Windows 和 Mac 怎么选?根据平台来选择工具
网络协议·计算机网络·网络安全·ios·adb·https·udp