mysql補漏

kidking2010發表於2011-11-30
雖然我們可以利用很多工具進行管理,但是有些命令還是必須知道的。
1.設定root密碼
update mysql.user set password=password('密碼') where user='root';
2.root改名
update mysql.user set user='myroot' where user='root';
3.刪除使用者
delete from mysql.user where user='root';
4.批次設定密碼
update mysql.user set password=password('密碼') where password='';
5.建立資料庫
create database forum grant all on forum.* to root@'localhost' identified by 'xxx';

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23141985/viewspace-712423/,如需轉載,請註明出處,否則將追究法律責任。

相關文章