Ubuntu 自定义服务 与设置开机启动

1. 基本步骤

  • 进入 /etc/init.d
  • 建立一个脚本mongodb文件,并赋予755权限chmod 775 mongodb

 

#!/bin/bash
### BEGIN INIT INFO
# Provides:          mongod
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6 
# Short-Description: Start mongod at boot time
# Description:       Enable service provided by mongod.
### END INIT INFO

start() 
{
    /usr/bin/mongod --config /etc/mongod.conf &
    exit 0;
}

stop() 
{
   /usr/bin/mongod --config /etc/mongod.conf --shutdown
}

case "$1" in
start)
    start
    ;;

stop)
    stop
    ;;

restart)
    stop
    start
    ;;

*)
    echo "Usage: $0 {start|stop|restart}"
    exit 0
    ;;

esac
exit 0
  • 加入到系统启动中
// 添加到系统启动
update-rc.d mongodb defaults 
// 从系统启动中删除
update-rc.d mongodb remove
  • 启动命令
service mongodb start
service mongodb stop

设置服务开启启动

systemctl is-enabled servicename.service #查询服务是否开机启动

systemctl enable *.service #开机运行服务

systemctl disable *.service #取消开机运行

systemctl start *.service #启动服务

systemctl stop *.service #停止服务

systemctl restart *.service #重启服务

systemctl reload *.service #重新加载服务配置文件

systemctl status *.service #查询服务运行状态

转载于:https://my.oschina.net/eboy/blog/3019794

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值