linux大全(8)
6、修改 root 密码
方法1:用 SET PASSWORD 命令
首先登录 MySQL。
格式:mysql> set password=password('新密码');
命令:mysql> set password=password('123456');
方法2: 用 UPDATE 直接编辑 user 表
首先登录 MySQL。
mysql> use mysql;
mysql> update user set password=password(‘123’) where user=‘root’ and host=‘localhost’;
mysql> flush privileges;
7、增加新用户
格式:grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码"
增加一个用户user1,密码为password1,让其可以在本机上登录,并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入mysql,然后键入以下命令:
mysql> grant select,insert,update,delete on *.* to user1@localhost Identified by "password1";
若希望该用户能在任何服务器上登陆mysql,则将localhost改为"%"。
若不想user1有密码,则可以用下面的命令将密码去掉:
mysql> grant select,insert,update,delete on mydb.* to user1@localhost identified by "";
8、删除SQL用户
mysql> delete from user where User="用户名" and Host="服务器IP地址";
- 点赞
- 收藏
- 关注作者
评论(0)