Estoy siguiendo estas instrucciones , sin embargo, solo puedo llegar al paso 17.2.
A pesar de instalar postgresql con éxito a través de
sudo apt-get install postgresql
comando, al correr
initdb -D /usr/local/pgsql/data
Ubuntu me dice que 'initdb' no está instalado. Las instrucciones me dicen que este comando es instalado por
sudo apt-get install postgresql
Entonces, ¿qué está pasando? Puedo hacer que initdb esté disponible instalando postgres-xc, pero creo que postgres-xc es solo una basura extraña de terceros, y no se detalla en las instrucciones. ¿Algunas ideas?
Please note that you can of course also use the upstream tools for creating clusters, such as initdb(1). However, please note that in this case you cannot expect *any* of above pg_* tools to work, since they use different configuration settings and file locations. If in doubt, then do *not* use initdb, but only pg_createcluster. Since merely installing postgresql-X.Y will already set up a default cluster which is ready to work, most people do not need to bother about initdb or pg_createcluster at all.