Como posso 'initdb' do postgresql no CentOS7.2?

0

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?

    
por sof-03 23.08.2018 / 10:08

1 resposta

0

Infelizmente você tem que usar o binário inidb diretamente:

/usr/pgsql-11/bin/initdb /var/lib/pgsql/11
    
por 23.08.2018 / 10:15