mysqlユーザ設定

mysqlのユーザ設定あれこれです。

# mysql -u root -p xxxxxxxx
mysql> grant all privileges on *.* to root@localhost identified by ‘xxxxxxxx’ with grant option;
mysql> flush privileges;