Quick Fix For Sametime 8
Category Administration IBM/Lotus Domino ND8 Linux Sametime
I don't know why, and IBM doesn't know why, but there are occasional times when the Sametime servers do not create instant or scheduled meetings. What's especially frustrating, is that there doesn't appear to be any trace or log information that would even signal when this failure occurs. We only know by personal testing, or when a client notifies us. I need these servers working 24x7.
Running a scrub of fixup, compact and updall against the stconf.nsf will return the server to full utility--but it has to be performed with Domino off-line.
My work-around has been to create a shell script, and run it weekly as a cron job. If you have the same problem, then you might need this simple solution. Note, that I'm relying on Daniel Nashed's excellent Unix/Linux Start script (which is referred to in my shell script as "Domino").
Total time for downing the server, and scrubbing the database has been less than 10 minutes.
Technorati Tags: Lotus Sametime
I don't know why, and IBM doesn't know why, but there are occasional times when the Sametime servers do not create instant or scheduled meetings. What's especially frustrating, is that there doesn't appear to be any trace or log information that would even signal when this failure occurs. We only know by personal testing, or when a client notifies us. I need these servers working 24x7.
Running a scrub of fixup, compact and updall against the stconf.nsf will return the server to full utility--but it has to be performed with Domino off-line.
My work-around has been to create a shell script, and run it weekly as a cron job. If you have the same problem, then you might need this simple solution. Note, that I'm relying on Daniel Nashed's excellent Unix/Linux Start script (which is referred to in my shell script as "Domino").
#!/bin/sh
# change this to #!/bin/ksh for AIX and Solaris
#include
########################################################################
# Main scrub Logic
# A cron job is expected to run this once a week
########################################################################
echo "Stopping Domino at $(date +%c)" > scrublog.txt
cd /local/notesdata
/opt/ibm/lotus/Domino stop
echo "Domino stopped at $(date +%c)" >> scrublog.txt
/opt/ibm/lotus/bin/fixup stconf.nsf -f
/opt/ibm/lotus/bin/compact stconf.nsf -C -D -i
/opt/ibm/lotus/bin/updall stconf.nsf -c
echo "Scrub job is complete at $(date +%c)" >> scrublog.txt
echo "Now starting Domino at $(date +%c)" >> scrublog.txt
/opt/ibm/lotus/Domino start
Total time for downing the server, and scrubbing the database has been less than 10 minutes.
Technorati Tags: Lotus Sametime
- 

