当我在 Windows 10 上运行命令:pg restart 时,出现以下错误:
pg_ctl:未指定数据库目录且未设置环境变量 PGDATA
最佳答案
您需要指定数据库目录的安装位置。
例如
pg_ctl restart -D [insert directory location here]
如果失败,您将需要设置环境变量 PGDATA。
就像是
set $PGDATA = [directory location here]
关于sql - pg_ctl : no database directory specified and environment variable PGDATA unset,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44762526/