MongoDb is installed on Ubuntu after step-by-step instructions on the website
http://docs.mongodb.org/manual/tutorial/install-mongodb-on-linux/
When I try to start mongo, I get the following error. "The mongo program is not currently installed."
However, it is in the catalog.
test@MongoDb1:~$ mkdir -p mongodb
test@MongoDb1:~$ ls
mongodb mongodb-linux-x86_64-2.5.4.tgz
test@MongoDb1:~$ cp -R -n mongodb-linux-x86_64-2.5.4/ mongodb
test@MongoDb1:~$ cd mongodb
test@MongoDb1:~/mongodb$ ls
mongodb-linux-x86_64-2.5.4
test@MongoDb1:~/mongodb$ cd mongodb-linux-x86_64-2.5.4/
test@MongoDb1:~/mongodb/mongodb-linux-x86_64-2.5.4$ ls
bin GNU-AGPL-3.0 README THIRD-PARTY-NOTICES
test@MongoDb1:~/mongodb/mongodb-linux-x86_64-2.5.4$ cd bin/
test@MongoDb1:~/mongodb/mongodb-linux-x86_64-2.5.4/bin$ ls
bsondump mongodump mongoimport mongorestore mongotop
mongo mongoexport mongooplog mongos
mongod mongofiles mongoperf mongostat
test@MongoDb1:~/mongodb/mongodb-linux-x86_64-2.5.4/bin$ mongo
The program 'mongo' is currently not installed. You can install it by typing:
sudo apt-get install mongodb-clients
test@MongoDb1:~/mongodb/mongodb-linux-x86_64-2.5.4/bin$
source
share