Chinaunix首页 | 论坛 | 博客
  • 博客访问: 471791
  • 博文数量: 145
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1139
  • 用 户 组: 普通用户
  • 注册时间: 2014-01-14 16:47
个人简介

路漫漫其修远兮,吾将上下而求索

文章分类

全部博文(145)

文章存档

2016年(10)

2015年(15)

2014年(120)

我的朋友

分类: Mysql/postgreSQL

2014-01-15 10:01:52

为Mysql添加用户名和密码
1,用户root用户登陆

点击(此处)折叠或打开

  1. D:\Program Files\MySQL\MySQL Server 5.0\bin>mysql -h127.0.0.1 -uroot -p123456
  2.     Welcome to the MySQL monitor. Commands end with ; or \g.
  3.     Your MySQL connection id is 10
  4.     Server version: 5.0.41-community-nt MySQL Community Edition (GPL)

  5.     Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

  6.     mysql>

2,添加一个本地用户,名为username密码为password

点击(此处)折叠或打开

  1. GRANT ALL PRIVILEGES ON *.* TO username@localhost IDENTIFIED BY 'password' WITH GRANT OPTION;

3,添加一个远程用户,名为mindworks密码为mindworks

点击(此处)折叠或打开

  1. GRANT ALL PRIVILEGES ON *.* TO mindworks@"%" IDENTIFIED BY 'mindworks' WITH GRANT OPTION;

4,添加完用户后要刷新Mysql服务。


点击(此处)折叠或打开

  1. flush privileges;


阅读(1771) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~