0

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

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

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

有任何想法吗?

在此处输入图像描述

4

2 回答 2

0

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

如果您还有其他问题,请告诉我。

于 2013-05-06T22:23:58.923 回答
0

博客文章指出:

# mysql mysql -u root

但是,#符号代表提示。如果将它添加到 bash 命令行前面,bash 会将其后面的所有内容视为注释,因此不会执行它。所以,只要运行

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/永久添加到您的路径中,可以在此处找到解释

于 2013-05-06T22:28:20.910 回答