identity crisis ?

"dave johnson" <[email protected]> Sat, 5 Aug 2006 09:45:12 -0700
Newsgroups gmane.mail.zoe.general
Message-ID <[email protected]>
so i've attempted to move my 9+GB zoe store from my old Windblowz server to my new Linux server and for some reason, Zoe seems to pickup the account configuration information for the existing user, but doesn't pickup the message store and apparently created a new one.

here's the kicker, if i launch zoe from the windows system (mounting the share on the linux server via CIFS) it launches into the same message store.  however, when i launch the same exact zoe from within linux, i get the same user config, but the new "empty" message store.

to launch zoe, i use the following windows command script:
-------------------------------------------------------
start /min /b /belownormal java -Duser.name=speedster -jar zoe.jar daemon
-------------------------------------------------------

to launch zoe within linux, i use the following init.d script:

--------------------------------------------------------
# chkconfig: 2345 80 20
# description: Zoe is google for email :)
# processname: zoe

# Source function library.
 /etc/init.d/functions

javapath=/usr/java/jre1.5.0_07/bin/java
zoepath=/mnt/filer/usr/speedster/Zoe
logpath=/var/log/zoe

test -x $zoepath/Zoe.jar || exit 0

RETVAL=0

#
#       See how we were called.
#

prog="zoe"

start() {
        # Check if zoe is already running
        if [ ! -f /var/lock/subsys/zoe ]; then
            echo -n $"Starting $prog: "
            cd $zoepath
            $javapath -Duser.name=speedster -jar Zoe.jar daemon > /dev/null 2>&1 &
            RETVAL=$?
            [ $RETVAL -eq 0 ] && touch /var/lock/subsys/zoe
            echo
        fi
        return $RETVAL
}

stop() {
        echo -n $"Stopping $prog: "
        cd $zoepath
        $javapath -jar Zoe.jar shutdown # > /dev/null 2>&1 &
        RETVAL=$?
        [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/zoe
        echo
        return $RETVAL
}
--------------------------------------------------------

while the absolute paths are different, i fire off zoe from within the same relative root Zoe directory:
linux: /mnt/filer/usr/speedster/Zoe
windows: Z:/Zoe

any idea where i'm screwing up ?  i want to ditch this windows box as soon as i can :)

-=dave

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV