Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Detailed explanation of the tutorial for installing MongoDB 4.0 on Ubuntu 18.04

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

First, import the package-managed public key.

Ubuntu package management tools (i.e. dpkg and apt) require publishers to sign packages with GPG keys to ensure package consistency and authenticity.

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4

Then, create MongoDB data source files

echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list

Update data sources.

sudo apt-get update

Some of the addresses in the update are disconnected.

install MongoDB

deb [ arch=amd64 ] http://mirrors.aliyun.com/mongodb/apt/ubuntu bionic/mongodb-org/4.0 multiverse

Error: Unable to locate package mongodb-org, package not found. It may be caused by a previously updated data source not connecting.

Change the data source address of mongdb to Ali's

deb [ arch=amd64 ] http://mirrors.aliyun.com/mongodb/apt/ubuntu bionic/mongodb-org/4.0 multiverse

Re-update the data source

Install mongodb again and wait for installation to complete.

Start mongodb

sudo service mongod start

Check if startup is successful

ps aux | grep mongod

MongoDB installation startup complete.

summary

The above is a detailed explanation of the Ubuntu 18.04 installation MongoDB 4.0 tutorial introduced by Xiaobian. I hope it will help you. If you have any questions, please leave a message to me. Xiaobian will reply to you in time. Thank you very much for your support!

If you think this article is helpful to you, welcome to reprint, please indicate the source, thank you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report