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?
15 Answers
To change the location used by MongoDB to store its data, you need to:
- Edit
/etc/mongod.confand change the linedbpath=/var/lib/mongodbto the path that you desire, e.g.dbpath=/home/user/data/mongodb - Update the permissions of your chosen path to allow the
mongodbuser to write to it, e.g.chown $USER -R /home/user/data/mongodb - Restart the MongoDB service by running
sudo service mongod stopthensudo 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 mongodin the first case and
sudo service mongod startif you are in the second case.
5You 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.
Edit mongod.conf file and edit dbPath variable value.
sudo -H gedit /etc/mongod.confThen use following command to start mongod service
sudo mongod --dbpath "your db path"I tried to run above command without
sudoand I got an error. So usesudoto 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