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

Posted

tags:

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

chkconfig添加服务错误,提示XXX服务不支持


故障原文:

[[email protected] ~]# chkconfig --add memcached

service memcached does not support chkconfig


故障说明:

无法添加提示该错误是在服务的启动脚本里面没添加chkconfig的级别


解决方案:

我们一般在脚本开头加入下面两句就好了

#gedit /etc/init.d/memecached

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

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

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

  等级0表示:表示关机   

  等级1表示:单用户模式   

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

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

  等级4表示:不可用   

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

  等级6表示:重新启动

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


如:

[[email protected] ~]# cat /etc/init.d/memcached 

#!/bin/sh

# chkconfig: 2345 10 90

# description: memcached....

/usr/local/bin/memcached -p 11211 -u root -m 1024m -c 10240 -d -P /tmp/memcached.pid


然后再添加即可

[[email protected] ~]# chkconfig --add memcached

本文出自 “11002498” 博客,请务必保留此出处http://11012498.blog.51cto.com/11002498/1859902

以上是关于chkconfig添加服务错误service memcached does not support chkconfig的主要内容,如果未能解决你的问题,请参考以下文章

service XXX does not support chkconfig

把脚本添加到系统服务里,即用service来调用

添加nginx服务到service的过程

service XXX does not support chkconfig

systemctl添加开机启动

Linux下chkconfig命令详解?(service)