mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 09:11:59 -07:00
8 lines
363 B
Bash
8 lines
363 B
Bash
#!/bin/bash
|
|||
|
|
curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
|
||
|
|
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
|
||
|
|
sudo apt-get update
|
||
|
|
sudo apt-get install -y mongodb-org
|
||
|
|
sudo service mongod start
|
||
|
|
sudo systemctl enable mongod
|