我正在尝试在Mac OS 10.10.5上运行Postgres。
我通过Homebrew安装。我以前只是通过网络下载安装,但我想全面使用Homebrew,所以我将原件移到了垃圾箱。
我跑
True
工作正常。我现在在我的活动监视器中看到postgres并且可以运行
brew services start postgres
看
sudo lsof -i -n -P | grep TCP
我正在尝试添加数据库和一些表,但是当我运行postgres时,我得到了
postgres 807 username 5u IPv6 0x3ba11f77231b4ebb 0t0 TCP [::1]:5432 (LISTEN)
postgres 807 username 6u IPv4 0x3ba11f772808980b 0t0 TCP 127.0.0.1:5432 (LISTEN)
我从bash_profile
中删除了以下行postgres does not know where to find the server configuration file.
You must specify the --config-file or -D invocation option or set the PGDATA environment variable.
我重新启动终端,当我运行哪个postgres时,我看到它指向
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/9.4/bin
我不知道如何与postgres互动或修复内容。
非常感谢任何帮助!