Guest User

Untitled

a guest
Oct 16th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. select host, user, password from mysql.user;
  2. create database **********;
  3. show databases;
  4. create user '*******'@'%' identified by '**********';
  5. grant all privileges on *********.* to '**********'@'%' identified by '**********';
  6. flush privileges;
  7.  
  8. #grant all privileges uses databasename.* to work (MariaDB).
Add Comment
Please, Sign In to add comment