我创建了一个gulpfile.js
来启动我的服务器,其内容可以在下面看到。
gulp.task('default', function () {
if(!fs.statSync('/etc/aptly.conf').isFile()){
process.exit();
return;
}
console.info('Starting static file server SimpleHTTPServer on 0.0.0.0:8080');
aptly_static = spawn('python', ['-m', 'SimpleHTTPServer', '8080'], {'cwd': '/opt/aptly/public', 'stdio': 'inherit'});
console.info('Starting Django runserver on 0.0.0.0:8000');
django = spawn('python', ['manage.py', 'runserver', '0.0.0.0:8000'], {'stdio': 'inherit'});
console.info('Starting Aptly api serve on 0.0.0.0:4416');
aptly_api = run('aptly api serve -listen="0.0.0.0:4416"').exec().pipe(gulp.dest('/tmp/aptlylog'));
return watchLess('src/**/*.less')
.pipe(debug())
.pipe(reLess)
.pipe(gulp.dest('dist/dist'));
问题是如果由于任何原因导致较少的预处理器崩溃,则gulpfile.js守护程序退出不良。子流程python manage.py runserver
python -m SimpleHTTPServer
aptly api serve
仍将继续运行。
我不得不通过使用ps -aux | grep runserver
并且类似地通过sudo kill -9 $PID
找到要删除的PID来煞费苦心地终止这些。
如果我的gulpfile.js意外崩溃,有没有办法直接杀死所有进程?
答案 0 :(得分:1)
使用recurive函数向所有子进程发送kill信号。 创建以下./killChilds.sh文件
#!/usr/bin/env bash
function KillChilds {
local pid="${1}" # Parent pid to kill childs
local self="${2:-false}" # Should parent be killed too ?
if children="$(pgrep -P "$pid")"; then
for child in $children; do
KillChilds "$child" true
done
fi
# Try to kill nicely, if not, wait 15 seconds to let Trap actions happen before killing
if ( [ "$self" == true ] && kill -0 $pid > /dev/null 2>&1); then
kill -s TERM "$pid"
if [ $? != 0 ]; then
sleep 15
kill -9 "$pid"
if [ $? != 0 ]; then
return 1
fi
else
return 0
fi
else
return 0
fi
}
使用
在bash中获取文件source ./killChilds.sh
您可以使用它来使用
终止控制台中的整个进程树killChilds $pid
$ pid是主要流程。 您可能希望将文件包含在〜/ .bashrc中,这样您就不必每次都来源。