知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Gentoolinux安装mongoDB

发布时间:2014-09-05 17:45:10作者:知识屋

终于要用Nosql产品了。我们采用的是最近比较火的mongodb,当然不是随大流,而是因为产品中要用到地理空间索引,很适合。
这面是我的配置过程:

1,下载自己需要的版本,我这用的是mongodb-linux-x86_64-2.4.9.tgz 

# wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.4.9.tgz# tar -xvzf mongodb-linux-x86_64-2.4.9.tgz
2,创建mongodb目录,和数据库目录。  
# mv mongodb-linux-x86_64-2.4.9.tgz /opt/mongodb # mkdir -p /opt/mongodb/data
3,增加mongodb用户
# useradd mongod -s /bin/false # chown -R mongod:mongod /data/mongodb 4,编写配置文件在/opt/mongodb下创建目录ext:
#mkdir -p ext
写入:
#!/bin/bash# file name: mongodb.conf# Configuration Options for MongoDB## For More Information, Consider:# - Configuration Parameters: http://www.mongodb.org/display/DOCS/Command+Line+Parameters# - File Based Configuration: http://www.mongodb.org/display/DOCS/File+Based+Configurationdbpath=/opt/mongodb/datalogpath=/opt/mongodb/data/mongodb.loglogappend=true# bind_ip = 127.0.0.1# port = 27017fork = trueauth = true# noauth = true5.测试一下:到这里,我们其实已经可以使用mongodb了,只是没有启动进程。测一下:
#cd /opt/mongodb/bin
这里可以看到mongo(这是mongodb shell), mongod(这是mongodb的进程)

6.启动进程:
在/etc/init.d目录下:
#vi mongodb

写入:
#!/sbin/runscript# Copyright 1999-2012 Gentoo Foundation# Distributed under the terms of the GNU General Public License v2# $Header: $MONGO_HOME=/opt/mongodbdepend() {        use net}start() {        ebegin "Starting mongodb..."        ${MONGO_HOME}/bin/mongod /                --config ${MONGO_HOME}/ext/mongodb.conf        eend $?}stop() {        ebegin "Stoping mongodb..."        ${MONGO_HOME}/bin/mongod /                --shutdown /                --config ${MONGO_HOME}/ext/mongodb.conf        eend $?}restart() {        start        stop}-------------OK,配置完成。
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