added unset_zone_id context for clients
[voldemort/jeffpc.git] / bin / run-class.sh
blobf757fcf8a7af036a04c01a820c50dd927686a9cb
1 #!/bin/bash
4 # Copyright 2008-2013 LinkedIn, Inc
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
19 if [ $# -lt 1 ]; then
20 echo $0 java-class-name [options]
21 exit 1
24 base_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )"/.. && pwd )"
26 for file in $base_dir/lib/*.jar;
28 CLASSPATH=$CLASSPATH:$file
29 done
31 for file in $base_dir/contrib/*/lib/*.jar;
33 CLASSPATH=$CLASSPATH:$file
34 done
36 for file in $base_dir/dist/*.jar;
38 CLASSPATH=$CLASSPATH:$file
39 done
40 CLASSPATH=$CLASSPATH:$base_dir/dist/resources
42 if [ -z "$VOLD_OPTS" ]; then
43 VOLD_OPTS="-Xmx2G -server -Dcom.sun.management.jmxremote "
46 # add '-Dlog4j.debug ' to debug log4j issues.
47 LOG4JPROPERTIES="-Dlog4j.configuration=file://${base_dir}/src/java/log4j.properties"
49 export CLASSPATH
50 java $LOG4JPROPERTIES $VOLD_OPTS -cp $CLASSPATH $@