Home > Database > Mysql Tutorial > body text

centos 下安装 mongodb 小纸条

WBOY
Release: 2016-06-07 16:32:44
Original
982 people have browsed it

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

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template