返回顶部
首页 > 资讯 > 操作系统 >MongoDB-linux-2.4.10-X86_64(centos/linux下安装,启动服务脚本)
  • 706
分享到

MongoDB-linux-2.4.10-X86_64(centos/linux下安装,启动服务脚本)

2024-04-02 19:04:59 706人浏览 独家记忆
摘要

1,下载 从Http://www.mongoDB.org/downloads获取下载版本monGodb-linux-x86_64-2.4.10.tgz2,添加用户groupadd mongod&n

1,下载

 从Http://www.mongoDB.org/downloads获取下载版本monGodb-linux-x86_64-2.4.10.tgz


2,添加用户

groupadd mongod 

useradd -s /sbin/nologin -M -g mongod mongod 

 

3,解压并移动到相应位置

[root@localhost ~]# tar -zxvf mongodb-linux-x86_64-2.4.10.tgz 

[root@localhost ~]# cd mongodb-linux-x86_64-2.4.10

[root@localhost mongodb-linux-x86_64-2.4.10]# ls

bin  GNU-AGPL-3.0  README  THIRD-PARTY-NOTICES

[root@localhost mongodb-linux-x86_64-2.4.10]# cd bin/

[root@localhost bin]# ls

bsondump  mongo  mongod  mongodump  mongoexport  mongofiles  mongoimport  mongooplog  mongoperf  mongorestore  mongos  mongosniff  mongostat  mongotop

[root@localhost ~]# mv mongodb-linux-x86_64-2.4.10 /mongodb


如有必要可设置其目录权限

chmod 755 /mongodb-linux-x86_64-2.4.10/ -R 

如有必要可建立系统目录命令软链接

ln -s /mongodb/bin/mongo /usr/bin/mongo 

ln -s /mongodb/bin/mongod /usr/bin/mongod 


3,手工建立运行目录并授权

mkdir -p date

mkdir -p logs

mkdir -p conf

mkdir -p run

chmod u+w data -R 

chmod u+w logs -R 

chmod u+w run -R 

chown -R mongod:mongod date logs run


4,建立配置文件

vim etc/mongod.conf

[root@localhost conf]# cat mongod.conf 

# Start MongoDB as a daemon on port 8908


port = 8908

fork = true # daemonize it !

journal = true #

rest = true

logappend = true

auth = true


dbpath = /mongodb/data/

logpath = /mongodb/logs/mongod.log

pidfilepath = /mongodb/run/mongod.pid


=======================================

注:如果更多的启动参数,请在你的mongodb主目录bin目录下使用如下命令查看启动参数:

[root@localhost bin]# pwd

/mongodb/bin

[root@localhost bin]# ./mongod --help 

Allowed options:


General options:

  -h [ --help ]               show this usage infORMation

  --version                   show version information

  -f [ --config ] arg         configuration file specifying additional options

  -v [ --verbose ]            be more verbose (include multiple times for more 

                              verbosity e.g. -vvvvv)

  --quiet                     quieter output

  --port arg                  specify port number - 27017 by default

  --bind_ip arg               comma separated list of ip addresses to listen on

                              - all local ips by default

  --maxConns arg              max number of simultaneous connections - 20000 by

                              default

  --logpath arg               log file to send write to instead of stdout - has

                              to be a file, not directory

  --logappend                 append to logpath instead of over-writing

  --pidfilepath arg           full path to pidfile (if not set, no pidfile is 

                              created)

  --keyFile arg               private key for cluster authentication

  --setParameter arg          Set a configurable parameter

  --nounixSocket              disable listening on unix sockets

  --unixSocketPrefix arg      alternative directory for UNIX domain sockets 

                              (defaults to /tmp)

  --fork                      fork server process

  --syslog                    log to system's syslog facility instead of file 

                              or stdout

  --auth                      run with security

  --cpu                       periodically show cpu and iowait utilization

  --dbpath arg                directory for datafiles - defaults to /data/db/

  --diaglog arg               0=off 1=W 2=R 3=both 7=W+some reads

  --directoryperdb            each database will be stored in a separate 

                              directory

  --ipv6                      enable IPv6 support (disabled by default)

  --journal                   enable journaling

  --journalCommitInterval arg how often to group/batch commit (ms)

  --journalOptions arg        journal diagnostic options

  --JSONp                     allow jsONP access via http (has security 

                              implications)

  --noauth                    run without security

  --nohttpinterface           disable http interface

  --nojournal                 disable journaling (journaling is on by default 

                              for 64 bit)

  --noprealloc                disable data file preallocation - will often hurt

                              performance

  --noscripting               disable scripting engine

  --notablescan               do not allow table scans

  --nssize arg (=16)          .ns file size (in MB) for new databases

  --profile arg               0=off 1=slow, 2=all

  --quota                     limits each database to a certain number of files

                              (8 default)

  --quotaFiles arg            number of files allowed per db, requires --quota

  --repair                    run repair on all dbs

  --repairpath arg            root directory for repair files - defaults to 

                              dbpath

  --rest                      turn on simple rest api

  --shutdown                  kill a running server (for init scripts)

  --slowms arg (=100)         value of slow for profile and console log

  --smallfiles                use a smaller default file size

  --syncdelay arg (=60)       seconds between disk syncs (0=never, but not 

                              recommended)

  --sysinfo                   print some diagnostic system information

  --upgrade                   upgrade db if needed


