日期:2011-03-06 00:26:00 来源:本站整理
<b>mysql增添用户、更改密码</b>[MySQL防范]
本文“<b>mysql增添用户、更改密码</b>[MySQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
mysql增添用户办法
成立数据库gamesp
create database gamesp;
增添用户
grant all on 数据库名.* to 用户名@localhost identified by '密码';
grant all on gamesp.* to newuser@localhost identified by 'password';
阐明:
(1)grant all 赋予全部的权限
(2)gamesp.* 数据库 gamesp 中全部的表
(3)newuser 用户名
(4)@localhost 在本地电脑上的 mysql server 服务器
(5)identfified by 'password' 设置密码
删除用户
use mysql
mysql>Delete FROM user Where User="xxxxx" and Host="localhost";
mysql>flush privileges;
改正密码
mysqladmin -uroot -plk317921web password "111111"
以上是“<b>mysql增添用户、更改密码</b>[MySQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论