当前位置:Gxlcms > mysql > centos下安装mongodb小纸条

centos下安装mongodb小纸条

时间:2021-07-01 10:21:17 帮助过:7人阅读

change to root su - ## OR ## sudo -i add yum repo /etc/yum.repos.d/10gen-mongodb.repo [10gen] name=10gen Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686 gpgcheck=0 install mongodb yum install mongo-10gen mongo-10

change to root

su - ## OR ## sudo -i

add yum repo

/etc/yum.repos.d/10gen-mongodb.repo [10gen] name=10gen Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686 gpgcheck=0

install mongodb

yum install mongo-10gen mongo-10gen-server

Configure MongoDB

vi /etc/mongod.conf logpath=/var/log/mongo/mongod.log port=27017 dbpath=/var/lib/mongo

Start MongoDB Server

service mongod start ## OR ## /etc/init.d/mongod start

Start MongoDB on boot

chkconfig --levels 235 mongod on

Test MongoDB Server

mongo use test switched to db test db.foo.find() db.foo.save({a: 1}) db.foo.find()

Open MongoDB Port (27017) on Iptables Firewall

/etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 27017 -j ACCEPT

Restart Iptables Firewall

service iptables restart ## OR ## /etc/init.d/iptables restart

Test remote connection

mongo server:port/database ## Example ## mongo 10.0.10.45:27017/test

nodejs

cd ~ wget https://raw.github.com/isaacs/nave/master/nave.sh chmod +x nave.sh ./nave.sh install 0.10.21 ./nave.sh use 0.10.21 node -v

人气教程排行