linux利用shell实现守护进程的脚本
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
转载请注明出处:帘卷西风的专栏(http://blog.csdn.net/ljxfblog)
在游戏开发领域,服务器宕机那是家常便饭。本文简单介绍如何利用linux的shell脚本实现简单的守护进程。
Shell代码如下
#!/bin/sh
#添加本地执行路径
export LD_LIBRARY_PATH=./
while true; do
#启动一个循环,定时检查进程是否存在
server=`ps aux | grep CenterServer_d | grep -v grep`
if [ ! "$server" ]; then
#如果不存在就重新启动
nohup ./CenterServer_d -c 1 &
#启动后沉睡10s
sleep 10
fi
#每次循环沉睡10s
sleep 5
done
这样就实现了一个简单的守护进程,来保护进程宕机后,重新启动了。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献9条内容
所有评论(0)