You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
241 B
14 lines
241 B
20 years ago
|
#!/bin/sh
|
||
|
|
||
|
# THIS IS ONLY FOR EMERGENCY CASES
|
||
|
# To stop YaCy, use stopYACY.sh
|
||
|
|
||
|
cd `dirname $0`
|
||
|
PID=`fuser yacy.log | awk '{print $2}'`
|
||
|
echo "process-id is " $PID
|
||
|
kill -3 $PID
|
||
|
sleep 1
|
||
|
kill -9 $PID
|
||
|
echo "killed pid " $PID ", YaCy terminated"
|
||
|
|