MySQLにユーザー作成、権限設定のメモ
操作手順
#create user 'testuser’@’%’ identified by '12345’;
#grant all privileges on *.* to 'testuser’;
#commit;
#flush privileges;
Coding Changes the World
操作手順
#create user 'testuser’@’%’ identified by '12345’;
#grant all privileges on *.* to 'testuser’;
#commit;
#flush privileges;