Just to say I’ve a domino server 6.5.1 on top of a SuSe Enterprise 9.0 and it seems to work fine.Two things to take into account and one trick:
1 At then end of the installation, when launching the server in silent mode the first time I saw:
./java -ss512k -Xoss5M -cp jhall.jar:cfgdomserver.jar:Notes.jar lotus.domino.setup.WizardManagerDomino -data /usr/local/domino/data -listen
*Warning all runtime debug info will be logged to /usr/local/domino/data/setuplog.txt
Error status: 32512
And in /my_domino_data/setuplog.text
First error
*Error - can’t initialize notes Notes.jar not detected
java.lang.UnsatisfiedLinkError: /opt/lotus/notes/65010/linux/liblsxbe.so: libstdc+±libc6.1-1.so.2: cannot open shared object file: No such file or directory
I just copy the library libstdc+±libc6.1-1.so.2 from a SuSe 9.0 server and this way the server start (linking as read in the forum did not solve the problem definitively: there was unresolved symbol errors)
2- There is an error in the init script (Domino on Linux 145-146): you must cd to the data directory before launching the server:
start() {
.....
su - $DOM_USER -c "cd $DOM_HOME; $DOM_PROG/server" > /dev/null 2>&1 &
.....
}
3 And if you want to let insserv do all the rc.d stuff, add the following rows at the beginnig of the script:
#!/bin/sh
Startup script for the Lotus Domino server
BEGIN INIT INFO
Provides: Domino 6.5.1
Required-Start: $network
Required-Stop:
Default-Start: 3 5
Default-Stop:
Description: start the Domino server
END INIT INFO
And you will be able to “insserv domino”