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>&gt; It's been a while since I installed and I have
no documentation, so I'll<br>
&gt; try to explain from memory as best I can. &nbsp;I make no claims as
to<br>
&gt; performance optimization either since I'm only running a development<br>
&gt; server. &nbsp;So someone here may be able to comment on how to improve
things<br>
&gt; more for a production environment.<br>
&gt; <br>
&gt; After unpacking the RPM, these files are installed:<br>
&gt; <br>
&gt; /etc/init.d/domino<br>
&gt; /home/notes/.bash_profile<br>
&gt; /opt/dominowrap<br>
&gt; /opt/dominowrap/domino5<br>
&gt; /opt/dominowrap/domino5/libpthread.so<br>
&gt; /opt/dominowrap/domino5/librt.so<br>
&gt; /opt/dominowrap/domino6<br>
&gt; /opt/dominowrap/domino6/libpthread.so<br>
&gt; /opt/dominowrap/domino6/librt.so<br>
&gt; /opt/dominowrap/serverwrapper<br>
&gt; /usr/sbin/rcdomino<br>
&gt; /usr/share/doc/packages/domino-runtime<br>
&gt; /usr/share/doc/packages/domino-runtime/README.SuSE<br>
&gt; /usr/share/doc/packages/domino-runtime/performance.txt<br>
&gt; /var/adm/fillup-templates/sysconfig.domino<br>
&gt; /var/log/notes<br>
&gt; <br>
&gt; As root, copy the domino6 directory and its files to a new directory:<br>
&gt; <br>
&gt; /opt/dominowrap/domino7<br>
&gt; /opt/dominowrap/domino7/libpthread.so<br>
&gt; /opt/dominowrap/domino7/librt.so<br>
&gt; <br>
&gt; Edit /opt/dominowrap/serverwrapper and modify this line changing 6
to 7:<br>
&gt; <br>
&gt; if [ &quot;$DOMINOVERSION&quot; = &quot;7&quot; ] &amp;&amp; [ &quot;$DOMINO_JAVA_CONSOLE&quot;
= &quot;yes&quot; ]<br>
&gt; <br>
&gt; Edit /etc/sysconfig/domino and modify this line changing 6 to 7:<br>
&gt; <br>
&gt; DOMINOVERSION=&quot;7&quot;<br>
&gt; <br>
&gt; Start YaST and go to System &gt; System Services (Runlevel), and enable
the<br>
&gt; domino service to start/stop when Linux boots or shuts down.<br>
&gt; <br>
&gt; Use the rcdomino command in a shell console to start or stop the Domino<br>
&gt; server from now on.<br>
&gt; <br>
&gt; I don't really like the Domino Java server console, so I use my own<br>
&gt; scripts to view the log and send commands to the server.<br>
&gt; <br>
&gt; -----&lt;BEGIN /usr/bin/domcmd&gt;-----<br>
&gt; #!/bin/bash<br>
&gt; # Input Domino server commands<br>
&gt; <br>
&gt; ReadDomCmd()<br>
&gt; {<br>
&gt; &nbsp; &nbsp; echo -n &quot;DOMINO&gt; &quot;<br>
&gt; &nbsp; &nbsp; read DOMINO_COMMAND<br>
&gt; }<br>
&gt; <br>
&gt; echo &quot;Enter Domino Commands. (Press ENTER to exit).&quot;<br>
&gt; echo<br>
&gt; <br>
&gt; while true<br>
&gt; do<br>
&gt; &nbsp; &nbsp; ReadDomCmd<br>
&gt; &nbsp; &nbsp; case &quot;$DOMINO_COMMAND&quot; in<br>
&gt; &nbsp; &nbsp; &quot;&quot;) &nbsp; break &nbsp; &nbsp; &nbsp; &nbsp;
# exit the loop<br>
&gt; &nbsp; &nbsp;;;<br>
&gt; &nbsp; &nbsp; *) &nbsp; echo ${DOMINO_COMMAND} &gt;&gt; /var/log/notes/domino.input<br>
&gt; &nbsp; &nbsp;continue<br>
&gt; &nbsp; &nbsp;;;<br>
&gt; &nbsp; &nbsp; esac<br>
&gt; done<br>
&gt; -----&lt;END /usr/bin/domcmd&gt;-----<br>
&gt; <br>
&gt; -----&lt;BEGIN /usr/bin/domlog&gt;-----<br>
&gt; #!/bin/bash<br>
&gt; # Output Domino server log<br>
&gt; <br>
&gt; echo<br>
&gt; tail -f /var/log/notes/domino.log<br>
&gt; -----&lt;END /usr/bin/domlog&gt;-----<br>
&gt; <br>
&gt; In a shell console as root, run domlog to view the server activity,<br>
&gt; (read-only), and run domcmd in another console session to input commands.<br>
&gt; <br>
&gt; Best of luck,<br>
&gt; Brett<br>
&gt; <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_=--