mysql5.7 修改密码,修改权限
1.修改数据库对指定用户和ip权限
a. IP为192.168.0.1的用户jack拥有对数据库datebase的表table的 增删改查权限, ,连接密码为password
1 | 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;
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步