在Mac上更改phpMyAdmin密码

时间:2013-05-06 22:17:47

标签: php mysql macos phpmyadmin passwords

如何在Mac 10.7.5上更改phpMyAdmin的密码?

我试过这个:http://en.kioskea.net/faq/630-mysql-reset-the-root-password

但是我收到了这个错误: -bash: syntax error near unexpected token(`

有什么想法吗?

enter image description here

2 个答案:

答案 0 :(得分:0)

这可以帮助你:https://superuser.com/questions/123275/how-do-i-reset-my-root-password-on-mysql-on-a-mac

如果您还有其他问题,请与我们联系。

答案 1 :(得分:0)

博客文章指出:

# mysql mysql -u root

但是,#符号表示提示。如果你在bash命令行前面添加它,bash会认为它背后是evertything作为注释,因此不会执行它。所以,只需运行

mysql mysql -u root

并且应该启动mysql命令。在我们的dbserver上,这是一个启动的mysql命令:

host:~ # mysql mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6171
Server version: 5.1.49-log SUSE MySQL RPM

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

一旦启动,它应该在您的机器上看起来非常相似,根据下面的信息,您应该以这种方式启动它以选择正确的数据库:

/usr/local/mysql/bin/mysql mysql -u root

当然,在命令行中所有这些'mysql'都很混乱:-)为简化您的工作,您应该永久地将/usr/local/mysql/bin/添加到您的路径中,解释can be found here