How to change the location that MongoDB uses to store its data?

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?

1

5 Answers

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 2to 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.

5

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

sudo service mongodb restart
0

If you start mongodb from the command line you can use the --dbpath argument:mkdir mydata && mongod --dbpath mydataYou 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.

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.

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)

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like