You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like there are a few things that we need to update/adjust for running on Cloud9. Thanks for the report. I'll take a look at all the changes we'll want to add to make sure this workshopper runs correctly there.
@laura-barluzzi I don't know if you're still having the problem but for Cloud9 the correct command removes the --dbpath option. When setting up mongodb for Cloud9, the dbpath is set in one of the steps to be /data in your workspace.
********on Cloud9 environment, so mongod becomes ./mongod*******
The exercise says to start mongo by running:
./mongod --port 27017 --dbpath=./data.
However, this gives the following parsing error on the console: Error parsing command line: Multiple occurrences of option "--dbpath"
It worked on my C9 just running this instead:
./mongod
See your suggestion:
See the error:
See it working:
The text was updated successfully, but these errors were encountered: