Skip to content

Instantly share code, notes, and snippets.

@grenade
Created February 7, 2023 08:37
Show Gist options
  • Save grenade/9c18bc9eb354c20ca483024c1965bc6e to your computer and use it in GitHub Desktop.
Save grenade/9c18bc9eb354c20ca483024c1965bc6e to your computer and use it in GitHub Desktop.
install mongodb compass 1.35 on fedora 37
#!/usr/bin/env bash
# usage: curl -sL https://gist.github.com/grenade/9c18bc9eb354c20ca483024c1965bc6e/raw/install-compass-fedora.sh | bash
sudo curl -Lo /etc/yum.repos.d/mongodb.repo https://gist.github.com/grenade/9c18bc9eb354c20ca483024c1965bc6e/raw/mongodb.repo
sudo dnf update
sudo dnf install mongodb-mongosh mongodb-database-tools mongodb-org-tools
sudo dnf install https://downloads.mongodb.com/compass/mongodb-compass-1.35.0.x86_64.rpm
[mongodb-org]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/9/mongodb-org/6.0/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-6.0.asc
@grenade
Copy link
Author

grenade commented Feb 7, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment