We are using something like that:

1. start jboss with run.sh start myserver

2. run.myserver.conf:

  | JAVA_OPTS="$JAVA_OPTS -server -Xms2000m -Xmx2000m ...."
  | 

3. run.sh

  | # --- Read an optional running configuration file
  | if [ "x$2" = "x" ]; then
  |     RUN_CONF="$DIRNAME/run.conf"
  | else
  |     RUN_CONF="$DIRNAME/run.$2.conf"
  | fi
  | if [ -r $RUN_CONF ]; then
  |     . $RUN_CONF
  | fi
  | echo "using configuration file: $RUN_CONF"
  | 

lg Wolfgang



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3999100#3999100

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3999100
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to