私は有名になっていた
psql: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/var/pgsql_socket/.s.PGSQL.5432"?
createdb
OSX Mountain Lion のターミナルで を実行しようとするとエラーが発生するため、こちらexport PATH=/opt/local/lib/postgresql92/bin:$PATH
の手順に従って、入力すると my .bash_profile
and nowに追加しました(以前はwhich psql
getだった場所)。/opt/local/lib/postgresql92/bin/psql
/usr/bin/psql
ただし、createdb database
今試してみると、知らないパスワードの入力を求められ (デフォルトのユーザー パスワードではありません)、2 回間違って入力すると、次のようになります。
createdb: could not connect to database template1:
FATAL: password authentication failed for user "username"
username
ターミナルのデフォルトのユーザー名はどこですか。私がやろうとしているのは、virtualenv 内にある Django プロジェクトからアクセスできる PostgreSQL データベースを作成することです。PostgreSQL 9.2 を使用しています。私は何を間違っていますか?