On s'intéresse à une installation sur Mac OS X.
$ curl -O http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.6.6.tgz
Note: La version courante est 2.6.6, mais vérifiez que vous prenez la bonne version au moment d'installer MongoDB.
$ tar -zxvf mongodb-osx-x86_64-2.6.6.tgz
$ mv mongodb-osx-x86_64-2.6.6 mongodb
# mkdir -p /data/db
$ chown -R $USER /data/db
Pour la procédure officielle d'installation, consultez Install MongoDB on MacOS X.
$ cd mongodb/bin
$ mongod
. Si le répertoire des données n'est pas celui par défaut (/data/db
), on peut le spécifier avec --dbpath
: $ mongod --dbpath <path to data directory>
On peut utiliser un fichier de configuration :
# where data files will reside dbpath=/data/db # where the log file will be stored logpath=/data/logs # how verbose the server will be logging verbose=vvvvv
On démarrer MongoDB avec la commande : $ mongo -f mongod.conf
.
$ brew update $ brew install mongod $ mongod --config /usr/local/etc/mongod.conf
Cette procédure prend en compte Ubuntu 14.04 LTS 64-bits. Elle est basée sur Install MongoDB on Ubuntu.
# apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
# echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list
apt-get
# apt-get update
# apt-get install -y mongodb-org
/var/lib/mongodb
./var/log/mongodb
./etc/mongod.conf
.# service mongod start
# service mongod stop
# service mongod restart