MongoDB has instructed me to change its command-line arguments:
REST is not enabled. use --rest to turn on.
but this is all I know how to do:
sudo service mongodb start
Where should I apply this configuration change?
|
MongoDB has instructed me to change its command-line arguments:
but this is all I know how to do:
Where should I apply this configuration change? |
||||
|
|
|
The various parameters that you wish to enable or disable can be set in the
config file. All the command-line parameters can be mentioned in that file, and setting the values to true or false. In your case, add a line as follows, preferably somewhere after the dbpath is mentioned.
After each change to the configuration file, you need to restart the server to take effect:
For more options, take a look at the documentation. |
|||||
|
|
In order to turn on rest just type the following in your Terminal(Linux):
Thats it. If you want to allow other clients to use your mongodb via browser just type
|
||||
|
|