How to install and start MongoDB on Debian? #383
Answered
by
Androz2091
Androz2091
asked this question in
Q&A
-
How to install MongoDB, the database required by Atlanta, on a VPS using Debian 9 or 10? |
Beta Was this translation helpful? Give feedback.
Answered by
Androz2091
Jan 19, 2021
Replies: 1 comment
-
Here is a tutorial 🔧 Installation
Start/Stop/Status
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Androz2091
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is a tutorial 🔧
Installation
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
echo "deb http://repo.mongodb.org/apt/debian buster/mongodb-org/4.4 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
sudo apt-get update
sudo apt-get install -y mongodb-org
Start/Stop/Status
sudo systemctl start mongod
sudo systemctl stop mongod
sudo systemctl status mongod