Teil 3/3: Nginx, Gunicorn und den Rest einstellen

In Allgemein by oesahLeave a Comment

pip install git+https://github.com/django-nonrel/django@nonrel-1.6 git+https://github.com/django-nonrel/djangotoolbox git+https://github.com/django-nonrel/mongodb-engine

Install MongoDB on Debian 8.0

#Step 1:  Import the MongoDB public key 
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10

#Step 2: Generate a file with the MongoDB repository url
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb.list

#Step 3: Refresh the local database with the packages sudo 
apt-get update 

#Step 4: Install the last stable MongoDB version and all the necessary packages on our system sudo 
apt-get install mongodb-org

Leave a Comment