我是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
$哪个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 相关的所有内容并重新安装所有内容?
谢谢你们的帮助!