88 lines
2.7 KiB
Plaintext
88 lines
2.7 KiB
Plaintext
|
|
### General configuration for the init.d scripts,
|
||
|
|
### not necessarily for JBoss AS itself.
|
||
|
|
|
||
|
|
## Path: Productivity/JAS/WildFly
|
||
|
|
## ServiceRestart: wildfly
|
||
|
|
## Description: Location of JDK
|
||
|
|
## Type: string
|
||
|
|
## Default: "/usr/lib/jvm/java"
|
||
|
|
JAVA_HOME="/usr/@_lib@/jvm/java"
|
||
|
|
|
||
|
|
## Description: Location of WildFly
|
||
|
|
## Type: string
|
||
|
|
## Default: "/var/lib/wildfly"
|
||
|
|
JBOSS_HOME="/var/lib/wildfly"
|
||
|
|
|
||
|
|
## Description: The username who should own the process.
|
||
|
|
## Type: string
|
||
|
|
## Default: wildfly
|
||
|
|
WILDFLY_USER="wildfly"
|
||
|
|
|
||
|
|
## Description: The groupname who should own the process.
|
||
|
|
## Type: string
|
||
|
|
## Default: wildfly
|
||
|
|
WILDFLY_GROUP="wildfly"
|
||
|
|
|
||
|
|
## Description: The mode WildFly should start, standalone or domain
|
||
|
|
## Type: list(standalone,domain)
|
||
|
|
## Default: standalone
|
||
|
|
WILDFLY_MODE="standalone"
|
||
|
|
|
||
|
|
## Description: Configuration for standalone mode
|
||
|
|
## Type: string
|
||
|
|
## Default: "standalone.xml"
|
||
|
|
WILDFLY_CONFIG="standalone.xml"
|
||
|
|
|
||
|
|
## Description: Configuration for domain mode
|
||
|
|
## Type: string
|
||
|
|
## Default: domain.xml
|
||
|
|
WILDFLY_DOMAIN_CONFIG="domain.xml"
|
||
|
|
|
||
|
|
## Description: Configuration for domain mode
|
||
|
|
## Type: string
|
||
|
|
## Default: host.xml
|
||
|
|
WILDFLY_HOST_CONFIG="host.xml"
|
||
|
|
|
||
|
|
## Description: The amount of time to wait for startup
|
||
|
|
## Type: integer(0:)
|
||
|
|
## Default: 60
|
||
|
|
JBOSS_STARTUP_WAIT=60
|
||
|
|
|
||
|
|
## Description: The amount of time to wait for shutdown
|
||
|
|
## Type: integer(0:)
|
||
|
|
## Default: 60
|
||
|
|
JBOSS_SHUTDOWN_WAIT=60
|
||
|
|
|
||
|
|
## Description: Location to keep the console log
|
||
|
|
## Type: string
|
||
|
|
## Default: "/var/log/wildfly/console.log"
|
||
|
|
JBOSS_CONSOLE_LOG="/var/log/wildfly/console.log"
|
||
|
|
|
||
|
|
## Description: PortOffset to run wildfly on differnt port then 8080 and 9080
|
||
|
|
## range 100, so wildfly run on localhost:8180 and localhost:9180
|
||
|
|
## Type: integer(0:)
|
||
|
|
## Default: 0
|
||
|
|
WILDFLY_PORT_OFFSET=0
|
||
|
|
|
||
|
|
## Description: Additionals args to include in startup
|
||
|
|
## For productive you need "-b 0.0.0.0 -bmanagement 0.0.0.0"
|
||
|
|
## Type: string
|
||
|
|
## Default: "-b 127.0.0.1"
|
||
|
|
WILDFLY_BIND="127.0.0.1"
|
||
|
|
|
||
|
|
## Description: Additionals args to include in startup
|
||
|
|
## For productive you need "-b 0.0.0.0 -bmanagement 0.0.0.0"
|
||
|
|
## Type: string
|
||
|
|
## Default: "-bmanagement 127.0.0.1 --admin-only "
|
||
|
|
WILDFLY_BIND_MANAGEMENT="127.0.0.1"
|
||
|
|
|
||
|
|
## Description: Location of Markerfile-Startup-file for standalone mode
|
||
|
|
## Type: string
|
||
|
|
## Default: "/var/lib/wildfly/standalone/tmp/startup-marker"
|
||
|
|
JBOSS_MARKERFILE_STANDALONE="/var/lib/wildfly/standalone/tmp/startup-marker"
|
||
|
|
|
||
|
|
## Description: Location of Markerfile-Startup-file for domain mode
|
||
|
|
## Type: string
|
||
|
|
## Default: "/var/lib/wildfly/domain/tmp/startup-marker"
|
||
|
|
JBOSS_MARKERFILE_DOMAIN="/var/lib/wildfly/domain/tmp/startup-marker"
|