1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| /usr/pgsql-9.6/bin/postgresql96-setup initdb
systemctl start postgresql-9.6.service systemctl enable postgresql-9.6.service
su postgres psql ALTER USER postgres WITH PASSWORD 'yourpassword'; \q
vi /var/lib/pgsql/9.6/data/postgresql.conf 修改
vi /var/lib/pgsql/9.6/data/pg_hba.conf host all all 0.0.0.0/0 md5
|