<div>Hi All,</div>  <div> </div>  <div>I have intall globus on ma PC. I have done everything but when I run the command</div>  <div> </div>  <div><A href="mailto:root@host">root@host</A>:# etc/init.d/globus-4.0.4 start</div>  <div> </div>  <div>I gave me the error that</div>  <div>libglobus_common_gcc32.so.0. No such file or directory</div>  <div>When I downloaded this file and run the command again, then problem came that:</div>  <div>ltdl_common_..... No such file or directory</div>  <div>When I downloaded it again and run the command again now then this error comes</div>  <div> </div>  <div><STRONG>/usr/local /sbin/globus-start-container-detached undefined symbol lookup error: globus_callback_space_reference.</STRONG></div>  <div><STRONG></STRONG> </div>  <div><STRONG>so can anyone help me that why this error comes to me and how can I fix this.</STRONG></div>  <div><STRONG></STRONG> </div>  <div><STRONG>take Care</STRONG></div> 
 <div><STRONG>Thanks</STRONG></div>  <div><STRONG>Faiz.</div>  <div><BR><BR><I>linux-cluster-request@redhat.com</I></STRONG> wrote:</div>  <BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">Send Linux-cluster mailing list submissions to<BR>linux-cluster@redhat.com<BR><BR>To subscribe or unsubscribe via the World Wide Web, visit<BR>https://www.redhat.com/mailman/listinfo/linux-cluster<BR>or, via email, send a message with subject or body 'help' to<BR>linux-cluster-request@redhat.com<BR><BR>You can reach the person managing the list at<BR>linux-cluster-owner@redhat.com<BR><BR>When replying, please edit your Subject line so it is more specific<BR>than "Re: Contents of Linux-cluster digest..."<BR><BR><BR>Today's Topics:<BR><BR>1. CommuniGate as service? (Eric Schneider)<BR>2. gfs and software raid across 4 systems. (Jon Gabrielson)<BR><BR><BR>----------------------------------------------------------------------<BR><BR>Message:
 1<BR>Date: Fri, 15 Jun 2007 11:29:20 -0600<BR>From: "Eric Schneider" <ESCHNEID@UCCS.EDU><BR>Subject: [Linux-cluster] CommuniGate as service?<BR>To: "'linux clustering'" <LINUX-CLUSTER@REDHAT.COM><BR>Message-ID: <002701c7af72$b532b400$1b03c680@uccs.edu><BR>Content-Type: text/plain; charset="US-ASCII"<BR><BR>I am trying to setup CommuniGate<BR>(http://www.stalker.com/content/default.html) as a cluster service. I have<BR>everything working except for one thing. If I stop/kill the process<BR>manually and wait for the status check to move the service nothing happens.<BR><BR><BR>I get "clurgmgrd: [3087]: <INFO>Executing /etc/init.d/CommuniGate status"<BR>rather than the "clurgmgrd: [3087]: <ERR>script:httpd-webcal: status of<BR>/etc/init.d/httpd-webcal failed (returned 3)" I get with an apache process.<BR><BR>I had to add the "status" part to /etc/init.d/CommuniGate file myself, but<BR>there is obviously a problem. I have mucked around with it for a while but<BR>I am just
 putting it out there if my mistakes are obvious. <BR><BR># If you have placed the application folder in a different directory,<BR># change the APPLICATION variable<BR>#<BR># The default location for the CommuniGate Pro "base directory" (a folder<BR># containing mail accounts, settings, logs, etc.) is /var/CommuniGate<BR># If you want to use a different location, change the BASEFOLDER variable<BR>#<BR>#<BR>APPLICATION="/opt"<BR>BASEFOLDER="/var/CommuniGate"<BR>SUPPLPARAMS=<BR>PROG="/opt/CommuniGate/CGServer"<BR>#ADDED<BR>pidfile=${PIDFILE-/var/run/CommuniGate.pid}<BR>lockfile=${LOCKFILE-/var/lock/subsys/CommuniGate}<BR>RETVAL=0<BR>#/ADDED<BR>[ -f ${APPLICATION}/CommuniGate/CGServer ] || exit 0<BR><BR># Some Linux distributions come with the "NPTL" threads library<BR># that crashes quite often. The following lines are believed to force<BR># Linux to use the old working threads library.<BR>#<BR>#LD_ASSUME_KERNEL=2.4.1<BR>#export LD_ASSUME_KERNEL<BR><BR># Source function
 library.<BR>if [ -f /etc/rc.d/init.d/functions ]; then<BR>. /etc/rc.d/init.d/functions<BR>elif [ -f /etc/init.d/functions ]; then<BR>. /etc/init.d/functions<BR>fi<BR><BR>ulimit -u 2000<BR>ulimit -c 2097151<BR>umask 0<BR><BR># Custom startup parameters<BR>if [ -f ${BASEFOLDER}/Startup.sh ]; then<BR>. ${BASEFOLDER}/Startup.sh<BR>fi<BR><BR>case "$1" in<BR>start)<BR>if [ -d ${BASEFOLDER} ] ; then<BR>echo<BR>else<BR>echo "Creating the CommuniGate Base Folder..."<BR>mkdir ${BASEFOLDER}<BR>chgrp mail ${BASEFOLDER}<BR>chmod 2770 ${BASEFOLDER}<BR>fi<BR>echo -n "Starting CommuniGate Pro"<BR>${APPLICATION}/CommuniGate/CGServer \<BR>--Base ${BASEFOLDER} --Daemon ${SUPPLPARAMS} \<BR># --ClusterBackend<BR># --ClusterFrontend<BR>#Comment out<BR>#touch /var/lock/subsys/CommuniGate<BR>#ADD<BR>touch ${pidfile}<BR>RETVAL=$?<BR>echo<BR>[ "$RETVAL = 0" ] && touch ${lockfile}<BR>#return $RETVAL<BR>#/ADDED<BR>;;<BR>controller)<BR>echo "Starting CommuniGate Pro Cluster
 Controller"<BR>${APPLICATION}/CommuniGate/CGServer \<BR>--Base ${BASEFOLDER} --Daemon ${SUPPLPARAMS} \<BR>--ClusterController<BR>touch /var/lock/subsys/CommuniGate<BR>;;<BR>stop)<BR>if [ -f ${BASEFOLDER}/ProcessID ]; then<BR>echo "Shutting down the CommuniGate Pro Server"<BR>kill `cat ${BASEFOLDER}/ProcessID`<BR>sleep 5<BR>else<BR>echo "It looks like the CommuniGate Pro Server is not running"<BR>fi<BR>#eric<BR>rm -f ${pidfile}<BR>##Orig<BR>#rm -f /var/lock/subsys/CommuniGate<BR>#ADDED<BR>RETVAL=$?<BR>echo<BR>[ "$RETVAL = 3" ] && rm -f ${lockfile} #${pidfile}<BR>#/ADDED<BR>;;<BR>#ADDED<BR>status)<BR>status $PROG<BR>RETVAL=$?<BR>;;<BR>#/ADDED<BR>*)<BR>echo "Usage: $0 [ start | stop | status ]"<BR>exit 1<BR>esac<BR><BR>exit 0<BR><BR><BR><BR><BR><BR><BR>------------------------------<BR><BR>Message: 2<BR>Date: Fri, 15 Jun 2007 22:41:01 -0500 (CDT)<BR>From: "Jon Gabrielson" <JONYAHOO@DIRECTFREIGHT.COM><BR>Subject: [Linux-cluster] gfs and software raid across 4
 systems.<BR>To: linux-cluster@redhat.com<BR>Message-ID:<BR><5474.12.227.156.125.1181965261.squirrel@www.directfreight.com><BR>Content-Type: text/plain;charset=iso-8859-1<BR><BR>I have 4 servers each with their own harddrive.<BR>I would like to setup gfs so that each can read/write<BR>to their local harddrive and the data synced to the other 3 harddrives.<BR>My original idea was to export all 4 harddrives with a network block<BR>device like iscsi/gnbd/nbd and then use md software raid1 on top of<BR>those but I've heard that this is a bad idea as md is not cluster aware.<BR>I also found drbd but it only supports 2 harddrives.<BR><BR>Are there any available solutions for doing a 4 way mirror like I<BR>am looking for? Basically a network raid 1 across 4 harddrives<BR>on 4 separate systems.<BR><BR><BR>Thanks,<BR><BR><BR>Jon.<BR><BR><BR><BR>------------------------------<BR><BR>--<BR>Linux-cluster mailing
 list<BR>Linux-cluster@redhat.com<BR>https://www.redhat.com/mailman/listinfo/linux-cluster<BR><BR>End of Linux-cluster Digest, Vol 38, Issue 25<BR>*********************************************<BR></BLOCKQUOTE><BR><p>
      <hr size=1>Take the Internet to Go: Yahoo!Go puts the <a href="http://us.rd.yahoo.com/evt=48253/*http://mobile.yahoo.com/go?refer=1GNXIC">Internet in your pocket:</a> mail, news, photos & more.