2006-04-10 21:04:06 +00:00
|
|
|
# Shell script to starat RSE communications server
|
|
|
|
# This script will start the datastore listening on an available socket
|
|
|
|
export serverpath=.;
|
2006-04-21 21:42:15 +00:00
|
|
|
export CLASSPATH=.:dstore_extra_server.jar:dstore_core.jar:dstore_miners.jar:clientserver.jar:$CLASSPATH;
|
2006-04-12 16:47:19 +00:00
|
|
|
if [ $1 ]
|
2006-04-21 21:42:15 +00:00
|
|
|
then java -DA_PLUGIN_PATH=$serverpath -DDSTORE_TRACING_ON=false -Dclient.username=$1 org.eclipse.dstore.core.server.Server 0 60000 &
|
|
|
|
else java -DA_PLUGIN_PATH=$serverpath -DDSTORE_TRACING_ON=false org.eclipse.dstore.core.server.Server 0 60000 &
|
2006-04-12 16:47:19 +00:00
|
|
|
fi
|