Signed-off-by: chy <chy@163.com>

This commit is contained in:
chy
2026-02-02 23:31:39 +08:00
commit f6d2459f1f
1499 changed files with 289491 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
pid=`ps ax | grep -i 'ld-report' | grep java | grep -v grep | awk '{print $1}'`
if [ -z "$pid" ] ; then
echo "No ld-report Server running."
exit -1;
fi
kill -9 ${pid}
echo "Send shutdown request to ld-reporte(${pid}) OK"