[ACCEPTED]--bash: mongo: command not found AWS-amazon-web-services

Accepted answer
Score: 10

you have to use

$ sudo yum install -y mongo-10gen-server mongodb-org-shell

and then

$ mongo

0

Score: 2

Mongo-10gen-server package doesnt include 4 the component which is required to run "mongo" connecting 3 to database running as mongod. Use:

yum install 2 mongodb-org

This will install all the required 1 components.

More Related questions