MySQLにユーザー作成、権限設定のメモ

操作手順
#create user 'testuser’@’%’ identified by '12345’;
#grant all privileges on *.* to 'testuser’;
#commit;
#flush privileges;

MySQL

Posted by arkgame