如何获取数据库的用户密码
我正在使用 phpMyAdmin;我创建了一个数据库;现在我想找到我创建的这个新数据库的用户名和密码。请注意,我不是系统管理员,我只是开发人员,但我确实有权在 phpMyAdmin 中在 MySQL 上创建数据库。我的系统管理员是否需要告诉我访问此数据库的用户名和密码,或者我可以通过 telnet 获取它?
I am using phpMyAdmin; I created a database; now I want to locate the username and password for this new database I created. Note, I am not sys admin, I am only the developer, but I do have access to create db on MySQL in phpMyAdmin. Does my sys admin needs to tell me the username and password to access this db, or I can telnet and get it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
phpmyadmin GUI 的步骤:
选择您的数据库名称 ->特权(在这里您可以看到您的特权)。
如果您想更改密码,请单击操作列中的编辑权限图标
Steps for phpmyadmin GUI:
Select your Database name -> Privileges (here you can see your Privileges).
if you want change password click on the edit privileges icon in the action column
在 MySQL 中,创建数据库不会自动创建与之相配的用户。
您必须显式创建用户并授予访问权限。
http://dev.mysql.com/doc/refman/5.1 /en/adding-users.html
In MySQL creating a database doesn't automatically create a user to go with it.
You must explicitly create the user and grant acess.
http://dev.mysql.com/doc/refman/5.1/en/adding-users.html
您可以使用用于登录 phpMyAdmin 的用户/密码来访问该数据库。
您还可以在“权限”>“权限”选项卡下创建新用户(如果您有权限)。添加新用户。在这里,您可以创建具有相同名称和自动授予权限的用户数据库对。
You can access that database with the user/password used to login on the phpMyAdmin.
You can also create new users (if you have permission to) under the tab Privileges > Add new User. Here you can create pairs of user-database with the same name and auto-permission-granting.
在您的情况下,您用于创建数据库的登录名很可能可用于访问数据库。
In your situation, it is highly likely that the login you used to create the database can be used to access the database.