linux中怎样设置mysql用户名和密码

发布网友 发布时间:2022-04-19 18:02

我来回答

1个回答

热心网友 时间:2022-04-08 20:09

1
使用具有数据库管理权限的用户登陆mysql,如root@localehost用户
$
mysql
-uroot
-p'root_password'
2
在mysql中创建用户名和密码
mysql>
create
user
'new_username'@'%'
identified
by
'new_password';
3
配置权限
mysql>
grant
all
privileges
on
*.*
to
'new_username'@'%'
with
grant
option;
4
提交并立即生效
mysql>
commit;
mysql>
flush
privileges;
5
退出mysql
mysql>
quit
完成

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com