added unset_zone_id context for clients
[voldemort/jeffpc.git] / bin / voldemort-server.sh
blob5ecf0af15dde55849bb78bc63634767acab8b770
1 #!/bin/bash
4 # Copyright 2008-2009 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 [ $# -gt 2 ];
20 then
21 echo 'USAGE: bin/voldemort-server.sh [voldemort_home] [voldemort_config_dir]'
22 exit 1
25 base_dir=$(cd $(dirname $0)/.. && pwd)
27 for file in $base_dir/dist/*.jar;
29 CLASSPATH=$CLASSPATH:$file
30 done
32 for file in $base_dir/lib/*.jar;
34 CLASSPATH=$CLASSPATH:$file
35 done
37 for file in $base_dir/contrib/*/lib/*.jar;
39 CLASSPATH=$CLASSPATH:$file
40 done
42 CLASSPATH=$CLASSPATH:$base_dir/dist/resources
44 if [ -z "$VOLD_OPTS" ]; then
45 VOLD_OPTS="-Xmx2G -server -Dcom.sun.management.jmxremote"
48 java -Dlog4j.configuration=file://$base_dir/src/java/log4j.properties $VOLD_OPTS -cp $CLASSPATH voldemort.server.VoldemortServer $@