2001-01-12 12:28:43 +08:00
|
|
|
#!/bin/sh
|
2004-02-16 21:34:10 +08:00
|
|
|
|
|
|
|
## $Id$
|
|
|
|
## 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.
|
|
|
|
|
2006-03-29 06:47:00 +08:00
|
|
|
## To change the RMI/Server port:
|
|
|
|
##
|
|
|
|
## SERVER_PORT=1234 jmeter-server
|
|
|
|
##
|
|
|
|
|
2003-08-04 02:20:29 +08:00
|
|
|
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
|
2006-03-29 06:47:00 +08:00
|
|
|
rmiregistry $SERVER_PORT &
|
2003-08-04 02:20:29 +08:00
|
|
|
set CLASSPATH=$OLDCLASSPATH
|
|
|
|
export CLASSPATH
|
2006-03-29 06:47:00 +08:00
|
|
|
`dirname $0`/jmeter -Dserver_port=${SERVER_PORT:-1099} -s "$@"
|