CentOS7 添加自定义系统服务案例
示例一:
执行脚本/root/project/systemctl/test.sh()
#########################################################################
# File Name : test.sh
# Author : Youner Liu
# Mail : younger_liucn@126.com
# Created Time: Wed 14 Sep 2016 07:13:37 PM CST
# Description :
#########################################################################
#!/bin/bash
function test()
{
count=0
num=3000
while [ ${count} -lt ${num} ]
do
if [ -f /root/project/systemctl/stop ]; then
break
fi
count=$((count+1))
date >> /root/project/systemctl/test.log
echo "hello world ${count}" >> /root/project/systemctl/test.log
sleep 1
done
}
if [ ${1} == "start" ]; then
test;
elif [ ${1} == "stop" ];then
echo "touch /root/project/systemctl/stop"
touch /root/project/systemctl/stop
fi
myservice.service源码(/usr/lib/systemd/system/myservice.service)
[Unit] Description=my service [Service] Type=forking PIDFile=/root/project/systemctl/myservice.pid ExecStart=/usr/bin/sh /root/project/systemctl/test.sh start & ExecStop=/usr/bin/sh /root/project/systemctl/test.sh stop PrivateTmp=true [Install] WantedBy=multi-user.target
测试:
[root@node0 systemctl]# systemctl start myservice.service Job for myservice.service failed because a timeout was exceeded. See "systemctl status myservice.service" and "journalctl -xe" for details. [root@node0 systemctl]# systemctl status myservice.service ● myservice.service - nginx - my service Loaded: loaded (/usr/lib/systemd/system/myservice.service; disabled; vendor preset: disabled) Active: failed (Result: timeout) since Wed 2016-09-14 21:40:46 CST; 44s ago Process: 7459 ExecStart=/usr/bin/sh /root/project/systemctl/test.sh start & (code=killed, signal=TERM) Sep 14 21:39:16 node0 systemd[1]: Starting nginx - my service... Sep 14 21:40:46 node0 systemd[1]: myservice.service start operation timed out. Terminating. Sep 14 21:40:46 node0 systemd[1]: Failed to start nginx - my service. Sep 14 21:40:46 node0 systemd[1]: Unit myservice.service entered failed state. Sep 14 21:40:46 node0 systemd[1]: myservice.service failed. [root@node0 systemctl]# cat /root/project/systemctl/test.log Wed Sep 14 21:39:16 CST 2016 hello world 1 .... Wed Sep 14 21:40:45 CST 2016 hello world 89 Wed Sep 14 21:40:46 CST 2016 hello world 90 [root@node0 systemctl]#
systemctl start myservice.service卡住90秒;然后报出timeout
这个问题应该如何解决那????
整改
脚本/root/project/systemctl/test_start.sh
#########################################################################
# File Name : test_start.sh
# Author : Youner Liu
# Mail : younger_liucn@126.com
# Created Time: Wed 14 Sep 2016 07:13:37 PM CST
# Description :
#########################################################################
#!/bin/bash
function test()
{
count=0
num=3000
echo > /root/project/systemctl/test.log
while [ ${count} -lt ${num} ]
do
if [ -f /root/project/systemctl/stop ]; then
rm -rf /root/project/systemctl/stop;
break
fi
count=$((count+1))
date >> /root/project/systemctl/test.log
echo "hello world ${count}" >> /root/project/systemctl/test.log
sleep 1
done
}
test
脚本/root/project/systemctl/test_stop.sh
######################################################################### # File Name : test_stop.sh # Author : Youner Liu # Mail : younger_liucn@126.com # Created Time: Wed 14 Sep 2016 07:13:37 PM CST # Description : ######################################################################### #!/bin/bash echo "touch /root/project/systemctl/stop" touch /root/project/systemctl/stop
脚本/root/project/systemctl/test.sh
#########################################################################
# File Name : test.sh
# Author : Youner Liu
# Mail : younger_liucn@126.com
# Created Time: Wed 14 Sep 2016 07:13:37 PM CST
# Description :
#########################################################################
#!/bin/bash
if [ ${1} == "start" ]; then
sh /root/project/systemctl/test_start.sh &
elif [ ${1} == "stop" ];then
sh /root/project/systemctl/test_start.sh &
fi
myservice.service源码(/usr/lib/systemd/system/myservice.service)
[Unit] Description=my service [Service] Type=forking #PIDFile=/root/project/systemctl/myservice.pid ExecStart=/usr/bin/sh /root/project/systemctl/test.sh start ExecStop=/usr/bin/sh /root/project/systemctl/test.sh stop PrivateTmp=true [Install] WantedBy=multi-user.target
OK
CentOS7 添加自定义系统服务案例的更多相关文章
- CentOS7利用systemctl添加自定义系统服务【转】
systemctl enable name.service 设置开机启 systemctl disable name.service 删除开机启动指令 systemctl list-units --t ...
- [转]CentOS7利用systemctl添加自定义系统服务
原文:https://www.cnblogs.com/saneri/p/7778756.html CentOS7自定义系统服务 CentOS7的服务systemctl脚本存放在:/usr/lib/sy ...
- CentOS7添加自定义脚本服务
一.CentOS7添加自定义脚本服务说明 在CentOS7下,已经不再使用chkconfig命令管理系统开机自启动服务和条件自定义脚本服务了,而是使用管理unit的方式来控制开机自启动服务和添加自定义 ...
- [实践] Android5.1.1源码 - 在Framework中添加自定义系统服务
前言 本文的方法要修改Android源码.但只要将系统服务写出来,也可以注入system_server进程将系统服务加载到system_server中. 步骤 1. 添加一个aidl文件,我将aidl ...
- Centos7 安装系统服务、开机自启动
Centos7 安装系统服务 1 编写可执行程序 * 这里可以是任意编程语言(C.C++.Java.PHP.Python.Perl ...)编写的程序: 当前假设此程序的执行目录为: /myservi ...
- 在CentOS 7上利用systemctl添加自定义系统服务 /usr/lib/systemd/
在CentOS 7上利用systemctl添加自定义系统服务[日期:2014-07-21] 来源:blog.csdn.net/yuanguozhengjust 作者:yuanguozhengjust ...
- systemctl添加自定义系统服务
[Service] Type=forking ExecStart=绝对路径 ExecStop=绝对路径 ExecReload=绝对路径 以上最精简版,文件/usr/lib/systemd/system ...
- CentOS7 利用systemctl添加自定义系统服务
一.命令systemctl介绍 CentOS 7.0中已经没有service命令,而是启用了systemctl服务器命令,它实际上将 service 和 chkconfig 这两个命令组合到一起. 命 ...
- CentOS7利用systemctl添加自定义系统服务
CentOS7的每一个服务以.service结尾,一般会分为3部分:[Unit].[Service]和[Install] 转载于互联网 [Unit] 部分主要是对这个服务的说明,内容包括Descrip ...
随机推荐
- 108. Convert Sorted Array to Binary Search Tree (building tree with resursion)
Given an array where elements are sorted in ascending order, convert it to a height balanced BST. Fo ...
- python:协程
1,如何实现在两个函数之间的切换? def func1(): print(l) yield print(3) yield def func2(): g =func1() next(g) print(2 ...
- 【[AHOI2006]文本编辑器】
题目 多了区间翻转,之后没了 区间翻转的标记记得在\(kth\)的时候下传 代码 #include<algorithm> #include<iostream> #include ...
- serlvet配置xml和@WebServlet
简单介绍 XML元素不仅是大小写敏感的,而且它们还对出现在其他元素中的次序敏感.例如,XML头必须是文件中的第一项,DOCTYPE声明必须是第二项,而web-app元素必须是第三项.在web-app元 ...
- linux 学习(三) php相关
五 php相关 配置文件位置 /etc/apache2/apache2.conf 1禁止列举目录 sudo vi /etc/apache2/sites-enabled/000-default 删除Op ...
- requireJs sass侧边栏
koala 下载 将sass编译为css文件 1 嵌套 2 $变量 3 @mixin 函数名(参数) 4 @include 函数 调用 5 @import "xxx" 引 ...
- html单选框(性别选择)
在写单选框时,如何实现只能同时只能选择一个radio. 将name设置为一样的数值:代码如下: <input class="myforms-3-2" type="r ...
- 自己平时收集的css、html笔记(适合初级前端攻城狮)
实习了一年时间,陆陆续续记录下来一堆笔记,不过也丢失了一些... 以后会持续更新.扩展,现在把碰到的知识点归纳于此,方便翻阅 一.html部分 1.取消iPhone自动识别数字为拨打号码 <me ...
- katalon安装 appium with mac 遇到的坑
1. Install Homebrew from Terminal: /usr/bin/ruby -e "$(curl -fsSL https://raw.gi ...
- C/C++获取CPU等硬件信息&&屏幕截图
打算练习Socket的时候用用,最近有点小事情,没时间继续完善,先把写的这些代码贴上来,有空了再完善一下. HardwareInfo.h #include <stdio.h> #inclu ...