5

抱歉这个菜鸟问题,但我不确定我刚刚对 PostgreSQL 做了什么。Postres.app我从http://postgresapp.com/下载并安装了它, 然后我决定不再需要它,而宁愿用 Homebrew 安装 PostgreSQL。所以我Postgres.app从我的应用程序文件夹拖到我的垃圾箱,然后清理我的垃圾箱并重新启动。现在我发现我可以跑步psql从命令行没有问题,我似乎能够创建并连接到 PostgreSQL 数据库等等。所以我的问题是:我的系统上是否已经安装了 PostgreSQL(Mac 10.8.2 - Mountain Lion)?当我安装 Postgres.app 时,它只是为我启动和停止数据库的包装器吗?(如果是这样,为什么要下载 28 MB?)或者我在安装 Postgres.app 时是否安装了 PostgreSQL?

4

1 回答 1

5

根据这个,你已经完成了垃圾箱。您可以浏览它提到的作为安装目录的文件夹列表,如果仍然存在,则将其删除:

  • 二进制文件:/Applications/Postgres.app/Contents/MacOS/bin
  • 标题:/Applications/Postgres.app/Contents/MacOS/include
  • 图书馆:/Applications/Postgres.app/Contents/MacOS/lib
  • 共享库:/Applications/Postgres.app/Contents/MacOS/share
  • 数据:~/Library/Application\ Support/Postgres/var

您还可以检查您的 psql 安装是否正在运行:

$ which psql

/usr/bin/如果它被某些来源(macports,brew)正确安装,它应该来自它,我认为 PostgresApp 使用它自己的 bin 文件夹。

于 2012-11-09T14:13:02.797 回答