zoukankan      html  css  js  c++  java
  • MySQL添加新用户、为新用户分配权限

    1、使用root用户登录mysql

    2、添加具有本地(localhost/127.0.0.1)访问权限的用户

    create user 'newuser'@'localhost' identified by 'password';
    

    3、创建具有远程访问权限的用户

    create user 'newuser'@'%' identified by 'password';
    

    创建之后记得执行下面指令更新权限:

    flush privileges;
    

    3、为新用户分配本地权限,可以指定数据库dbname和表名,可以用*替指所有。

    grant all privileges on `dbname`.* to 'newuser'@'localhost' identified by 'password';
    

    4、为新用户分配远程权限,可以指定数据库dbname和表名,可以用*替指所有。

    grant all privileges on `dbname`.* to 'newuser'@'%' identified by 'password';
    

    分配所有权限

    > grant all privileges on *.* to  'test'@'%'  identified by '123456'
    

    分配好之后之后记得执行下面指令更新权限:

    flush privileges;
    

    5、如果还有问题,可以使用root账号登陆上去查询一下,再看看有没问题。

    use mysql
    

    6、查看user表

    select Host, User, Password from user;
    
  • 相关阅读:
    calc PI
    c# 设置水印,消除水印
    设置windows10 背景颜色
    C# 获取当前路径
    反编译工具
    c# 窗口API,以及全屏锁定一些tips
    c# 几种singleton 实现
    List<T> JIT 分配策略
    软件工程
    mariaDB 安装/卸载+启动/关闭 服务
  • 原文地址:https://www.cnblogs.com/shuai06/p/12397467.html
Copyright © 2011-2022 走看看