How to delete an old version of mongodb and install the new one in cloud9 IDE?

被刻印的时光 ゝ 提交于 2019-12-06 04:59:20

The first thing you have to do is to remove the existing mongodb:

sudo apt-get remove mongodb* --purge

Then we can follow instructions from MongoDB docs.

  1. sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
  2. echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list
  3. sudo apt-get update
  4. sudo apt-get install -y mongodb-org

I hope this helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!