mysql5.7.21改密码_mysql5.7 修改密码,修改权限

1.修改数据库对指定用户和ip权限

a. IP为192.168.0.1的用户jack拥有对数据库datebase的表table的 增删改查权限, ,连接密码为password

grant select,insert,update,delete,create,drop on database.table to jack@192.168.0.1 identified by 'password';

b. 192.168.0.1的用户jack拥有对数据库datebase所有表的所有操作权限,连接密码为password

grant all privileges on datebase.* to jack@192.168.0.1 identified by 'password';

c. 192.168.0.1的用户jack拥有对所有数据库所有表的所有操作权限,连接密码为password

grant all privileges on *.* to jack@192.168.0.1 identified by 'password';

2.linux登录指定数据库

mysql -P'port' -h'IP' -u'username' -p'password';

3.修改数据库访问密码(mysql5.7以后mysql.user表中没有了password字段,而是使用authentication_string来代替)

update mysql.user set authentication_string=password("new password") where User="username" and Host="localhost";

flush privileges;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值