标签:mysql
1.添加用户(有两种形式):mysql>flush privileges;
这样就创建了一个名为:yushan 密码为:123 (密码是经过加密的 ) 的用户,不过这样没有权限因为只添加了三个字段,也可通过grant添 加权限:
mysql>grant all on *.* to yushan@localhost identified by ‘123";
mysql>flush privileges;(刷新系统权限表)
添加完用户 如果要远程登入MySQL,必须跟上主机Ip如下:
[root@localhost ~]# mysql -u yushan -p -h 192.168.59.123
Enter password:(输入密码)
2.删除用户 :
标签:mysql
原文地址:http://blog.csdn.net/cuipengchong/article/details/44095247