A go to directory unzip the downloaded compressed package
[Email protected] server$ TAR-ZXVF mongodb.tgz
Two post-installation view:
[[Email protected] mongodb-linux-x86_64-2.4.6]$ CD bin
[[email protected] bin]$ ls
Bsondump mongodump mongoimport Mongorestore mongostat
MONGO Mongoexport Mongooplog MONGOs mongotop
Mongod mongofiles Mongoperf Mongosniff
The Mongod under the bin is the service-side process of MongoDB, MONGO is its client, and other commands are used for MongoDB for other purposes such as MongoDB file export.
Three-boot process:
To set up a good MongoDB storage data files and log files directory, here is established under/data
[[Email protected] mongodb-linux-x86_64-2.4.6]$ CD data
[[email protected] data]$ ls
DB logs
[Email protected] data]$
In the MongoDB installation directory under the bin using Mongod to start MongoDB,./mongod--dbpath= (own installation path)/data/mongodb_data/--logpath= (own installation path)/data/ Mongodb_log/mongodb.log--logappend&
Four check log, found the boot success
Linux under MongoDB installation and startup process