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.
Hey there,
If you’ve already added your Droplet to the trusted sources of the database cluster, it sounds like there might also be a firewall on the Droplet itself blocking the connection.
To check and resolve this, you’ll need to make sure port 25060 for outgoing TCP connections is open via the Droplet’s Firewall.
Follow these steps to open the necessary port:
https://docs.digitalocean.com/products/networking/firewalls/how-to/configure-rules/#create-new-rules
ufw (Uncomplicated Firewall) on the Droplet:If you have a firewall installed on the Droplet, like ufw, you can open the outgoing port with this command:
sudo ufw allow out to any port 25060 proto tcp
However, if you don’t have a firewall enabled on your Droplet, this step isn’t necessary since outgoing connections are allowed by default. You can check if ufw is active with:
sudo ufw status
If it shows inactive, no further action is needed for outgoing connections.
Let me know how it goes!
- Bobby