tech-tips/Программное обеспечение/СУБД/MySQL - MariaDB/Разрешить подключаться любому юзеру к mysql удалённо.md

684 B
Raw Blame History

В файле /etc/mysql/mysql.conf.d/mysqld.cnf (или /etc/mysql/mariadb.conf.d/50-server.cnf) задать параметр:

bind-address=0.0.0.0

Перезагрузить конфиги #mysql или весь mysql:

systemctl reload mysql
# или
systemctl restart mysql

Подключиться к БД и выполнить:

update mysql.user set host='%', plugin='' where user='username';
flush privileges;

[!seealso] Under MySQL 8.0. Give the new user all permissions for all privileges, and then cancel the error ERROR1227 : SYSTEM_USER privilege(s) for this operation