Hi,
it seems the instructions (https://www.odoo.com/documentation/9.0/setup/install.html#packaged-installers) are not valid in a lot of cases:
the instructions read:
$ sudo yum install -y epel-release
$ sudo yum install -y postgresql-server
$ sudo postgresql-setup initdb
$ sudo systemctl enable postgresql
$ sudo systemctl start postgresql
$ sudo yum-config-manager --add-repo=https://nightly.odoo.com/9.0/nightly/rpm/odoo.repo
$ sudo yum install -y odoo
$ sudo systemctl enable odoo
$ sudo systemctl start odoo
On a fresh, minimal and clean Centos 6.7 install, this results in:
1. ok
2. ok
3. sudo: postgresql-setup: command not found
--> the script does not seem to come with the postgres install
find /* | grep postgresql-setup --> no results
so, what are the steps to resolve this and continue the installation?
P.S. the above instructions will get you the old progresql server (8.4)
but even following alternative instructions to install an up to date Pastgresql 9.3 or 9.4, there is no script "postgresql-setup" available
Can you give me an alternative way of installing on CentOS 5.5?