安装Mongodb

  1. cd /opt
  2. wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.6.tgz --no-check-certificate
  3. tar -zxvf mongodb-linux-x86_64-3.0.6.tgz
  4. mv mongodb-linux-x86_64-3.0.6 mongodb
  5. echo "export PATH=/opt/mongodb/bin:$PATH" >> /etc/profile
  6. source /etc/profile
  7. mkdir /opt/mongodb/data
  8. nohup mongod --dbpath /opt/mongodb/data &

资料