最后更新:

我忘了运行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

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


当前回答

出于开发目的,最简单的方法之一是安装Postgres。App来自官网。可以在Applications文件夹中启动/停止,也可以在终端中使用以下命令:

# Start
open -a Postgres

# Stop
killall Postgres
killall postgres

其他回答

如果您已经使用Homebrew安装,那么下面的命令应该足够了。

brew services restart postgresql

这有时可能行不通。在这种情况下,下面两个命令肯定可以工作:

rm /usr/local/var/postgres/postmaster.pid

pg_ctl -D /usr/local/var/postgres start

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

brew install proctools
sudo pkill -u postgres

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

启动PostgreSQL服务器。

pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start

使用实例关闭PostgreSQL服务器。

pg_ctl -D /usr/local/var/postgres stop -s -m fast

你也可以通过CLI创建一个别名来简化:

alias pg-start='pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start'
alias pg-stop='pg_ctl -D /usr/local/var/postgres stop -s -m fast'

你可以输入“pg-start”启动PostgreSQL,输入“pg-stop”关闭PostgreSQL。

PostgreSQL集成在服务器中。该应用程序可通过Mac OS X v10.8 (Mountain Lion)的app Store获得。这意味着它已经配置好了,您只需要启动它,然后创建用户和数据库。

提示:不要从定义$PGDATA等开始。按原样获取文件位置。

你会有这个文件: /图书馆/服务器/ PostgreSQL / Config / org.postgresql.postgres.plist

开始:

sudo serveradmin start postgres

过程从参数开始:

/ /服务器应用程序。app/Contents/ServerRoot/usr/bin/postgres_real -D /Library/Server/PostgreSQL/Data -c listen_addresses=127.0.0.1,::1 -c log_connections=on -c log_filename=PostgreSQL.log -c log_line_prefix=%t -c log_lock_waits=on -c log_statement=ddl -c logging_collector=on -c unix_socket_directory=/private/var/pgsql_socket -c unix_socket_group=_postgres -c unix_socket_permissions=0770

可以sudo:

sudo -u _postgres psql template1

或连接:

psql -h localhost -U _postgres postgres

您可以查找数据目录、版本、运行状态等

sudo serveradmin fullstatus postgres

已经安装了Postgres与自制程序,这是我所做的启动Postgres,并保持在前台查看日志:

/opt/homebrew/opt/postgresql/bin/postgres -D /opt/homebrew/var/postgres