jboss的启动选项

usage: run.sh [options]

options:
    -h, --help                    Show this help message
    -V, --version                 Show version information
    --                            Stop processing options
    -D[=]            Set a system property
    -d, --bootdir=           Set the boot patch directory; Must be absolute or url
    -p, --patchdir=          Set the patch directory; Must be absolute or url
    -n, --netboot=           Boot from net with the given url as base
    -c, --configuration=    Set the server configuration name
    -B, --bootlib=      Add an extra library to the front bootclasspath
    -L, --library=      Add an extra library to the loaders classpath
    -C, --classpath=         Add an extra url to the loaders classpath
    -P, --properties=        Load system properties from the given url
    -b, --host=       Bind address for all JBoss services
    -g, --partition=        HA Partition name (default=DefaultDomain)
    -u, --udp=                UDP multicast address
    -l, --log=         Specify the logger plugin type

通过启动选项可以设置很多参数,例如在jboss4.2中,服务器默认绑定地址是localhost,若不加启动选项  --host 0.0.0.0
则无法通过IP访问。

你可能感兴趣的:(jboss的启动选项)