Maybe I am missing something but at the bottom of the startup.sh script I see 
the following


# if not told otherwise pump up the permgen
if [ -z "$JAVA_OPS" ]; then
  set JAVA_OPS=-XX:MaxPermSize=128m
fi

cd "$GEOSERVER_HOME"

echo "GEOSERVER DATA DIR is $GEOSERVER_DATA_DIR"
#added headless to true by default, if this messes anyone up let the list
#know and we can change it back, but it seems like it won't hurt -ch
exec "$_RUNJAVA" $JAVA_OPTS -DGEOSERVER_DATA_DIR="$GEOSERVER_DATA_DIR" 
-Djava.awt.headless=true -DSTOP.PORT=8079 -DSTOP.KEY=geoserver -jar start.jar

Should this bit

if [ -z "$JAVA_OPS" ]; then
  set JAVA_OPS=-XX:MaxPermSize=128m
fi

be

if [ -z "$JAVA_OPTS" ]; then
  set JAVA_OPTS=-XX:MaxPermSize=128m
fi


Russ
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
_______________________________________________
Geoserver-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to