You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
397 B
16 lines
397 B
#!/bin/bash
|
|
|
|
sudo update-crypto-policies --set LEGACY
|
|
|
|
sudo tee /etc/yum.repos.d/mongodb-org-5.0.repo<<EOF
|
|
[mongodb-org-5.0]
|
|
name=MongoDB Repository
|
|
baseurl=https://repo.mongodb.org/yum/redhat/8/mongodb-org/5.0/x86_64/
|
|
gpgcheck=1
|
|
enabled=1
|
|
gpgkey=https://www.mongodb.org/static/pgp/server-5.0.asc
|
|
EOF
|
|
|
|
sudo dnf install -y mongodb-org
|
|
sudo systemctl daemon-reload
|
|
sudo systemctl enable --now mongod |