Postgresql
1. Update
sudo apt-get update2. Install
sudo apt-get install postgresql postgresql-contrib -ysudo -i -u postgrespsqlALTER USER postgres WITH PASSWORD 'new_password';3. Open public network access to database
sudo find / -name "postgresql.conf"Edit
postgresql.conf
listen_addresses = '*'/etc/postgresql/9.5/main/pg_hba.confhost all all 0.0.0.0/0 md5service postgresql restartLast updated
Was this helpful?