linux mongodb开机启动(服务的方式)

MongoDB安装

https://blog.csdn.net/junshangshui/article/details/79371316


设置mongodb.service启动服务

cd /lib/systemd/system
vi mongodb.service

    [Unit]  
    Description=mongodb  
    After=network.target remote-fs.target nss-lookup.target  
  
    [Service]  
    Type=forking  
    RuntimeDirectory=mongodb
    RuntimeDirectoryMode=0751
    PIDFile=/var/run/mongodb/mongod.pid
    ExecStart=/usr/mongodb/bin/mongod --config /usr/mongodb/mongodb.conf  
    ExecStop=/usr/mongodb/bin/mongod --shutdown --config /usr/mongodb/mongodb.conf  
    PrivateTmp=false  
  
    [Install]  
    WantedBy=multi-user.target


mongodb.service服务
 设置mongodb.service权限

chmod 754 mongodb.service

系统mongodb.service操作命令

#启动服务
systemctl start mongodb.service
#关闭服务
systemctl stop mongodb.service
#开机启动
systemctl enable mongodb.service
 mongodb.service启动测试


mongodb服务启动测试

service mongodb start

https://www.cnblogs.com/lanbosm/articles/8312725.html

如果上面的不行

使用

#!/bin/sh
#
#mongod - Startup script for mongod
#
# chkconfig: - 85 15
# description: Mongodb database.
# processname: mongod
# Source function library
 
. /etc/rc.d/init.d/functions
# things from mongod.conf get there by mongod reading it
# OPTIONS
OPTIONS=" --dbpath=/home/data/mongodb/ --logpath=/home/data/mongodb/mongodb.log --logappend &"
#mongod
mongod="/usr/local/mongodb/bin/mongod"
lockfile=/var/lock/subsys/mongod
start()
{
  echo -n $"Starting mongod: "
  daemon $mongod $OPTIONS
  RETVAL=$?
  echo
  [ $RETVAL -eq 0 ] && touch $lockfile
}
 
stop()
{
  echo -n $"Stopping mongod: "
  killproc $mongod -QUIT
  RETVAL=$?
  echo
  [ $RETVAL -eq 0 ] && rm -f $lockfile
}
 
restart () {
        stop
        start
}
ulimit -n 12000
RETVAL=0
 
case "$1" in
  start)
    start
    ;;
  stop)
    stop
    ;;
  restart|reload|force-reload)
    restart
    ;;
  condrestart)
    [ -f $lockfile ] && restart || :
    ;;
  status)
    status $mongod
    RETVAL=$?
    ;;
  *)
    echo "Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
    RETVAL=1
esac
exit $RETVAL

将代码保存到 /etc/init.d/mongodb,然后使用 chmod +x /etc/init.d/mongodb 添加执行权限。

# chmod +x /etc/init.d/mongodb
# chkconfig --add mongodb
# chkconfig mongodb on

#service mongodb start

现在,就可以使用 service 命令来控制 mongodb 了:

https://www.jianshu.com/p/9882745767fd

原文地址:https://www.cnblogs.com/shikyoh/p/10683589.html