Advertisement
m4ly

WildFly 9.01 /etc/default/wildfly.conf

Aug 20th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.87 KB | None | 0 0
  1. # General configuration for the init.d scripts,
  2. # not necessarily for JBoss AS itself.
  3. # default location: /etc/default/wildfly
  4.  
  5. ## Location of JDK
  6. # JAVA_HOME="/usr/lib/jvm/default-java"
  7.  
  8. ## Location of WildFly
  9. JBOSS_HOME="/opt/wildfly/wildfly-9.0.1.Final"
  10.  
  11. ## The username who should own the process.
  12. JBOSS_USER=wildfly
  13.  
  14. ## The mode WildFly should start, standalone or domain
  15. JBOSS_MODE=standalone
  16.  
  17. ## Configuration for standalone mode
  18. JBOSS_CONFIG=standalone.xml
  19.  
  20. ## Configuration for domain mode
  21. # JBOSS_DOMAIN_CONFIG=domain.xml
  22. # JBOSS_HOST_CONFIG=host-master.xml
  23.  
  24. ## The amount of time to wait for startup
  25. STARTUP_WAIT=120
  26.  
  27. ## The amount of time to wait for shutdown
  28. SHUTDOWN_WAIT=60
  29.  
  30. ## Location to keep the console log
  31. JBOSS_CONSOLE_LOG="/var/log/wildfly/console.log"
  32.  
  33. ## Additionals args to include in startup
  34. # JBOSS_OPTS="--admin-only -b 172.0.0.1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement