1, download mongodb,mongodb-linux-x86_64-2.4.9.tgz. Unzip, renamed to MongoDB.
2,mongodb is similar to green software and can be copied directly to the appropriate directory for use. Cut to/usr/local/webserver.
MV mongodb/usr/local/webserver/
3, create the Data folder to store the database, create the logs file, and store the MongoDB directory.
Mkdir-p/data0/mongodb/datatouch/data0/mongodb/logs
4, start MongoDB, no password Authentication login
/usr/local/webserver/mongodb/bin/mongod--dbpath=/data0/mongodb/data--logpath=/data0/mongodb/logs--logappend --port=27017--fork
5, Login MongoDB backstage, Operation MongoDB
/usr/local/webserver/mongodb/bin/mongo
6, set MongoDB on Start
Adds a start instruction to the last line of/etc/rc.local.
/usr/local/webserver/mongodb/bin/mongod--dbpath=/data0/mongodb/data--logpath=/data0/mongodb/logs--logappend --port=27017
7, add the MONGO directive to the environment variable without using an absolute path each time.
Add the directory in the path of/etc/profile
Path= $PATH:/usr/local/webserver/mongodb/bin
Installing MongoDB under Linux