MySql 授权登录
程序员文章站
2023-12-24 17:25:57
...
MySql 授权登录
mysql -u root use mysql; update user set password=PASSWORD("123456") where user='root'; grant all on *.* to root@"%" identified by "123456";