整个错误如下:
psql: could not connect to server: No such file or directory. Is the
server running locally and accepting connections on Unix domain socket
“/tmp/.s.PGsql.5432”?
这是我第二次在Mac上通过Homebrew设置Postgresql,我不知道发生了什么.以前,它一直在工作.在某些时候,我必须输入一个搞砸事情的命令.我不确定.现在,每当我从命令行输入sql命令时,我都会收到上述消息.我运行了一个命令来检查服务器是否正在运行,而且显然不是.如果我尝试使用启动服务器
$postgres -D /usr/local/pgsql/data
我收到以下错误:
postgres cannot access the server configuration file
“/usr/local/pgsql/data/postgresql.conf”: No such file or directory
我已经通过Homebrew卸载并重新安装了Postgresql,但问题仍然存在.我完全不知道如何让这个工作.任何帮助,将不胜感激.
答案是
here.
原文链接:https://www.f2er.com/postgresql/192341.html运行此命令以手动启动服务器:
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start