Thellmann / callimachus

Automatically exported from code.google.com/p/callimachus
Other
0 stars 0 forks source link

launch instructions don't work on ubuntu 10.10 #3

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

% grep DESC /etc/lsb-release        
DISTRIB_DESCRIPTION="Ubuntu 10.10"

% echo $JAVA_HOME 
/usr/lib/jvm/java-6-sun-1.6.0.20

% ls $JAVA_HOME
bin  ext  jre  man

% ls $JAVA_HOME/bin 
amd64  ControlPanel  java  javaws  jcontrol  keytool  orbd  pack200  policytool 
 rmid  rmiregistry  servertool  tnameserv  unpack200

% which jrunscript
/usr/bin/jrunscript

% jrunscript
js> println("hello")
hello

% bin/callimachus-start.sh
The JAVA_HOME environment variable does not point to a JDK installation with 
scripting support
JDK jrunscript is needed to run this server

Then I work around this with 
sudo ln -s =jrunscript $JAVA_HOME/bin/jrunscript

and I get this:

% bin/callimachus-start.sh
Using BASEDIR:   /my/dl/dl/callimachus-0.10
Using PORT:      8080
Using AUTHORITY: localhost:8080
Using JAVA_HOME: /usr/lib/jvm/java-6-sun-1.6.0.20
The server is not running, see log files for details. Start aborted.

% ls -l log
total 1
-rw-------+ 1 drewp drewp 0 2011-06-09 20:28 callimachus.log.0.lck

Original issue reported on code.google.com by drewpca on 10 Jun 2011 at 4:08

GoogleCodeExporter commented 9 years ago
I copied the dir off my NFS mount and it started better, though there was about 
30 sec of churning. I guess there was a problem making locks, but I couldn't 
find any evidence in log files. (I only thought to test this after seeing the 
word 'lock' a few times in an strace session.)

Original comment by drewpca on 10 Jun 2011 at 4:15

GoogleCodeExporter commented 9 years ago
Callimachus embeds Sesame, which requires local locks, and thus won't work over 
NFS.  We are currently working toward supporting OWLIM-SE, but suspect the same 
problem will occur.  Unfortunately, we are not in a position to support 
databases with remote databases.

Original comment by da...@3roundstones.com on 22 Jun 2011 at 8:04