mysql添加用戶
先以root用戶登入
選擇要添加的數據庫(jbpm)
use jbpm
grant all on jbpm to scott@localhost identified by 'scott'
刪除用戶
mysql -uroot -proot
use mysql
delete from user where user='scott' and host='localhost';
flush privileges;
雪山飛鵠溫馨提示:您的每一次轉載,體現了我寫此文的意義!!!煩請您在轉載時注明出處http://www.aygfsteel.com/sxyx2008/謝謝合作!!! |
mysql添加用戶
先以root用戶登入
選擇要添加的數據庫(jbpm)
use jbpm
grant all on jbpm to scott@localhost identified by 'scott'
刪除用戶
mysql -uroot -proot
use mysql
delete from user where user='scott' and host='localhost';
flush privileges;