Re: mapped_base Error
[email protected] Wed, 28 Jun 2006 17:01:51 +0200
| Newsgroups | gmane.linux.suse.domino |
|---|---|
| Message-ID | <[email protected]> |
--=_alternative 00529180C125719B_=
Content-Type: text/plain; charset="US-ASCII"
> It's been a while since I installed and I have no documentation, so I'll
> try to explain from memory as best I can. I make no claims as to
> performance optimization either since I'm only running a development
> server. So someone here may be able to comment on how to improve things
> more for a production environment.
>
> After unpacking the RPM, these files are installed:
>
> /etc/init.d/domino
> /home/notes/.bash_profile
> /opt/dominowrap
> /opt/dominowrap/domino5
> /opt/dominowrap/domino5/libpthread.so
> /opt/dominowrap/domino5/librt.so
> /opt/dominowrap/domino6
> /opt/dominowrap/domino6/libpthread.so
> /opt/dominowrap/domino6/librt.so
> /opt/dominowrap/serverwrapper
> /usr/sbin/rcdomino
> /usr/share/doc/packages/domino-runtime
> /usr/share/doc/packages/domino-runtime/README.SuSE
> /usr/share/doc/packages/domino-runtime/performance.txt
> /var/adm/fillup-templates/sysconfig.domino
> /var/log/notes
>
> As root, copy the domino6 directory and its files to a new directory:
>
> /opt/dominowrap/domino7
> /opt/dominowrap/domino7/libpthread.so
> /opt/dominowrap/domino7/librt.so
>
> Edit /opt/dominowrap/serverwrapper and modify this line changing 6 to 7:
>
> if [ "$DOMINOVERSION" = "7" ] && [ "$DOMINO_JAVA_CONSOLE" = "yes" ]
>
> Edit /etc/sysconfig/domino and modify this line changing 6 to 7:
>
> DOMINOVERSION="7"
>
> Start YaST and go to System > System Services (Runlevel), and enable the
> domino service to start/stop when Linux boots or shuts down.
>
> Use the rcdomino command in a shell console to start or stop the Domino
> server from now on.
>
> I don't really like the Domino Java server console, so I use my own
> scripts to view the log and send commands to the server.
>
> -----<BEGIN /usr/bin/domcmd>-----
> #!/bin/bash
> # Input Domino server commands
>
> ReadDomCmd()
> {
> echo -n "DOMINO> "
> read DOMINO_COMMAND
> }
>
> echo "Enter Domino Commands. (Press ENTER to exit)."
> echo
>
> while true
> do
> ReadDomCmd
> case "$DOMINO_COMMAND" in
> "") break # exit the loop
> ;;
> *) echo ${DOMINO_COMMAND} >> /var/log/notes/domino.input
> continue
> ;;
> esac
> done
> -----<END /usr/bin/domcmd>-----
>
> -----<BEGIN /usr/bin/domlog>-----
> #!/bin/bash
> # Output Domino server log
>
> echo
> tail -f /var/log/notes/domino.log
> -----<END /usr/bin/domlog>-----
>
> In a shell console as root, run domlog to view the server activity,
> (read-only), and run domcmd in another console session to input
commands.
>
> Best of luck,
> Brett
>
So you make that practice, in a SLES9 and Domino7 and all is working..
Right?
I will try in my test environment.. is a bit longer but not difficult..
Thanks a lot...
So
--=_alternative 00529180C125719B_=
Content-Type: text/html; charset="US-ASCII"
<br><font size=2><tt>> It's been a while since I installed and I have
no documentation, so I'll<br>
> try to explain from memory as best I can. I make no claims as
to<br>
> performance optimization either since I'm only running a development<br>
> server. So someone here may be able to comment on how to improve
things<br>
> more for a production environment.<br>
> <br>
> After unpacking the RPM, these files are installed:<br>
> <br>
> /etc/init.d/domino<br>
> /home/notes/.bash_profile<br>
> /opt/dominowrap<br>
> /opt/dominowrap/domino5<br>
> /opt/dominowrap/domino5/libpthread.so<br>
> /opt/dominowrap/domino5/librt.so<br>
> /opt/dominowrap/domino6<br>
> /opt/dominowrap/domino6/libpthread.so<br>
> /opt/dominowrap/domino6/librt.so<br>
> /opt/dominowrap/serverwrapper<br>
> /usr/sbin/rcdomino<br>
> /usr/share/doc/packages/domino-runtime<br>
> /usr/share/doc/packages/domino-runtime/README.SuSE<br>
> /usr/share/doc/packages/domino-runtime/performance.txt<br>
> /var/adm/fillup-templates/sysconfig.domino<br>
> /var/log/notes<br>
> <br>
> As root, copy the domino6 directory and its files to a new directory:<br>
> <br>
> /opt/dominowrap/domino7<br>
> /opt/dominowrap/domino7/libpthread.so<br>
> /opt/dominowrap/domino7/librt.so<br>
> <br>
> Edit /opt/dominowrap/serverwrapper and modify this line changing 6
to 7:<br>
> <br>
> if [ "$DOMINOVERSION" = "7" ] && [ "$DOMINO_JAVA_CONSOLE"
= "yes" ]<br>
> <br>
> Edit /etc/sysconfig/domino and modify this line changing 6 to 7:<br>
> <br>
> DOMINOVERSION="7"<br>
> <br>
> Start YaST and go to System > System Services (Runlevel), and enable
the<br>
> domino service to start/stop when Linux boots or shuts down.<br>
> <br>
> Use the rcdomino command in a shell console to start or stop the Domino<br>
> server from now on.<br>
> <br>
> I don't really like the Domino Java server console, so I use my own<br>
> scripts to view the log and send commands to the server.<br>
> <br>
> -----<BEGIN /usr/bin/domcmd>-----<br>
> #!/bin/bash<br>
> # Input Domino server commands<br>
> <br>
> ReadDomCmd()<br>
> {<br>
> echo -n "DOMINO> "<br>
> read DOMINO_COMMAND<br>
> }<br>
> <br>
> echo "Enter Domino Commands. (Press ENTER to exit)."<br>
> echo<br>
> <br>
> while true<br>
> do<br>
> ReadDomCmd<br>
> case "$DOMINO_COMMAND" in<br>
> "") break
# exit the loop<br>
> ;;<br>
> *) echo ${DOMINO_COMMAND} >> /var/log/notes/domino.input<br>
> continue<br>
> ;;<br>
> esac<br>
> done<br>
> -----<END /usr/bin/domcmd>-----<br>
> <br>
> -----<BEGIN /usr/bin/domlog>-----<br>
> #!/bin/bash<br>
> # Output Domino server log<br>
> <br>
> echo<br>
> tail -f /var/log/notes/domino.log<br>
> -----<END /usr/bin/domlog>-----<br>
> <br>
> In a shell console as root, run domlog to view the server activity,<br>
> (read-only), and run domcmd in another console session to input commands.<br>
> <br>
> Best of luck,<br>
> Brett<br>
> <br>
</tt></font>
<br><font size=2><tt>So you make that practice, in a SLES9 and Domino7
and all is working.. Right?</tt></font>
<br>
<br><font size=2><tt>I will try in my test environment.. is a bit longer
but not difficult..</tt></font>
<br>
<br><font size=2><tt>Thanks a lot...</tt></font>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br><font size=2><tt>So </tt></font>
--=_alternative 00529180C125719B_=--