automation/sites/rennes-des-bois/README.md
2020-03-31 10:55:25 +02:00

282 B

MySQL madness!

Wordpress's IP is configured to 172.26.0.2

Do the MySQL!

select host, user, password from mysql.user order by user;
create user 'rdb'@'172.26.0.2' identified by 'kjhs';
grant all on rdb.* to 'rdb'@'172.26.0.2';
show grants for 'rdb'@'172.26.0.2';