标签:blog root https use htm 数据 res ide word
# mysql -uroot -p #进入数据库
> use mysql;#进入数据库
> select host, user, authentication_string, plugin from user;#查看用户信息
> GRANT ALL ON *.* TO ‘root‘@‘%‘;#授权root用户可以远程登陆
> flush privileges;#立即生效
> ALTER USER ‘root‘@‘%‘ IDENTIFIED WITH mysql_native_password BY ‘123456‘;#修改root用户密码
> FLUSH PRIVILEGES;#立即生效
> exit;#退出
# service mysql restart#重启mysql服务
标签:blog root https use htm 数据 res ide word
原文地址:https://www.cnblogs.com/niuben/p/13595555.html