如何退出postgres的单用户模式?

How to exit from postgres' single-user mode?

我已经进入了postgres的单用户模式

$ sudo -u postgres postgres --single -D /var/db/postgresql/

PostgreSQL stand-alone backend 9.4.11
backend>

我可以使用什么命令来关闭单用户模式并退出回到正常的 $ 命令提示符?


命令 \q 用于退出 psql repl,但同样的命令似乎不适用于 postgres 单用户模式,即

$ sudo -u postgres postgres --single -D /var/db/postgresql/

PostgreSQL stand-alone backend 9.4.11
backend> \q
ERROR:  syntax error at or near "\" at character 1
STATEMENT:  \q

backend>

答案在 Single-User mode 的 Postgresql 文档页面上。关于出口,它指出:

To quit the session, type EOF (Control+D, usually). If you've entered any text since the last command entry terminator, then EOF will be taken as a command entry terminator, and another EOF will be needed to exit.