16

I edited the MongoDB config file to store it's data in /home/user/data/mongod.

But data is still written to the old directory, supposedly because the permissions to the new folder are not granted - how can I give MongoDB the necessary permissions for that directory?

Braiam
  • 67,791
  • 32
  • 179
  • 269
deemel
  • 314
  • 1
  • 4
  • 11
  • 1
    How did you edit your configuration? Why do you suppose it's a problem with the permissions? Why do you think that Mongo uses the default directory instead of throwing an error? (This is a way of asking: have you checked the errors log file?) – Andrea Corbellini Feb 18 '13 at 12:12

5 Answers5

35

To change the location used by MongoDB to store its data, you need to:

  1. Edit /etc/mongod.conf and change the line dbpath=/var/lib/mongodb to the path that you desire, e.g. dbpath=/home/user/data/mongodb
  2. Update the permissions of your chosen path to allow the mongodb user to write to it, e.g. chown $USER -R /home/user/data/mongodb
  3. Restart the MongoDB service by running sudo service mongod stop then sudo service mongod start

Note that if you have any data in the old location that you want to keep, you'll need to stop the MongoDB service first, manually move the files and then start the service again.

To stop the MongoDB server use sudo service mongod stop

NOTE 2 to run and manage your mongod process, you will be using your operating system's built-in init system. Recent versions of Linux tend to use systemd (which uses the systemctl command), while older versions of Linux tend to use System V init (which uses the service command).

If you are unsure which init system your platform uses, run the following command:

ps --no-headers -o comm 1

based on the result which will be:

  • systemd - select the systemd (systemctl) tab below. OR
  • init - select the System V Init (service) tab below.

you will execute :

sudo systemctl start mongod

in the first case and

sudo service mongod start

if you are in the second case.

Lorenz Keel
  • 8,905
2

I ran into same issue today and I solved the issue using following steps.

  1. Edit mongod.conf file and edit dbPath variable value.

    sudo -H gedit /etc/mongod.conf
    
  2. Then use following command to start mongod service

    sudo mongod --dbpath "your db path"
    

    I tried to run above command without sudo and I got an error. So use sudo to run the command.

Kulfy
  • 17,696
1

If you start mongodb from the command line you can use the --dbpath argument: mkdir mydata && mongod --dbpath mydata You may run into some issue related with "file exists" or something, it is a well known limitation of MongoDb, more on this here. Just change the disk drive and test if now you don't have that issue again.

Melardev
  • 111
1

You need to restart the daemon for changes to take effect.

sudo service mongodb restart
Braiam
  • 67,791
  • 32
  • 179
  • 269
1

mv the /var/lib/mongodb(the directory you saved data) to the /path and chown mondodb:mongodb /path(the directory you want to save the data)

edit the /etc/mongod.conf

service mongod restart (if cannot connect,check the /path if not contains the mongod.lock,if it exists,delete it and restart again)

user485014
  • 19
  • 1