On Wed, Apr 15, 2009 at 8:27 AM, Lukas Renggli <renggli@gmail.com> wrote:
> -- bangs with exception stack described few messages above.
> TcpService services

Did you try stopping "TcpService services" as well?

ok, now I have tried:

WAKom withAllSubclassesDo: #stop . TcpService services do: [:s | s stop]. WAKomEncoded startOn: 8080 .
-- ok, only one service left running on port 8080

PRKernel instances anyOne persistency snapshot
-- again same exception, also has 2 services on port 8080, one stoped other running.

So I think snapshot is somehow generating more than one service for port 8080. 

Also here is the Cloud208.sh script used to start pier if that migh give you some clue:
-----------------
#!/bin/sh

dir="/ebs/cloud208/Pier"
EXE="$dir/Contents/Linux686"
RES="$dir/Contents/Resources"

case "$1" in
        start)
                nohup su -c "$EXE/squeak -plugins $EXE -vm-display-null -vm-soun
d-null -mmap 100m $RES/pier.image '' port 8080" squeak &
                echo $! > $dir/pid
                ;;
        stop)
                kill `cat $dir/pid`
        ;;
        *)
                exit 3
        ;;
esac
-----------------

thanks!

rush
http://www.cloud208.com/