Próbuję utworzyć bazę danych postgresql.
Kiedy instaluję PostgreSQL, wydałem polecenie:
sudo yum install postgresql postgresql-server
a później zmodyfikowałem plik konfiguracyjny:
sudo vim /var/lib/pgsql/data/pg_hba.conf
i zmodyfikowany jako
local all all trust
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
host all all 0.0.0.0/0 md5
Podczas próby uruchomienia usługi postgresql:
sudo service postgresql initdb
> Data directory is not empty! [FAILED]
sudo chkconfig postgresql on
sudo service postgresql start
Starting postgresql service: [ OK ]
Co powoduje te błędy i jak je naprawić?