1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 09:35:23 +02:00
cdt/rse/plugins/org.eclipse.rse.services.dstore/serverruntime/server.unix
David Dykstal 11e2a5c6da updating server runtime scripts to correct package names
adding source and SDK builds
pulling server scripts from correct directory during build
2006-04-21 21:42:15 +00:00

8 lines
529 B
Text

# Shell script to starat RSE communications server
# This script will start the datastore listening on an available socket
export serverpath=.;
export CLASSPATH=.:dstore_extra_server.jar:dstore_core.jar:dstore_miners.jar:clientserver.jar:$CLASSPATH;
if [ $1 ]
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 &
fi