centos 下安装 mongodb 小纸条
Jun 07, 2016 pm 04:32 PMchange 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
原文地址:centos 下安装 mongodb 小纸条, 感谢原作者分享。

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

SCP usage tips-recursively exclude files

The difference between nodejs and vuejs

How to open the linux terminal shortcut key

How to download 360 Secure Browser on your computer

Nodejs front-end and back-end distinction

What are the classifications of linux systems?
