mysql添加用户,授予root权限
CREATE USER 'lddTest1'@'%' IDENTIFIED BY 'ldd234';
grant all privileges on *.* to 'baihu'@'%' with grant option
flush privileges;
修改用户名
update user set user='test' where user=‘root’;
FLUSH PRIVILEGES;
删除用户
drop user 'test1'@'localhost';
开启mysql 的ssl连接文章来源:https://www.toymoban.com/news/detail-427269.html
show variables like '%ssl%';
SELECT ssl_type, user From mysql.user;
开启
ALTER USER 'imooc'@'%' REQUIRE SSL;
FLUSH PRIVILEGES;
解除
update mysql.user set ssl_type='' where user='root';
FLUSH PRIVILEGES;文章来源地址https://www.toymoban.com/news/detail-427269.html
到了这里,关于mysql添加用户授予root权限和ssl连接的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!