MySQL Workbench работает на моем ПК дома с IP 1.2.3.4 и MariaDB находится на моем сервере с IP 4.3.2.1.
https://mariadb.com/kb/en/mariadb/configuring-mariadb-for-remote-client-access/ описывает редактирования /etc/my.cnf
, но показывает комментирующие строки, которых нет в моем.
когда я проверяю свое удаленное соединение, я получаю ошибку 10060 (отказано).
Как это достигается?
[root@greenbeantech etc]# cat /etc/my.cnf
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd
[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid
#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
[root@greenbeantech etc]#