servers:mysql

Admin in MySQL under Ubuntu Server

first creating username

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';

then define the permissions on what ?

GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';

  • servers/mysql.txt
  • Last modified: 2020/06/11 18:15
  • by 127.0.0.1