新建服务自启动

mac2022-06-30  25

原 linux添加service服务,设置自启 转载:2018年10月16日 15:02:00 weixin_34174132 阅读数:2 举个栗子:idea的注册服务 位置及文件:/etc/init.d/idea idea #!/bin/sh # chkconfig: 2345 80 90 # description: idea register server case "$1" in         start)                 sh /usr/local/idea/start.sh         ;;         stop)                 ps -ef |grep idea|grep -v grep|awk '{print $2}'|xargs kill         ;; esac # chkconfig ,# description不要少,设置自启需要。 服务启动:service idea start 服务关闭:service idea shutdown 设置自启:chkconfig idea on 关闭自启:chkconfig idea off  

linux 将自己的服务添加到系统service服务

2018年07月18日 10:39:00 水车306 阅读数 2752   版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 本文链接: https://blog.csdn.net/qq_22889431/article/details/85275839

linux 将自己的服务添加到系统service服务

 

前言

我们在linux上要启动一个程序得时候, 往往都是要写一堆路径, 找到要启动得服务程序, 再用 ./*** 启动服务. 那么我们有没有快速启动方法吗, 答案是肯定得

service 介绍

官方介绍(英文): https://linux.die.net/man/8/service

简单说一下service运行过程. 以iptables为例: service iptables start

首先,sevice 会去/etc/init.d下寻找iptables脚本, start是iptables脚本里的一个参数(你可以去查看networking这个脚本支持的参数)然后告诉系统运行iptables这个脚本,剩下的事情就交给iptables脚本去坐了,事实就是这么简单。

至此,你们应该知道如何添加一个service命令了吧

编写一个脚本,然后把它放在/etc/init.d这个目录下,再用service + 脚本名字 运行即可。如果是要开机自动启动那就得用chkconfig命令了

注意:A、service这个命令往往是即时生效,不用开关机,但是重启后服务会回到默认状态。

B、在init.d里面得脚本是没有后缀名的

 

设置开机自动启动

chkconfig --add test chkconfig test on/off //重启后永久生效

上面的不生效:则使用下面得方法

通过update-rc.d 命名设置开机自启动

cd /etc/init.d sudo update-rc.d test defaults 95

注:其中数字95是脚本启动的顺序号,按照自己的需要相应修改即可。在你有多个启动脚本,而它们之间又有先后启动的依赖关系时你就知道这个数字的具体作用了。该命令的输出信息参考如下:

update-rc.d: warning: /etc/init.d/test missing LSB information update-rc.d: see <http://wiki.debian.org/LSBInitScripts> Adding system startup for /etc/init.d/test ... /etc/rc0.d/K95test -> ../init.d/test /etc/rc1.d/K95test -> ../init.d/test /etc/rc6.d/K95test -> ../init.d/test /etc/rc2.d/S95test -> ../init.d/test /etc/rc3.d/S95test -> ../init.d/test /etc/rc4.d/S95test -> ../init.d/test /etc/rc5.d/S95test -> ../init.d/test

卸载启动脚本的方法:

cd /etc/init.d sudo update-rc.d -f test remove

命令输出的信息参考如下:

Removing any system startup links for /etc/init.d/test ... /etc/rc0.d/K95test /etc/rc1.d/K95test /etc/rc2.d/S95test /etc/rc3.d/S95test /etc/rc4.d/S95test /etc/rc5.d/S95test /etc/rc6.d/K95test

 

常见错误:

1. service启动任务时提示: program-service: unrecognized service

  这是因为我们还没有更改 执行脚本得 的权限为可执行。chmod +x /etc/init.d/serviceName 后重新执行上一个命令

2. 添加到开机启动任务时提示: service *** does not support chkconfig

[root@redis01 test]# chkconfig --add test service test does not support chkconfig 解决方法:(在/etc/init.d/test添加两行注释) #!/bin/sh #添加的两行注释内容如下: # chkconfig: 2345 90 10 # description: test is a persistent key-value database # 注释的意思是,test服务必须在运行级2,3,4,5下被启动或关闭,启动的优先级是90,关闭的优先级是10 [root@redis01 test]# chkconfig --add test [root@redis01 test]# echo $? 0 [root@redis01 test]# chkconfig --list | grep test test 0:off1:off2:on3:on4:on5:on6:off

  在编辑其它类似服务时,也可能出现这种情况,解决方法基本类似

 

 参考:   

 

解决“service XXX does not support chkconfig”的问题

Professor哥 关注 0人评论 9933人阅读 2014-11-19 20:55:25  

为了便于管理linux服务器上的服务,很多人都喜欢用service nginx start这样的方式来管理,也就是系统服务吧这样可以设置自动启动

chkconfig --level 35 nginx on service nginx start|stop|status|reload  

编译安装的软件服务脚本多位于/usr/local/sbin  目录下,例如

cp /usr/local/sbin/rc.radiusd /etc/init.d/radius  

 

等命令

那么很多时候我们在制作完脚本后吧他拷贝到/etc/init.d后用chkconfig --add nginx的时候出现诸如下面的错误

service xxxx does not support chkconfig  

那解决方法如下:在脚本的开头添加下面两行即可:

#chkconfig: - 85 15 #description: nginx is a World Wide Web server. It is used to serve  

井号不要去掉。

 

服务不支持 chkconfig,另外还有一个非常重要的原因就是可执行权限

chmod +x /etc/init.d/php-fpmhttps://blog.51cto.com/professor/1579791

转载于:https://www.cnblogs.com/qijunzifeng/p/11490774.html

最新回复(0)