Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
This question was answered by @speelman90:
I was able to figure it out. Not positive if openvpn will always bind my connection to the same ipaddress tho…
This is what I did.
- Connect to openvpn server
- Run ifconfig and ipconfig to get the ipaddress for the server and local machine over vpn
- Edit /etc/postgresql/9.3.main/postgresql.conf. Uncommented and edited line: listen_addrress = ‘[ip address from for the local machine over the vpn], localhost’.
- Edit /etc/postgresql/9.3.main/pg_hba.conf. Added ipv4 record: host all all [ip address of local machine over vpn]/24 md5
- Installed iptables-persistant and ufw. Enabled ufw.
- Added to entries to iptables and saved: iptables -A INPUT -p tcp -s 0/0 --sport 1024:65535 -d [local machine ip over vpn] --dport 5432 -m state --state NEW,ESTABLISHED -j ACCEPT iptables -A OUTPUT -p tcp -s [local machine ip over vpn] --sport 5432 -d 0/0 --dport 1024:65535 -m state --state ESTABLISHED -j ACCEPT
- Rebooted the server.