Hi:

I don't know much about Solaris, but in Linux we use a script as the following:

#!/bin/sh
#
# swiki Control the Squeak swiki
#
# description: Control the Squeak swiki
# 29/01/2004
 
case $1 in
start)
     echo -n $"Starting Squeak swiki: "
     cd /usr/local/ComSwiki
     ./squeak -headless squeak.image /usr/local/ComSwiki/config.st &
     ;;

stop)
     echo -n $"Stopping Squeak swiki"
     killproc squeak
     ;;
esac

HTH.
gsa.

2005/8/2, Hartmut Pfüller <[EMAIL PROTECTED]>:
> Hallo,
> we use the -headless command line option to start the swiki server
> without a visible window in background (on Solaris).
> What is the safe way to shut down to restart the swikis?
> (Would it be safe to kill the swiki process?)
> Sometimes we need a restart to get a blocked page working again.
> Regards and thanks  --  Hartmut Pfueller
> 
> _______________________________________________
> Pws mailing list
> Pws@cc.gatech.edu
> https://mailman.cc.gatech.edu/mailman/listinfo/pws
> 


-- 
Germán S. Arduino
http://www.arsol.biz
http://www.arsol.net
_______________________________________________
Pws mailing list
Pws@cc.gatech.edu
https://mailman.cc.gatech.edu/mailman/listinfo/pws

Reply via email to