13 lines
298 B
Markdown
13 lines
298 B
Markdown
## MySQL madness!
|
|
|
|
Wordpress's IP is configured to 172.26.0.2
|
|
|
|
Do the MySQL!
|
|
|
|
```mysql
|
|
select host, user, password from mysql.user order by user;
|
|
create user 'arvuhez'@'172.26.0.2' identified by 'kjhs';
|
|
grant all on arvuhez.* to 'arvuhez'@'172.26.0.2';
|
|
show grants for 'arvuhez'@'172.26.0.2';
|
|
```
|
|
|