我在RHEL v7(AWS实例)上安装postgres 9

时间:2015-04-25 05:29:07

标签: linux postgresql

我想按照这里的指示: http://www.postgresql.org/download/linux/redhat/

我以root身份运行此命令:

service postgresql-9.4 initdb

这就是我所看到的:

  

service命令仅支持基本的LSB操作(启动,停止,   restart,try-restart,reload,force-reload,status)。对于其他   请尝试使用systemctl。

我做错了什么?或者这是预期的产出?

1 个答案:

答案 0 :(得分:0)

解决方案是卸载Postgres并以特殊方式重新安装。

以下是如何卸载它(以root身份发布):

  yum remove postgresql

以下是如何安装它。以root用户身份发出以下命令:

 yum install postgresql-server
 postgresql-setup initdb
 systemctl enable postgresql.service