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.
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!
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
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.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.