mongoDB 2.4.4をCentOS 6.2にインストール
2013年6月18日
mongoDBを設置することとなったのでこれは作業メモ
*最新安定板(現時点で2.4.4)がyumよりインストールできるようなのでyumよりインストール
#10gen repogitoryを追加 vim /etc/yum.repos.d/10gen.repo #以下追加 [10gen] name=10gen Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64 gpgcheck=0 enabled=0 :wq #保存 yum install --enablerepo=10gen install mongo-10gen-2.4.4* #client Installed: mongo-10gen.x86_64 0:2.4.4-mongodb_1 Complete! yum install --enablerepo=10gen install mongo-10gen-server #server Installed: mongo-10gen-server.x86_64 0:2.4.4-mongodb_1 Complete! #あっさり設置完了 #Server 起動 /etc/rc.d/init.d/mongod start forked process: 2282 all output going to: /var/log/mongo/mongod.log child process started successfully, parent exiting [ OK ] #Test mongo MongoDB shell version: 2.4.4 connecting to: test Welcome to the MongoDB shell. For interactive help, type "help". For more comprehensive documentation, see http://docs.mongodb.org/ Questions? Try the support group http://groups.google.com/group/mongodb-user #接続OK
インストールがとても楽でした。
Have your say
You must be logged in to post a comment.