0

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

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

如何为该特定模式(例如.myDB1)创建和设置用户名和密码,以便确保本地和服务器的所有内容都相同。

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

提前谢谢。

4

1 回答 1

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

于 2012-05-30T09:22:09.427 回答