Reputation: 11849
I would like to use a GUI instead of just the Mongo shell on my cloud nine instance. Is there a way I can connect a tool like Mongo chef to the Mongo server that's running on cloud nine?
Upvotes: 0
Views: 577
Reputation: 3832
Currently Cloud9 workspaces only forward one port, port 8080. So in order for your GUI app to gain access to your mongodb, it will have to be listening on 0.0.0.0:8080
and you have set your application url to public (if you don't know how to do that, just click on 'Share' near the top left of the IDE, and click 'Public' next to 'Application').
However, the problem is that since you're also probably running your application on port 8080, you'll have to do some housekeeping and use different ports for Mongodb while your app is running and when you need to access the db using your GUI app.
Upvotes: 1