Meteor deployed on server, but browser says site can't be reached

So I’ve deployed my meteor app, and have it up and running on an instance.

I’ve used the following environment variables:

MONGO_URL='mongodb://localhost:27017/meteor'
ROOT_URL='http://<my static ip>'
PORT=3000

And I run the program using the following command:
node bundle/main.js

It prints my “Meteor is starting up” console.log command, and then doesn’t error out, but when I navigate to http://< my static ip >:3000 in a browser, I get an ERR_CONNECTION_REFUSED result.

My open mongod terminal says it’s connecting fine to the MongoDB database.

Does anyone have any ideas on how to start debugging this issue?

Thanks.

1 Like

Is port 3000 open on your firewall?