Linux下MySQL为用户分配指定数据库
创建用户
> create user 'usertest'@'localhost' identified by 'test_user';
进入mysql数据库
> use mysql;
创建数据库
> create database applog_dw default charset utf8 collate utf8_general_ci;
为用户分配指定数据库权限
> grant all privileges on `applog_dw`.* to 'AppLog'@'localhost';
> flush privileges;
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/24/mysql-assign-specified-database-to-user-under-linux/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
Linux下MySQL为用户分配指定数据库
创建用户
> create user 'usertest'@'localhost' identified by 'test_user';
进入mysql数据库
> use mysql;
创建数据库
> cr……
文章目录
关闭
共有 0 条评论