码迷,mamicode.com
首页 > 数据库 > 详细

mysql用户及数据库的创建及权限的更改

时间:2015-12-29 19:37:03      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:mysql

创建数据库

create database discuz default character set utf8 collate utf8_general_ci;


创建用户

create user ‘discuz‘@‘localhost‘ identified by ‘discuz‘;


更改用户访问数据库的权限

grant all on discuz.* to ‘discuz‘@‘localhost‘;


更改非本机使用数据库用户连接数据库的权限的更改

update mysql.user set host=‘%‘ where host=‘localhost‘;

grant all privileges on *.* to ‘root‘@‘%‘ with grant option;

flush privileges;


mysql用户及数据库的创建及权限的更改

标签:mysql

原文地址:http://ting2junshui.blog.51cto.com/975290/1729670

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!