postgresql启动数据库

发布于 2024-11-25 06:00:07 字数 919 浏览 1 评论 0原文

我正在运行 postgresql (/opt/local/lib/postgresql90/bin)。

数据库设置@/Users/demet8/postgres/data。

我检查以确保 postgresql 正在使用

ps aux | 运行。 grep postgres

demet8 9851 0.0 0.1 614276 1184 ?? Ss 12:40PM 0:00.24 postgres:autovacuum 启动程序进程
demet8 9850 0.0 0.0 614020 436 ?? Ss 12:40PM 0:00.91 postgres: wal writer 进程
德梅特8 9849 0.0 0.0 614020 496 ?? Ss 12:40PM 0:01.22 postgres:写入进程
demet8 9847 0.0 0.1 614020 2248 s002 S 12:40PM 0:00.61 /opt/local/lib/postgresql90/bin/postgres -D /Users/demet8/postgres/data demet8 11127 0.0 0.0 599820 468 s002 S+ 2:05PM 0:00.00 grep postgres 德梅特8 9852 0.0 0.0 610092 368 ?? Ss 12:40PM 0:00.26 postgres:统计收集器进程

我回到:/opt/local/lib/postgresql90/bin &现在尝试使用 ./pg_ctl start 启动数据库。这是我收到的错误消息:

pg_ctl: no databasedirectory specified andenvironmentvariable PGDATA unset 尝试“pg_ctl --help”以获取更多信息。

关于我可能做错的事情的任何建议。我在网上搜索答案和我还没有找到解决办法。

I have postgresql running (/opt/local/lib/postgresql90/bin).

The data base is set up @ /Users/demet8/postgres/data.

I check to make sure postgresql is running with

ps aux | grep postgres

demet8 9851 0.0 0.1 614276 1184 ?? Ss 12:40PM 0:00.24 postgres: autovacuum launcher process
demet8 9850 0.0 0.0 614020 436 ?? Ss 12:40PM 0:00.91 postgres: wal writer process
demet8 9849 0.0 0.0 614020 496 ?? Ss 12:40PM 0:01.22 postgres: writer process
demet8 9847 0.0 0.1 614020 2248 s002 S 12:40PM 0:00.61 /opt/local/lib/postgresql90/bin/postgres -D /Users/demet8/postgres/data
demet8 11127 0.0 0.0 599820 468 s002 S+ 2:05PM 0:00.00 grep postgres
demet8 9852 0.0 0.0 610092 368 ?? Ss 12:40PM 0:00.26 postgres: stats collector process

I go back into: /opt/local/lib/postgresql90/bin & now try to start the db with ./pg_ctl start. This is the error msg I get:

pg_ctl: no database directory specified and environment variable PGDATA unset
Try "pg_ctl --help" for more information.

Any suggestions on to what I can be doing wrong. I googled around the web for answers & I haven't found a solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暮年慕年 2024-12-02 06:00:07
$ su -
# su - postgres

从那里继续。

$ su -
# su - postgres

Proceed from there.

咋地 2024-12-02 06:00:07

我知道这个问题已经得到解答,但是,如果您是 Postgres 新手并看到类似问题,请尝试以下命令来解决错误 pg_ctl:未指定数据库目录且环境变量 PGDATA 未设置 尝试“pg_ctl --help”更多信息。

1. su - postgres
2. find / -name pg_ctl --> gives you the location where pg_ctl present, in my case it is there in `/usr/lib/postgresql/11/bin/`
3. /usr/lib/postgresql/11/bin/pg_ctl -D /var/lib/postgresql/11/main

I know this question is already answered but, if you are new to Postgres and seeing similar issues, try the below commands to resolve the error pg_ctl: no database directory specified and environment variable PGDATA unset Try "pg_ctl --help" for more information.

1. su - postgres
2. find / -name pg_ctl --> gives you the location where pg_ctl present, in my case it is there in `/usr/lib/postgresql/11/bin/`
3. /usr/lib/postgresql/11/bin/pg_ctl -D /var/lib/postgresql/11/main
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文