MariaDB 不允许远程连接

MariaDB not allowing remote connections(MariaDB 不允许远程连接)
本文介绍了MariaDB 不允许远程连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如屏幕截图所示,我已将帐户设置为允许远程连接,但如第二个屏幕截图所示,我仍然无法远程连接.

As the screenshots show, I have the accounts setup to allow remote connections but as shown in the second screenshot I still cannot connect remotely.

推荐答案

我用于在虚拟机(Ubuntu 16.04)中测试,对我来说,我修复了更改文件 50-server.cnf 的错误.

I use for testing in the virtual machine (Ubuntu 16.04), for me, I fixed the error changing the file 50-server.cnf.

我的服务器是 Ubuntu,所以修改下面的文件:

My server is Ubuntu, so changing the file below:

50-server.cnf

这个文件的路径:

/etc/mysql/mariadb.conf.d

PS:在更改之前创建文件的备份.

PS: Create a backup of the file before the change.

仅将文件中的 bind-address 127.0.0.0 更改为 bind-address 0.0.0.0

Only change in file the bind-address 127.0.0.0 to bind-address 0.0.0.0

在此重启服务后重试.

关于该用户,需要允许外部连接.

Regarding that user, need to allow for external connections.

希望这些信息对您有所帮助.

I hope that this info helps you.

这篇关于MariaDB 不允许远程连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)