SuSE Linux Groupware Server: Version I
If you select a directory other than "/local/notesdata" when installing the Lotus software, the Lotus Domino server cannot be started either with the start script "rcdomino start" or by booting the server.
Please change the following file as follows:
From: /etc/profile.d/lotus.sh ----------------snip-------------------------- # # /etc/profile.d/lotus.sh # export NOTES_USER=notes export NOTES_PATH=/local/notesdata export LOTUSDIR=/opt/lotus # # Path for notes-user # if [ "$LOGNAME" = $NOTES_USER ]; then export PATH=$PATH:$LOTUSDIR/bin:$NOTES_PATH:$LOTUSDIR/notes/latest/linux fi ---------------snap---------------------------
To: /etc/profile.d/lotus.sh ----------------snip-------------------------- # # /etc/profile.d/lotus.sh # export NOTES_USER=notes export NOTES_PATH=/<your new path>/notesdata export LOTUSDIR=/opt/lotus # # Path for notes-user # if [ "$LOGNAME" = $NOTES_USER ]; then export PATH=$PATH:$LOTUSDIR/bin:$NOTES_PATH:$LOTUSDIR/notes/latest/linux fi ---------------snap---------------------------