Homebrew を使用して OS X Lion に MySQL をインストールし、インストール後の手順に従いました。次に、データベースを作成する必要があります。
$ mysql -u peeja
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 22
Server version: 5.5.25a Source distribution
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> CREATE DATABASE `new_db` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'new_db'
どうしたのuser ''@'localhost'
?なぜuser 'peeja'@'localhost'
ですか?そして、なぜこの Just Work™ がインストール ユーザーにとって機能しないのでしょうか? それがHomebrewの設定方法ではありませんか?
それとも私は何か間違ったことをしましたか?