Linux/mongodbインストール/本体
提供: 初心者エンジニアの簡易メモ
レポジトリファイルを追加(64bit
vi /etc/yum.repos.d/10gen-mongodb.repo
[10gen] name=10gen Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64 gpgcheck=0
最新インストール
yum install mongo-10gen mongo-10gen-server
起動
/etc/rc.d/init.d/mongod start
自動起動
/sbin/chkconfig mongod on /sbin/chkconfig --list mongod
バージョン確認
mongod --version
管理画面確認
http://localhost:28017