Replication options:

  --oplogSize arg       size to use (in MB) for replication op log. default is 

                        5% of disk space (i.e. large is good)


Master/slave options (old; use replica sets instead):

  --master              master mode

  --slave               slave mode

  --source arg          when slave: specify master as <server:port>

  --only arg            when slave: specify a single database to replicate

  --slavedelay arg      specify delay (in seconds) to be used when applying 

                        master ops to slave

  --autoresync          automatically resync if slave data is stale


Replica set options:

  --replSet arg           arg is <setname>[/<optionalseedhostlist>]

  --replIndexPrefetch arg specify index prefetching behavior (if secondary) 

                          [none|_id_only|all]


Sharding options:

  --configsvr           declare this is a config db of a cluster; default port 

                        27019; default dir /data/configdb

  --shardsvr            declare this is a shard db of a cluster; default port 

                        27018

5,建立启动服务文件

[root@localhost conf]# cat /etc/init.d/mongod 

#!/bin/bash


# mongod - Startup script for mongod


# chkconfig: 35 85 15

# description: Mongo is a Scalable, document-oriented database.

# processname: mongod

# config: /etc/mongod.conf

# pidfile: /var/run/mongo/mongod.pid


. /etc/rc.d/init.d/functions


# things from mongod.conf get there by mongod reading it


# NOTE: if you change any OPTIONS here, you get what you pay for:

# this script assumes all options are in the config file.

BASEDIR="/mongodb"

CONFIGFILE="$BASEDIR/conf/mongod.conf"

OPTIONS=" -f $CONFIGFILE"

SYSCONFIG="/etc/sysconfig/mongod"


# FIXME: 1.9.x has a --shutdown flag that parses the config file and

# shuts down the correct running pid, but that's unavailable in 1.8

# for now.  This can go away when this script stops supporting 1.8.

DBPATH=`awk -F= '/^dbpath=/{print $2}' "$CONFIGFILE"`

PIDFILE=`awk -F= '/^dbpath\s=\s/{print $2}' "$CONFIGFILE"`

mongod=${MONGOD-$BASEDIR/bin/mongod}


MONGO_USER=mongod

MONGO_GROUP=mongod


if [ -f "$SYSCONFIG" ]; then

    . "$SYSCONFIG"

fi


# Handle NUMA access to CPUs (SERVER-3574)

# This verifies the existence of nuMactl as well as testing that the command works

NUMACTL_ARGS="--interleave=all"

if which numactl >/dev/null 2>/dev/null && numactl $NUMACTL_ARGS ls / >/dev/null 2>/dev/null

then

    NUMACTL="numactl $NUMACTL_ARGS"

else

    NUMACTL=""

fi


start()

{

  echo -n $"Starting mongod: "

  daemon --user "$MONGO_USER" $NUMACTL $mongod $OPTIONS

  RETVAL=$?

  echo

  [ $RETVAL -eq 0 ] && touch /var/lock/subsys/mongod

}


stop()

{

  echo -n $"Stopping mongod: "

  killproc -p "$PIDFILE" -d 300 /usr/bin/mongod

  RETVAL=$?

  echo

  [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/mongod

}


restart () {

stop

start

}


ulimit -n 12000

RETVAL=0


case "$1" in

  start)

    start

    ;;

  stop)

    stop

    ;;

  restart|reload|force-reload)

    restart

    ;;

  condrestart)

    [ -f /var/lock/subsys/mongod ] && restart || :

    ;;

  status)

    status $mongod

    RETVAL=$?

    ;;

  *)

    echo "Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"

    RETVAL=1

