Question

Command 'mongo' not found, did you mean: command 'mono' from deb mono-runtime (6.8.0.105+dfsg-3.2)

I successfully installed mongodb from the given instructions on this site server also started successfully with the response :

● mongod.service - MongoDB Database Server
     Loaded: loaded (/lib/systemd/system/mongod.service; enabled; vendor preset>
     Active: active (running) since Mon 2022-09-26 14:23:31 IST; 1min 59s ago
       Docs: https://docs.mongodb.org/manual
   Main PID: 2155 (mongod)
     Memory: 230.6M
        CPU: 1.252s
     CGroup: /system.slice/mongod.service
             └─2155 /usr/bin/mongod --config /etc/mongod.conf

Then I’m tryomg to open mongo shell with the command ‘mongo’ but it showing:

Command 'mongo' not found, did you mean:
  command 'mono' from deb mono-runtime (6.8.0.105+dfsg-3.2)
Try: sudo apt install <deb name>

Why? I searched a lot for this but I didn’t get the solution please help.

Show comments

Submit an answer
Answer a question...

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Try mongosh to open shell in the latest versions of mongoDb. After starting mongodb server with mongo you have to run mongosh command to open mongodb shell it will open the shell in

test

db by default you can change it with using use <dbName> command.

Hi there,

It seems like you’ve only installed the MongoDB server and not the client CLI.

For Ubuntu, you can do that with:

sudo apt install mongodb-org-shell

Then the mongo command should be available as normal.

Let me know how it goes!

Best,

Bobby

Want to learn more? Join the DigitalOcean Community!

Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.