美文网首页
mysql5.6 添加用户

mysql5.6 添加用户

作者: code_nerd | 来源:发表于2017-10-27 09:20 被阅读0次

    mysql添加用户并指定ip和数据库

    //添加用户 % 表示ip任意
    create user 'username'@'%';
    CREATE USER 'user1'@'%' IDENTIFIED BY '07fa533360d9'; 
    
    //修改用户密码
    update mysql.user set password=password('新密码') where user='username';
    
    //mysql 5.7
    update mysql.user set authentication_string=password('test') where user='test';
    
    
    //添加权限
    grant all privileges on 想授权的数据库.* to 'username'@'%';
    grant all privileges on *.* to test@localhost;//授予所有权限
    
    
    //强制刷新内存授权表
    flush privileges;
    

    相关文章

      网友评论

          本文标题:mysql5.6 添加用户

          本文链接:https://www.haomeiwen.com/subject/whqrpxtx.html