esac


exit $RETVAL



6,启动服务

[root@localhost logs]# service mongod restart  

Stopping mongod:                                           [失败]

Starting mongod: about to fork child process, waiting until server is ready for connections.

forked process: 1605

all output going to: /mongodb/logs/mongod.log

child process started successfully, parent exiting

                                                           [确定]

[root@localhost logs]# ps -ef | grep mongod

root      1407  1346  0 17:08 pts/1    00:00:00 vim /etc/init.d/mongod

mongod    1564     1  1 17:13 ?        00:00:00 /mongodb/bin/mongod -f /mongodb/conf/mongod.conf

root      1577  1410  0 17:14 pts/2    00:00:00 grep mongod

[root@localhost logs]# lsof -i:8908

-bash: lsof: command not found

[root@localhost logs]# netstat -anpt

Active Internet connections (servers and established)

Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name   

tcp        0      0 0.0.0.0:8908                0.0.0.0:*                   LISTEN      1564/mongod         

tcp        0      0 0.0.0.0:9908                0.0.0.0:*                   LISTEN      1564/mongod         


7,shell进入服务命令行查看

系统默认使用270117端口号,故登录不成功

[root@localhost bin]# ./mongo 

MongoDB shell version: 2.4.10

connecting to: test

Wed May 21 17:28:09.809 Error: couldn't connect to server 127.0.0.1:27017 at src/mongo/shell/mongo.js:145

exception: connect failed


由于改变了端口号,故使用时需要指定端口号

[root@localhost bin]# ./mongo -port 8908  

MongoDB shell version: 2.4.10

connecting to: 127.0.0.1:8908/test

Welcome to the MongoDB shell.

For interactive help, type "help".

For more comprehensive documentation, see

http://docs.mongodb.org/

Questions? Try the support group

http://groups.google.com/group/mongodb-user


查看data目录,自动生成如下文件

[root@localhost mongodb]# cd data/

[root@localhost data]# ll

总用量 507936

-rw------- 1 mongod mongod  67108864 5月  21 17:37 admin.0

-rw------- 1 mongod mongod 134217728 5月  21 17:37 admin.1

-rw------- 1 mongod mongod  16777216 5月  21 17:37 admin.ns

drwxr-xr-x 2 mongod mongod      4096 5月  21 18:01 journal

-rw------- 1 mongod mongod  67108864 5月  21 18:01 local.0

-rw------- 1 mongod mongod  16777216 5月  21 18:01 local.ns

-rwxr-xr-x 1 mongod mongod         5 5月  21 18:01 mongod.lock

-rw------- 1 mongod mongod  67108864 5月  21 18:02 test.0

-rw------- 1 mongod mongod 134217728 5月  21 18:00 test.1

-rw------- 1 mongod mongod  16777216 5月  21 18:02 test.ns

OK,以上情况视为安装成功,服务正常运行


8,基本用户管理--命令区分大小写

http://blog.51yip.com/NoSQL/1575.html 请参考该博文


9,更多shell操作管理命令

请查看http://quanzhong.iteye.com/blog/916237 博文


--结束END--

本文标题: MongoDB-linux-2.4.10-X86_64(centos/linux下安装,启动服务脚本)

