service XXX does not support chkconfig

Posted niuben

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了service XXX does not support chkconfig相关的知识,希望对你有一定的参考价值。

有时候为了方便管理,我们常常喜欢在Linux中将之安装为服务,然后就可以使用服务来管理。

但是当我们运行安装服务的命令时候,假设服务名为myservice

#chkconfig --add myservice

常常会出现

service myservice does not support chkconfig
我们一般在脚本开头加入下面两句就好了
#gedit /etc/init.d/myservice

添加下面两句到 #!/bin/bash 之后。

# chkconfig: 2345 10 90 
# description: myservice ....

其中2345是默认启动级别,级别有0-6共7个级别。

  等级0表示:表示关机   

  等级1表示:单用户模式   

  等级2表示:无网络连接的多用户命令行模式   

  等级3表示:有网络连接的多用户命令行模式   

  等级4表示:不可用   

  等级5表示:带图形界面的多用户模式   

  等级6表示:重新启动

10是启动优先级,90是停止优先级,优先级范围是0-100,数字越大,优先级越低。

以上是关于service XXX does not support chkconfig的主要内容,如果未能解决你的问题,请参考以下文章

FeignLoad balancer does not contain an instance for the service xxx-service

FeignLoad balancer does not contain an instance for the service xxx-service

CentOS使用chkconfig增加开机服务提示service xxx does not support chkconfig的问题解决

chkconfig添加服务错误service memcached does not support chkconfig

Service Fabric 反向代理 - 404 - FABRIC_E_SERVICE_DOES_NOT_EXIST

does not contain method named ‘xxx‘