1834601 Members
3708 Online
110069 Solutions
New Discussion

lotus domino in MCSG

 
SOLVED
Go to solution

lotus domino in MCSG

Hi, does anybody know how to
start and stop lotus domino in MCSG. Any script will be very usefull.

Thank you in advance,

Hrvoje
1 REPLY 1
Didzis Strautins
New Member
Solution

Re: lotus domino in MCSG

Hi Hrvoje,

we use the following here:
1) create named pipe
mknod /opt/lotus/fifo p
chown notes:notes /opt/lotus/fifo
chmod 660 /opt/lotus/fifo

2) run lotus domino startup script
---
#!/bin/sh
#
# Set the notes data directory path.

PATH=$PATH:/opt/lotus/notesdata:/opt/lotus/bin

LOGFILE="/opt/lotus/logs/`date +%Y-%m-%d`-notes.log"
server < /opt/lotus/fifo >> $LOGFILE&
echo "" >/opt/lotus/fifo
---

Later you can use fifo to issue console commands to server from Unix shell

Stopping domino is as simply as:
$ echo "exit" >/opt/lotus/fifo

Hope this helps.

Best regards,

Didzis