本文链接: https://lsjlt.com/news/50790.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • MongoDB-linux-2.4.10-X86_64(centos/linux下安装,启动服务脚本)
    1,下载 从http://www.mongodb.org/downloads获取下载版本mongodb-linux-x86_64-2.4.10.tgz2,添加用户groupadd mongod&n...
    99+
    2024-04-02
  • Linux下Mongodb安装和启动配置
    MongoDB是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。他支持的数据结构非常松散,是类似json的bjson格式,因此可以存储比较复杂的数据类型。Mong...
    99+
    2024-04-02
  • mongodb服务启动脚本
    #!/bin/sh # #mongod - Startup script for mongod # # chkconfig: -&nbs...
    99+
    2024-04-02
  • Linux下如何启动mongodb服务
    这篇“Linux下如何启动mongodb服务”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“...
    99+
    2024-04-02
  • Linux下shell通用脚本启动jar(微服务)
    vim app_jar.sh #!/bin/bash #source /etc/profile # Auth:Liucx # Please change these parameters according to y...
    99+
    2022-06-04
    shell 脚本启动jar linux shell jar
  • Linux下mysql5.6.24(二进制)自动安装脚本
    本文为大家分享了Linux环境下mysql5.6.24自动安装脚本代码,供大家参考,具体内容如下 说明: 一、本脚本仅供测试使用,若正式环境想要使用,需更改脚本的一些参数。 二、使用本脚本之前,需保证lin...
    99+
    2024-04-02
  • Linux下shell通用脚本启动jar
    Linux下shell通用脚本启动jar?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。vim app_jar.sh#!/bin/bash#source /etc/...
    99+
    2023-06-09
  • Linux下rabbitmq启动脚本怎么用
    小编给大家分享一下Linux下rabbitmq启动脚本怎么用,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!记录一个rabbitmq启动脚本,修改部分参数即可用。v...
    99+
    2023-06-27
  • Linux中怎么安装并启动MongoDB
    这篇文章将为大家详细讲解有关Linux中怎么安装并启动MongoDB,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。一、从MongoDB官网下载MongoDB...
    99+
    2024-04-02
  • Linux下服务器重启的脚本命令
    Linux关闭和重启系统一般使用相同的命令可以实现。 在Linux系统下常用在关机/重启命令有shutdown、halt、reboot和init,但每个命令的内部工作过程是不同的。 1、shutdown命令...
    99+
    2022-06-04
    重启 脚本 命令
  • Linux下怎么通过Shell脚本自动备份MongoDB
    本文小编为大家详细介绍“Linux下怎么通过Shell脚本自动备份MongoDB”,内容详细,步骤清晰,细节处理妥当,希望这篇“Linux下怎么通过Shell脚本自动备份MongoDB”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一...
    99+
    2023-06-27
  • linux下mongodb服务启动的方法是什么
    在Linux下启动MongoDB服务有以下几种方法:1. 使用systemd启动:系统中大部分Linux发行版使用systemd作为...
    99+
    2023-09-04
    linux mongodb
  • Linux 添加开机启动方法(服务/脚本)
    系统启动时需要加载的配置文件 /etc/profile、/root/.bash_profile /etc/bashrc、/root/.bashrc /etc/profile.d/*.sh、/etc/profile.d/l...
    99+
    2022-06-04
    Linux 添加开机启动脚本 Linux 开机启动脚本 开机启动脚本
  • linux如何启动mongodb服务器
    linux启动mongodb服务器的方法:1、打开终端;2、输入“cd /usr/local/src/mongodb/bin”命令进入mongodb目录下的bin文件夹;3、最后输入“./mongod [选项参数]”命令启动mongodb服...
    99+
    2024-04-02
  • linux重启java服务的脚本
    目录环境第一步第二步第三步shell脚本最近在一个学习群里面一位老哥问了一个问题,他需要重启一个微服务但是之前没接触过linux,只做过开发。我就在想有多少培训出来工作一两年都没有接...
    99+
    2024-04-02
  • CentOS Tomcat的启动服务脚本怎么写
    CentOS Tomcat的启动服务脚本怎么写,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。 tomcat 自带的 jsvc, 这个工具会启动2个线程,如果应用...
    99+
    2023-06-10
  • linux环境下安装 openOffice 并启动服务 的方法
    一、背景故事    这两天遇到一个大坑,客户要做office 文档在线预览功能,于是乎就要把office文档转换成pdf交给前端显示。       在某度找了一圈都说openOff...
    99+
    2022-06-04
    linux安装openjdk
  • linux bash脚本监控启动停止weblogic服务的脚本写法
    有时,linux系统需要做HA或者类似的功能,需要配置weblogic脚本来启动,停止,查看状态,可以如下方式写 命令形式:Weblogic server start|stop|restart|status...
    99+
    2022-06-04
    脚本 写法 linux
  • CentOS安装MongoDB后无法启动服务的解决办法
    今天按照MongoDB官网的下载向导安装MongoDB以后启动MongoDB的服务发现无法启动.费了一晚上劲,终于搞定了,希望可以帮助有相同困难的同志们。首先,谷歌,度娘都搜索了无数文章,做了无数尝试,都是...
    99+
    2024-04-02
  • Linux安装Postgresql数据库,配置、启动、连接、运行脚本
    1.环境准备 1.1 VM虚拟机 4vcpu 4G内存 20+GB硬盘 系统ubuntu20.04.4 1.2 postgresql数据库安装包source-code源码编译版本 postgresql-14.5.tar.gz 下载地址:Po...
    99+
    2023-09-14
    linux 运维 服务器
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作