source: trunk/autoquest-httpmonitor/bin/stopProxy.sh @ 1943

Last change on this file since 1943 was 1374, checked in by pharms, 10 years ago

Initial import.

File size: 1.5 KB
Line 
1#!/bin/sh
2
3#   Copyright 2012 Georg-August-Universit�t G�ttingen, Germany
4#
5#   Licensed under the Apache License, Version 2.0 (the "License");
6#   you may not use this file except in compliance with the License.
7#   You may obtain a copy of the License at
8#
9#       http://www.apache.org/licenses/LICENSE-2.0
10#
11#   Unless required by applicable law or agreed to in writing, software
12#   distributed under the License is distributed on an "AS IS" BASIS,
13#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14#   See the License for the specific language governing permissions and
15#   limitations under the License.
16
17
18
19# This script stops the autoquest-httpmonitor which is in the same folder as
20# this script
21
22
23# Absolute path to this script, e.g. /home/user/bin/stop.sh
24SCRIPT=$(readlink -f $0)
25
26# Find the autoquest-httpmonitor JAR-File and start in the Folder of this Script
27JAR_FILE=`find $(dirname $SCRIPT) -type f -name 'autoquest-httpmonitor-*.jar'`
28
29# Get the ProcessID of the autoquest-httpmonitor which is in the same folder as this script
30PID=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' proxy ' | awk '{print $1}')
31
32if [ -z "$PID" ]; then
33  echo autoquest-httpmonitoring proxy is not running
34else
35  #Kill this autoquest-httpmonitor-process
36  kill "$PID"
37  sleep 2
38  # Check if Process is no more
39  CHECK=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' proxy ' | awk '{print $1}')
40  if [ ! -z "$CHECK" ]; then
41        kill -9 "$CHECK"
42  fi
43  echo autoquest-httpmonitoring proxy stopped
44fi
45
Note: See TracBrowser for help on using the repository browser.