如何登录mysql

如何登录mysql,第1张

1、登陆mysql

mysql -uroot -p

2、创建无密码用户

mysql>create user gateway@'localhost' identified by ''

3、授权

mysql>grant all privileges on *.* to gateway@'localhost'

或者

mysql>grant all privileges on db01.* to gateway@'localhost'

4、mysql -ugateway -p回车即可登陆


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5908456.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-07
下一篇 2023-03-07

发表评论

登录后才能评论

评论列表(0条)

保存