最后更新:

我忘了运行initdb命令。


通过运行这个命令

ps auxwww | grep postgres

我看到postgres没有运行

> ps auxwww | grep postgres
remcat          1789   0.0  0.0  2434892    480 s000  R+   11:28PM   0:00.00 grep postgres

这就提出了一个问题:

如何启动PostgreSQL服务器?

更新:

> pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
server starting
sh: /usr/local/var/postgres/server.log: No such file or directory

更新2:

触摸没有成功,所以我做了这个:

> mkdir /usr/local/var/postgres
> vi /usr/local/var/postgres/server.log
> ls /usr/local/var/postgres/
server.log

但是当我试图启动Ruby on Rails服务器时,我仍然看到这个:

服务器是否运行在主机“localhost”上并接受 5432端口上的TCP/IP连接?

更新3:

> pg_ctl -D /usr/local/var/postgres status
pg_ctl: no server running

更新4:

我发现没有任何pg_hba.conf文件(只有文件pg_hba.conf.sample),所以我修改了示例并重命名它(删除.sample)。内容如下:

 # IPv4 local connections:
 host    all             all             127.0.0.1/32           trust
 # IPv6 local connections:
 host    all             all             ::1/128                trust

但我不明白:

> pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
server starting
> pg_ctl -D /usr/local/var/postgres status
pg_ctl: no server running

另外:

sudo find / -name postgresql.conf
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory

更新5:

sudo pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
Password:
pg_ctl: cannot be run as root
Please log in (using, e.g., "su") as the (unprivileged) user that will own the server process.

更新6:

这似乎很奇怪:

> egrep 'listen|port' /usr/local/var/postgres/postgresql.conf
egrep: /usr/local/var/postgres/postgresql.conf: No such file or directory

不过,我确实这么做了:

>sudo find / -name "*postgresql.conf*"
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory
/usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf.sample
/usr/share/postgresql/postgresql.conf.sample

所以我这样做了:

egrep 'listen|port' /usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf.sample
#listen_addresses = 'localhost'        # what IP address(es) to listen on;
#port = 5432                # (change requires restart)
                # supported by the operating system:
                #   %r = remote host and port

所以我试着这样做:

> cp /usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf.sample /usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf
> cp /usr/share/postgresql/postgresql.conf.sample /usr/share/postgresql/postgresql.conf

我仍然得到相同的“服务器正在运行吗?”消息。


当前回答

我也面临着同样的问题。我尝试了所有这些方法,但没有一个奏效。

我最终通过将Django设置中的PostgreSQL HOST从localhost更改为127.0.0.1来让它工作。

其他回答

这招每次都管用,灵感来自克雷格·林格:

brew install proctools
sudo pkill -u postgres

Proctools包含pkill。如果你没有Homebrew: https://brew.sh/

有一些边缘情况可能会对某人有所帮助:

你可以选择postgres。用某个pid填充。 如果你重新启动你的机器,在PostgreSQL再次返回之前,其他进程会获取这个PID。

如果发生这种情况,pg_ctl状态和brew服务都会被问及PostgreSQL状态,会告诉你它已经启动。

只需执行ps aux | grep <yourPID>,并检查它是否真的是PostgreSQL。

当你使用Homebrew安装PostgreSQL时,

brew install postgres

在输出的最后,你会看到这些方法来启动服务器:

To have launchd start postgresql at login:
    ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
Then to load postgresql now:
    launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
Or, if you don't want/need launchctl, you can just run:
    postgres -D /usr/local/var/postgres

我认为这是最好的办法。

为了方便,您可以在.profile文件中添加别名。

我遇到了几乎完全相同的问题,而您引用initdb命令作为解决方案。这也是我的解决方案,但我没有看到任何人张贴在这里,所以对于那些正在寻找它的人:

initdb /usr/local/var/postgres -E utf8

以下是一个简单且总是分叉的解决方案(mac os):

(警告:它会删除你所有的数据库)

停止postgres服务: Brew服务停止postgres 删除“postgres”目录下的所有文件: Rm -rf /usr/local/var/postgres/* 初始化新的数据库系统: initdb /usr/local/var/postgres -E utf8 .使用实例 开始postgres: pg_ctl -D /usr/local/var/postgres -l server.log start