在Mysql中为导入的模式创建并设置新的用户和密码

时间:2012-05-30 08:27:47

标签: mysql mysqldump

我已将sql转储从服务器导入到本地数据库。

至于现在,root可以自动访问我的新架构。

如何为该特定架构(例如.myDB1)创建和设置用户名和密码,这样我就可以确保本地和服务器的所有内容都相同。

编辑:我想设置例如kito作为用户名和123作为密码。

非常感谢。

1 个答案:

答案 0 :(得分:4)

首先创建一个特定用户,

shell> mysql --user=root mysql

mysql> CREATE USER 'monty'@'localhost' IDENTIFIED BY 'some_pass';

然后将该用户的访问权限授予特定数据库

mysql> grant usage on *.* to monty@localhost identified by 'some_pass';

mysql> grant all privileges on amarokdb.* to monty@localhost ;

价: http://dev.mysql.com/doc/refman/5.1/en/adding-users.html

http://www.debuntu.org/how-to-create-a-mysql-database-and-set-privileges-to-a-user