最终更新:
我忘了运行initdb
命令。
< / FINAL UPDATE>
运行此命令
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
但是当我尝试启动rails服务器时,我仍然看到了这一点:
Is the server running on host "localhost" and accepting
TCP/IP connections on port 5432?
更新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
仍然相同“服务器正在运行吗?”消息。
答案 0 :(得分:1641)
Homebrew软件包管理器包含自动启动的launchctl plist。有关更多信息,请运行brew info postgres
。
手动启动:
pg_ctl -D /usr/local/var/postgres start
手动停止:
pg_ctl -D /usr/local/var/postgres stop
自动启动:
“要立即启动postgresql并在登录时重启:”
brew services start postgresql
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
的结果是什么?
pg_ctl -D /usr/local/var/postgres status
的结果是什么?
server.log中是否有任何错误消息?
确保在pg_hba.conf中启用了tcp localhost连接:
# IPv4 local connections:
host all all 127.0.0.1/32 trust
检查postgresql.conf中的listen_addresses和port:
egrep 'listen|port' /usr/local/var/postgres/postgresql.conf
#listen_addresses = 'localhost' # what IP address(es) to listen on;
#port = 5432 # (change requires restart)
清理
Postgres最有可能通过Homebrew,Fink,MacPorts或EnterpriseDB安装程序安装。
检查以下命令的输出以确定安装它的软件包管理器:
brew && brew list|grep postgres
fink && fink list|grep postgres
port && port installed|grep postgres
答案 1 :(得分:313)
如果你想手动启动和停止postgresql(通过自制软件安装),最简单的方法是:
brew services start postgresql
和
brew services stop postgresql
答案 2 :(得分:175)
我几乎有完全相同的问题,你引用了initdb命令作为修复。这也是我的解决方案,但我没有看到有人在这里发布,所以对于那些正在寻找它的人:
initdb /usr/local/var/postgres -E utf8
答案 3 :(得分:80)
另一种方法是使用lunchy gem(launchctl的包装器):
brew install postgresql
initdb /usr/local/var/postgres -E utf8
gem install lunchy
开始postgres:
lunchy start postgres
停止postgres:
lunchy stop postgres
有关详细信息,请参阅:“How to Install PostgreSQL on a Mac With Homebrew and Lunchy”
答案 4 :(得分:76)
如果您的计算机突然重启
首先,您必须删除文件/usr/local/var/postgres/postmaster.pid
然后您可以使用许多其他提到的方法之一重新启动服务,具体取决于您的安装。
您可以通过查看Postgres的日志来验证这一点,看看可能会发生什么:tail -f /usr/local/var/postgres/server.log
答案 5 :(得分:68)
这里是我的2美分:我为postgres pg_ctl创建了一个别名并将其放在.bash_profile中(我的postgresql版本是9.2.4,数据库路径是/Library/PostgreSQL/9.2/data)。
alias postgres.server="sudo -u postgres pg_ctl -D /Library/PostgreSQL/9.2/data"
启动新终端。
然后呢?您可以使用以下命令启动/停止postgresql服务器:
postgres.server start
postgres.server stop
答案 6 :(得分:33)
到目前为止启动/停止/重启postgres的最简单方法启动/停止/重启postgres是通过brew
简单地卸载和/或加载安装附带的launchd配置文件:
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
第一行将停止postgres,第二行将启动它。无需指定任何数据目录等,因为所有内容都在该文件中。
答案 7 :(得分:27)
启动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”来启动Postgres,然后输入“pg-stop”来关闭它。
答案 8 :(得分:22)
答案 9 :(得分:9)
使用自制软件安装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中添加别名。
答案 10 :(得分:7)
我遇到同样的问题,并从第一篇文章中执行所有更新。但检查日志文件后:
/usr/local/var/postgres/server.log
我看到了真正的原因:
FATAL: data directory "/usr/local/var/postgres" has group or world access
DETAIL: Permissions should be u=rwx (0700).
此目录的更改权限后
chmod 0700 /usr/local/var/postgres
postgres服务器已启动。
每次检查日志文件。
答案 11 :(得分:7)
对于快速一次性测试数据库,您可以在前台运行服务器。
在新目录中初始化一个新的postgres数据库
mkdir db
initdb db -E utf8
createdb public
在前台启动服务器(ctrl-C停止服务器)
postgres -d db
在另一个shell会话中,连接到服务器
psql -d public
答案 12 :(得分:4)
此答案的变化:https://stackoverflow.com/a/13103603/2394728
initdb `brew --prefix`/var/postgres/data -E utf8`
答案 13 :(得分:4)
出于开发目的,最简单的方法之一是从official site安装Postgres.app。它可以从Applications文件夹启动/停止,也可以在终端中使用以下命令:
# start
open -a Postgres
# stop
killall Postgres
killall postgres
答案 14 :(得分:4)
PostgreSQL集成在通过Mountain Lion的App Store提供的 Server.app 中。这意味着它已经配置,您只需要启动它,然后创建用户和数据库。
提示:不要从定义$ PGDATA开始,依此类推文件位置。
你会有这个文件: /Library/Server/PostgreSQL/Config/org.postgresql.postgres.plist
开始:
sudo serveradmin start postgres
以参数开始的流程:
/Applications/Server.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_directory = / Library / Logs / PostgreSQL -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
答案 15 :(得分:3)
# remove old database files (If there was any)
$rm -rf /usr/local/var/postgres # install the binary
$ brew install postgresql
# init it
$ initdb /usr/local/var/postgres
# start the postgres server
$ postgres -D /usr/local/var/postgres
# create your database
$ createdb mydb
# Access db.
$ psql mydb
psql (9.0.1)
Type "help" for help.
答案 16 :(得分:2)
如果您没有使用Homebrew并直接从Mac软件包安装它,则在使用所有默认位置,变量等时,这对于PostgreSQL 12来说对我来说是有效的。
$ sudo su postgres
bash-3.2$ /Library/PostgreSQL/12/bin/pg_ctl -D /Library/PostgreSQL/12/data/ stop
答案 17 :(得分:1)
上述答案都没有解决我的问题,尽管收到相同的错误消息。通过删除已锁定且不允许连接的现有postmaster.pid文件,我能够恢复并运行我的实例。
答案 18 :(得分:1)
(macOS 10.13)
sudo -u postgres /Library/PostgreSQL/9.6/bin/pg_ctl start -D /Library/PostgreSQL/9.6/data
或第一个
cd /Library/PostgreSQL/9.6/bin/
答案 19 :(得分:1)
如果您使用brew安装,则下面的命令应该足够了。
brew services restart postgresql
有时候这可能行不通,在这种情况下,以下两个命令肯定应该行
rm /usr/local/var/postgres/postmaster.pid
pg_ctl -D /usr/local/var/postgres start
答案 20 :(得分:1)
docker run --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -d postgres
答案 21 :(得分:1)
对于macports,只需使用load / unload命令和正在运行的服务器的端口名:
sudo port load postgresql96-server
- or -
sudo port unload postgresql96-server
因此您不必记住/Library/LaunchDaemons/org.macports.postgresql96.plist
文件的位置
答案 22 :(得分:1)
$ brew upgrade postgres
为我修好了。
当然,这将升级您的postgres版本并更新/安装任何依赖项。 警告:知道你的postgresql版本可能会发生变化。对我来说,这不是什么大不了的事。
答案 23 :(得分:0)
每次都受到Craig Ringer的启发对我有用:
brew install proctools
sudo pkill -u postgres
proctools包括pkill。如果您没有Brew:https://brew.sh/
答案 24 :(得分:0)
出于完整性考虑:检查您是在Tmux
还是Screen
实例中,从那里开始无法正常工作。
这为我解决了。
答案 25 :(得分:0)
有些极端情况可能对某人有用:
有一个选项,您将用一些PID填充postgres.pid。 但是,如果您重新启动计算机,并且在回归之前再次返回,则其他一些过程将采用该PID。如果发生这种情况,则pg_ctl状态和brew服务询问postgres状态时,都会告诉您它已启动。 只是ps aux | grep并检查它是否真的是postpost
答案 26 :(得分:0)
如果您是使用EnterpriseDB安装程序安装Postgres的,那么@Kenial的建议就是解决方法。
sudo -u postgres pg_ctl -D /Library/PostgreSQL/{version}/data start
sudo -u postgres pg_ctl -D /Library/PostgreSQL/{version}/data stop
答案 27 :(得分:0)
Homebrew是这样!
要启动该服务:
brew services list | grep postgres
要列出它:
brew services stop postgresql
要停止服务:
Like
答案 28 :(得分:0)
对于Mac / OSX,我非常喜欢LaunchRocket,以及我在开发中使用的其他后台服务。
https://github.com/jimbojsb/launchrocket
此网站有很好的安装说明: http://macappstore.org/launchrocket/
这为您的系统偏好设置提供了一个漂亮的屏幕,允许您在登录时启动,重新启动,root,启动。
答案 29 :(得分:0)
我面临着同样的问题。我尝试了所有这些解决方案,但没有一个起作用。
我终于设法通过将Django设置中的PostgreSQL HOST
从localhost
更改为127.0.0.1
来使其工作。
答案 30 :(得分:0)
PostgreSQL有两个主要组件:数据库服务器和客户端。
通过CLI有一个包含的客户端,或者像我一样,您可能会习惯使用phpMyAdmin之类的工具,因此它需要一个单独的GUI客户端。
例如,在macOS上:安装Postgres.app
,距离以下位置约65 MB:https://postgresapp.com/
然后关注these instructions:
$PATH
:sudo mkdir -p /etc/paths.d && echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp
pgAdmin
GUI,其大小约为100 MB,来自:https://www.pgadmin.org/download/pgadmin-4-macos/ 答案 31 :(得分:0)
有时候,这只是您所缺少的版本,您不必要地挠头。
如果您使用的是特定版本的PostgreSQL,例如PostgreSQL 10,那么只需
brew services start postgresql@10
brew services stop postgresql@10
如果您为Homebrew中的特定版本安装了普通版本的brew services start postgresql
,则无法正常使用。
答案 32 :(得分:0)
执行 brew services 后重启 postgresql。
它最适合: brew 服务停止 postgresql 酿造 postgresql 升级数据库 brew 服务启动 postgresql
然后输入:psql
它现在运行这个是在错误之后: psql:错误:无法连接到服务器:没有这样的文件或目录 服务器是否在本地运行并接受 Unix 域套接字“/tmp/.s.PGSQL.5432”上的连接?
升级可能是可选,具体取决于您运行的其他依赖项。
这意味着不是在 mac os 上使用 brew for in 重新启动,而是完全停止 postgres,然后启动 postgres 并连接到您的 psql databaseName。
希望这有用。
答案 33 :(得分:0)
如果您没有使用 Homebrew 安装 Postgres 服务器或使用 .dmg 文件安装,请尝试以下操作:
$ sudo su postgres
bash-3.2$ /Library/PostgreSQL/13/bin/pg_ctl -D /Library/PostgreSQL/13/data/ stop
答案 34 :(得分:-1)
(警告:它将删除您的所有数据库)
停止postgres服务:
酿酒服务停止了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开始