Move MongDB database

find mongodb config file
sudo find / -name mongod.conf -print

get dbPath from that file

stop mongodb
service mongod stop

check mongodb is not running
sudo systemctl status mongod

copy all files from dbPath to new dbPath
cp -r old_dbPath new_dbPath

chown of new dbPath
sudo chown -R mongodb:mongodb new_dbPath

change dbPath in mongodb config file to new_dbPath

start mongodb
sudo systemctl start mongod

Comments

Popular posts from this blog

Useful aliases

Enable Search Engine Friendly (Pretty URLs) in Yii2