CentOS7.2中如何`initdb` postgresql?

CentOS7.2中如何`initdb` postgresql?

在 CentOS 6 中我可以使用serviceinitdb postgresql-9.3

service postgresql-9.3 initdb

但是,在CentOS7中,我尝试了以下方法,发现我可以initdb它:

# service postgresql-11 initdb
The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl.
[root@www data]# systemctl initdb postgresql-11
Unknown operation 'initdb'.
[root@www data]# systemctl postgresql-11 initdb
Unknown operation 'postgresql-11'.

我该如何解决这个问题?

答案1

不幸的是你必须直接使用 inidb 二进制文件:

/usr/pgsql-11/bin/initdb /var/lib/pgsql/11

相关内容