This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
liuxueli-install-standalone…/redis_global_slave/redis_global_slave_daemon
2018-06-21 17:38:32 +08:00

15 lines
365 B
Bash

#!/bin/sh
while [ 1 ]; do
for((i=6380;i<=6389;i++))
do
port_alive=`netstat -antlp | grep $i | wc -l`
if [[ $port_alive -lt 1 ]]; then
cd ./$i/; taskset -c 3-20 redis-server redis$i.conf; cd -
echo program crashed, restart at `date +"%w %Y/%m/%d, %H:%M:%S"` >> RESTART.log
fi
done
sleep 10
done