Folks; I sent a help-request email a few days ago to both
[email protected] and to [email protected]. I have received no
replies at all. So, I am trying again to see if I can get some help.
I'm trying to start a javaspace using apache river 3.0.0. The script
below runs on a unix system at the San Diego Supercomputer center. It
breaks on the reggie command just before the exit. It says it can't find
a groovy class. I tried giving it the groovy2.4.5.jar file in lib-deps
but that caused the ConfigUtils class to not be found. Is groovy-all.jar
needed? If so, how could your examples run? Currently, I'm trying to
use old 2.2.1 config files to make this run as I can't find any config
files in the 3.0.0 release that work -- I get a "no services described"
message when I try to use the config files in qa/harness/configs/jeri.
I was successfully running a javaspace with the previous version.
As I received no replies before, there may be some reason such as you
don't want to provide support. That is understandable as this is a
free system. If that is the case, could someone let me know that there
is no support so that I can pursue other ways to run a javaspace? I'm
thinking the next option to try is gigaspaces.
Regards,
-Tim Haas, Associate Professor, Lubar School of Business,
University of Wisconsin-Milwaukee
---------------------------------------------------------------
rm -f -r /home/haas/jinitmp/
echo [Deleting jinitmp directory]
#
mkdir /home/haas/jinitmp
echo [Creating jinitmp directory]
#
rh="/projects/builder-group/jpg/apache-river"
myconfigs="/home/haas/jsutils"
cd ${rh}/examples/home/src/main/home
#
# Start an http server. Was 4160
#
java -jar ${rh}/lib/classserver.jar -port 8080 \
-dir lib:${rh}/lib-dl $* \
> /home/haas/jinitmp/http.out \
2> /home/haas/jinitmp/http.err &
#java -jar ${rh}/lib/tools.jar -port 8080 \
# -dir lib:${rh}/lib-dl $* -verbose
echo - HTTP Server Running -
#
# Activation daemon
#
#java -Djava.security.manager= \
# -Djava.security.policy=policy/all.policy \
# -Djava.rmi.server.codebase="http://$host:8080/phoenix-dl.jar
http://$host:8080/jsk-dl.jar" \
# -DserverHost=$host \
# -jar ${rh}/lib/phoenix.jar \
# configs/jeri/phoenix/phoenix.config
rmid -J-Djava.security.policy=${rh}/qa/harness/policy/all.policy \
-log /home/haas/jinitmp &
#
# Start a reggie lookup service.
#
java -Djava.security.policy=${rh}/qa/harness/policy/all.policy \
-Djava.ext.dirs=${rh}/lib-ext:${rh}/lib-dl:${rh}/lib \
-jar ${rh}/lib/start.jar \
# ${myconfigs}/start-reggie.config
start-hello-service.config
exit
echo - Lookup Service Running -
#
# Start the JavaSpace.
#
java -Djava.security.policy=policy/all.policy \
-jar ${rh}/lib/start.jar \
configs/jeri/outrigger/outrigger.config
echo - JavaSpace Running -