Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #348 for mongodb installation #349

Merged
merged 2 commits into from
Nov 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/installation/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ venv\Scripts\activate # Windows
pip install -r requirements.txt
```

To set up MongoDB on your server :
To set up MongoDB on your server :

```bash
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
echo "deb http://repo.mongodb.org/apt/ubuntu "$(lsb_release -sc)"/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list
sudo apt-get update
sudo apt-get install -y mongodb-org
sudo apt-get install -y mongodb
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can find that with
sudo apt-get install -y mongodb-org

E: There were unauthenticated packages and -y was used without --allow-unauthenticated
comes have you tried this thing

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't get this error. What I got with old version of command is the package was not located . The I checked the link mentioned on the issue page where it says to remove the org. And when I tried that while installing, it worked (removing org works )

sudo service mongod start
```

Expand Down