#!/bin/sh##mongod-Startupscriptformongod##chkconfig:-8515#description:Mongodbdatabase.#processname:mongod#Sourcefunctionlibrary./etc/rc.d/init.d/functions#thingsfrommongod.confgettherebymongodreadingit#OPTIONSOPTIONS="--dbpath=/home/data/mongodb/--logpath=/home/data/mongodb/mongodb.log--logappend&"#mongodmongod="/usr/local/mongodb/bin/mongod"lockfile=/var/lock/subsys/mongodstart(){echo-n$"Startingmongod:"daemon$mongod$OPTIONSRETVAL=$?echo[$RETVAL-eq0]&&touch$lockfile}stop(){echo-n$"Stoppingmongod:"killproc$mongod-QUITRETVAL=$?echo[$RETVAL-eq0]&&rm-f$lockfile}restart(){stopstart}ulimit-n12000RETVAL=0case"$1"instart)start;;stop)stop;;restart|reload|force-reload)restart;;condrestart)[-f$lockfile]&&restart||:;;status)status$mongodRETVAL=$?;;*)echo"Usage:$0{start|stop|status|restart|reload|force-reload|condrestart}"RETVAL=1esacexit$RETVAL

/etc/init.d/mongodb