Last active
March 7, 2024 05:37
-
-
Save sheikhwaqas/9088780 to your computer and use it in GitHub Desktop.
Install MongoDB Server on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download and Install the Latest Updates for the OS | |
apt-get update && apt-get upgrade -y | |
# Set the Server Timezone to CST | |
echo "America/Chicago" > /etc/timezone | |
dpkg-reconfigure -f noninteractive tzdata | |
# Enable Ubuntu Firewall and allow SSH & MySQL Ports | |
ufw enable | |
ufw allow 22 | |
ufw allow 27017 | |
ufw allow 27018 | |
ufw allow 27019 | |
ufw allow 28017 | |
# Install essential packages | |
apt-get -y install git zsh curl htop | |
# Install MongoDB Server | |
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list | |
apt-get update | |
apt-get install mongodb-10gen |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
what's a bad idea? @meawoppl