CentOS7.2에서 postgresql을 `initdb`하는 방법은 무엇입니까?

CentOS7.2에서 postgresql을 `initdb`하는 방법은 무엇입니까?

serviceCentOS 6에서는 initdb를 사용할 수 있습니다 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

관련 정보