Privacy Policy
Snippets index

  MySQL notes

Enable remote access

Comment this in file '/etc/mysql/mysql.conf.d/mysqld.cnf':

#bind-address           = 127.0.0.1

then

uninstall plugin validate_password;
grant all privileges on *.* to 'root'@'%' identified by 'XXXXXXXXXXXXX' with grant option;
flush privileges;