Mongodb 快速上手
MongoDb 官网 安装环境Centos 6.7 x64 安装 Binary安装 curl -o mongo.tar.gz https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel62-3.4.2.tgz tar -xvzf mongodb-linux-x86_64-rhel62-3.4.2.tgz cd mongodb-linux-x86_64-rhel62-3.4.2 bin中的就是mongodb的程序,记得将路径加入环境变量 export PATH=<mongodb-install-directory>/bin:$PATH Yum安装 创建repo文件在/etc/yum.repos.d/ …