A guide to whitelist Superjoin’s IP address in your PostgreSQL server for access.
Superjoin’s IP Address is 34.100.193.122. Whitelist this IP Address in your database and allow TCP/IP connection from this IP in your firewall.
Think of your database like a private party. The “whitelist” is your guest list. Only the IP addresses (unique identifiers for computers on the internet) on this list can “enter the party,” i.e., connect to your database. IPs not on the list will receive the metaphorical “you’re not on the list” and cannot connect.
#1 Speak to your IT Admin
If you’re not hands-on with database management, contacting your IT admin is the best approach
Provide the IP
Request Whitelisting
Test the Connection
Reach Out for Support
#2 Whitelist it yourself
If you’re ready to handle this yourself, here’s how you can whitelist IP addresses for PostgreSQL.
SSH Into Your Server
Edit pg_hba.conf
/etc/postgresql/[version]/main/
. Add host all all 34.100.193.122/32 md5
. Save and close.Edit postgresql.conf
/etc/postgresql/[version]/main/
. Locate the line where listen_addresses is mentioned and add our ip address in it in the following manner - 34.100.193.122 the resultant should look like listen_addresses = '34.100.193.122'
Restart PostgreSQL
sudo service postgresql restart
ensures your settings take effect.Reach Out for Support
#3 Whitelist in Google Cloud (Cloud SQL)
Navigate to Google Cloud Console
Authorize Networks
Reach Out for Support
Whitelisting an IP for your PostgreSQL database doesn’t just bolster security—it ensures that only authorized locations can access your data. Whether you choose to manage this process yourself or coordinate with IT professionals, ensuring your database’s security is crucial. Remember, if you’re ever unsure, consulting with an expert is always a wise decision. Happy data managing!
A guide to whitelist Superjoin’s IP address in your PostgreSQL server for access.
Superjoin’s IP Address is 34.100.193.122. Whitelist this IP Address in your database and allow TCP/IP connection from this IP in your firewall.
Think of your database like a private party. The “whitelist” is your guest list. Only the IP addresses (unique identifiers for computers on the internet) on this list can “enter the party,” i.e., connect to your database. IPs not on the list will receive the metaphorical “you’re not on the list” and cannot connect.
#1 Speak to your IT Admin
If you’re not hands-on with database management, contacting your IT admin is the best approach
Provide the IP
Request Whitelisting
Test the Connection
Reach Out for Support
#2 Whitelist it yourself
If you’re ready to handle this yourself, here’s how you can whitelist IP addresses for PostgreSQL.
SSH Into Your Server
Edit pg_hba.conf
/etc/postgresql/[version]/main/
. Add host all all 34.100.193.122/32 md5
. Save and close.Edit postgresql.conf
/etc/postgresql/[version]/main/
. Locate the line where listen_addresses is mentioned and add our ip address in it in the following manner - 34.100.193.122 the resultant should look like listen_addresses = '34.100.193.122'
Restart PostgreSQL
sudo service postgresql restart
ensures your settings take effect.Reach Out for Support
#3 Whitelist in Google Cloud (Cloud SQL)
Navigate to Google Cloud Console
Authorize Networks
Reach Out for Support
Whitelisting an IP for your PostgreSQL database doesn’t just bolster security—it ensures that only authorized locations can access your data. Whether you choose to manage this process yourself or coordinate with IT professionals, ensuring your database’s security is crucial. Remember, if you’re ever unsure, consulting with an expert is always a wise decision. Happy data managing!