1. download MongoDB (64-bit) Ghost (installed to/usr/local) tarzxvfmongodb-lin
1. download MongoDB (64-bit)
Http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.4.9.tgz
Or
Http://pan.baidu.com/s/1mgyRB8c
2. install MongoDB (to/usr/local)
tar zxvf mongodb-linux-x86_64-2.4.9.tgzmv mongodb-linux-x86_64-2.4.9 mongodbcd mongodbmkdir dbmkdir logscd binvi mongodb.conf
dbpath=/usr/local/mongodb/dblogpath=/usr/local/mongodb/logs/mongodb.logport=27017fork=truenohttpinterface=true
3. rebind the mongodb configuration file address and access IP address
/usr/local/mongodb/bin/mongod --bind_ip localhost -f /usr/local/mongodb/bin/mongodb.conf
4. automatically start mongodb upon startup
vi /etc/rc.d/rc.local
/usr/local/mongodb/bin/mongod --config /usr/local/mongodb/bin/mongodb.conf
5. restart the system and test whether the system can start automatically.
/Usr/local/mongodb/bin/mongo # view the database list show dbs # Current db version db. version ();