#!/bin/sh

##   $Id: jmeter-server 389618 2006-03-28 22:47:00Z sebb $
##   Copyright 2001-2004 The Apache Software Foundation
## 
##   Licensed under the Apache License, Version 2.0 (the "License");
##   you may not use this file except in compliance with the License.
##   You may obtain a copy of the License at
## 
##       http://www.apache.org/licenses/LICENSE-2.0
## 
##   Unless required by applicable law or agreed to in writing, software
##   distributed under the License is distributed on an "AS IS" BASIS,
##   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
##   See the License for the specific language governing permissions and
##   limitations under the License.

##   To change the RMI/Server port:
##
##   SERVER_PORT=1234 jmeter-server
##

set OLDCLASSPATH=$CLASSPATH
export OLDCLASSPATH
set CLASSPATH=`dirname $0`/../lib/ext/ApacheJMeter_core.jar:`dirname $0`/../lib/jorphan.jar:`dirname $0`/../lib/logkit-1.2.jar
export CLASSPATH
rmiregistry $SERVER_PORT &
set CLASSPATH=$OLDCLASSPATH
export CLASSPATH
`dirname $0`/jmeter -Dserver_port=${SERVER_PORT:-1099} -s "$@"
