I installed Supabase into a droplet, but cannot access port 3000 remotely in order to interact with the install. Accessing Postgresql works just fine over port 5432 with an “accepting connections” response on the server.
The firewall shows 3000/tcp ALLOW IN anywhere, but <ipv4>:3000 shows “no response”. Any help would be very much appreciated.
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.
Click below to sign up and get $100 of credit to try our products over 60 days!
Unfortunately no response the the command
sudo netstat -plant | grep 3000
but I already know it’s not listening.I have searched to the answer to no avail - can you please let me know how to “listen” to 0.0.0.0:3000 ? Thanks in advance … Peter
Hi there @peterLobster,
As your firewall is already configured correctly, I believe that your instance is configured to listen only on
127.0.0.1:3000
but if you want to access it remotely you need to change the “listen” address to0.0.0.0:3000
.To check if this is true, run the following command:
Let me know how it goes! Regards, Bobby