MySQL给新建用户并赋予权限最简单的方法

2023年 4月 29日 32.7k 0

创建一个用户: create user 'oukele'@'%' identified by 'oukele'; 提示下面所列出的信息的话,得刷新一下权限表 The MySQL server is running with the --skip-grant-tables option so it cannot execute this st... 步骤如下

创建一个用户:

create user 'oukele'@'%' identified by 'oukele';

 

提示下面所列出的信息的话,得刷新一下权限表

The MySQL server is running with the --skip-grant-tables option so it cannot execute this st...

步骤如下:

扩展学习

mysql 新建用户并赋予远程访问权限

[root@demo /]# mysql -u root -p #登录服务器数据库

Enter password:123xxx

#1.创建一个新用户 testuser 密码为 testuserpass

CREATE USER 'testuser'@'localhost' IDENTIFIED BY 'testuserpass';

#2.创建数据库testDB

create database testDB;

#3.执行命令为testuser用户添加使用testDB权限

grant all privileges on testDB.* to testuser@localhost identified by 'testuserpass';

#4.执行命令,为testuser用户添加远程访问权限

GRANT ALL PRIVILEGES ON testDB.* TO 'testuser'@'%' IDENTIFIED BY 'testuserpass' WITH GRANT OPTION;

#5.刷新权限表

flush privileges;

以上就是本次知识点的全部内容,更多相关知识点可以在下方相关文章里查找。

相关文章

Oracle如何使用授予和撤销权限的语法和示例
Awesome Project: 探索 MatrixOrigin 云原生分布式数据库
下载丨66页PDF,云和恩墨技术通讯(2024年7月刊)
社区版oceanbase安装
Oracle 导出CSV工具-sqluldr2
ETL数据集成丨快速将MySQL数据迁移至Doris数据库

发布评论