Infelizmente você tem que usar o binário inidb diretamente:
/usr/pgsql-11/bin/initdb /var/lib/pgsql/11
No CentOS 6, posso usar service
para o initdb de postgresql-9.3
:
service postgresql-9.3 initdb
Mas, no CentOS7, eu tentei abaixo, acho que eu posso initdb ele:
# 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'.
Como posso resolver este problema?
Infelizmente você tem que usar o binário inidb diretamente:
/usr/pgsql-11/bin/initdb /var/lib/pgsql/11
Tags postgresql centos