Allow External Connections
Some databases by default do not allow external connections to the DB. If that is the case, please follow these steps:
#
PostgreSQLOpen postgresql.conf
(usually in /etc/postgresql/9.x/main/
) and enable the following:
Also, add the following lines to pg_hba.conf
:
And restart your database to take effect:
#
MySQLOpen my.conf
and comment out bind-address
line:
Then restart MySQL for the change to take effect:
If you are using SSH tunneling and your bastion server is the same as your DB host, then the steps above are not necessary since the DB connection will look like a local connection.