You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running this example locally everything works fine, but as soon as I change the
PG.HOST=XXX.XXX.XXX.XXX to a remote postgres instance the example still trys to connect to the local instance.
The text was updated successfully, but these errors were encountered:
and everything works fine. The record gets inserted into my local Postgres database.
Then I installed a remote instance of Postgres onto the Microsoft Azure Cloud environment and changed
PG.HOST=127.0.0.1 to point to the Microsoft Cloud Postgres IP address. I made sure to set the security policy to be able to connect,
I proved that I can by running pgAdmin 4 and connecting to the remote Postgres Instance.
Upon changing the PG.HOST, When I run my code it seems like it doesnt even use the PG.HOST setting. It always goes locally regardless of what PG.HOST is set to.
I can prove this because when I have the PG.HOST point to the remote Postgres instance and I shut down my local postgres instance I get :
An error occured while creating a new object: error connecting to server: No connection could be made because the target machine actively refused it. (os error 10061)
When running this example locally everything works fine, but as soon as I change the
PG.HOST=XXX.XXX.XXX.XXX to a remote postgres instance the example still trys to connect to the local instance.
The text was updated successfully, but these errors were encountered: