tag 标签: chkconfig

相关博文
  • 热度 17
    2014-7-25 12:05
    2489 次阅读|
    0 个评论
    首先编写脚本文件,格式如下: ========================== #!/bin/bash # chkconfig: 2345 10 90 # description: # Copyright Marianna Zhu # Tuesday, June 24, 2014 # Function: start () { #    your start pro } stop () { #    your stop pro } case "$1" in     start)     start     ;;     stop)     stop     ;;     restart)     stop     start     ;;     *) esac exit 0 ========================== 然后将此脚本文件拷贝进/etc/init.d; 修改它的权限为755; 执行/sbin/chkconfig --add maria_start.sh 执行/sbin/chkconfig --level 2345 maria_start.sh on 执行/sbin/chkconfig --list 如果是需要自启动服务,在脚本里面添加可能会有些问题,可以采用systemctl命令: systemctl enable sshd.service 另外,单次启动和停止服务是下面的命令: systemctl start sshd.service systemctl disable sshd.service