私はpostgresの初心者です。
Mac用のpostgres.appをインストールしました。psql コマンドをいじっていて、誤って postgres データベースを削除してしまいました。何が入っていたのかわからない。
私は現在、チュートリアルに取り組んでいます: http://www.rosslaird.com/blog/building-a-project-with-mezzanine/
そして、私は立ち往生していますsudo -u postgres psql postgres
エラーメッセージ:psql: FATAL: role "postgres" does not exist
$ which psql
/Applications/Postgres.app/Contents/MacOS/bin/psql
これが出力されるものですpsql -l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
------------+------------+----------+---------+-------+---------------------------
user | user | UTF8 | en_US | en_US |
template0 | user | UTF8 | en_US | en_US | =c/user +
| | | | | user =CTc/user
template1 | user | UTF8 | en_US | en_US | =c/user +
| | | | | user =CTc/user
(3 rows)
それで、私が取るべきステップは何ですか?psql に関連するすべてを削除し、すべてを再インストールしますか?
助けてくれてありがとう!