Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EAP7.4.x, master branch] Support dual stack network, IP v4 and v6 #270

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
</feature>
<feature spec="interface">
<param name="interface" value="bindall"/>
<param name="inet-address" value="0.0.0.0"/>
<param name="inet-address" value="${jboss.bind.address.bindall:0.0.0.0}"/>
</feature>
</feature-group-spec>
4 changes: 2 additions & 2 deletions jboss/container/eap/launch/common/added/openshift-launch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fi

function runServer() {
local instanceDir=$1
launchServer "$JBOSS_HOME/bin/standalone.sh -c standalone-openshift.xml -bmanagement 0.0.0.0 -Djboss.server.data.dir=${instanceDir} -Dwildfly.statistics-enabled=true"
launchServer "$JBOSS_HOME/bin/standalone.sh -c standalone-openshift.xml -Djboss.server.data.dir=${instanceDir} -Dwildfly.statistics-enabled=true"
}

function init_data_dir() {
Expand Down Expand Up @@ -56,4 +56,4 @@ else

runServer "${JBOSS_HOME}/standalone/data"

fi
fi
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RECOVERY_TIMEOUT=${RECOVERY_TIMEOUT:-360}
RECOVERY_PAUSE=${RECOVERY_PAUSE:-10}

function runMigrationServer() {
exec $JBOSS_HOME/bin/standalone.sh -c standalone-openshift.xml -bmanagement 127.0.0.1 -Djboss.server.data.dir="$1" ${2} ${JAVA_PROXY_OPTIONS} ${JBOSS_HA_ARGS} ${JBOSS_MESSAGING_ARGS}
exec $JBOSS_HOME/bin/standalone.sh -c standalone-openshift.xml -bmanagement ${SERVER_LOOPBACK_ADDRESS} -Djboss.server.data.dir="$1" ${2} ${JAVA_PROXY_OPTIONS} ${JBOSS_HA_ARGS} ${JBOSS_MESSAGING_ARGS}
}

source ${JBOSS_HOME}/bin/launch/openshift-migrate-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# wildfly-cekit-modules will look for each of the listed files and run them if they exist.
CONFIG_SCRIPT_CANDIDATES=(
$JBOSS_HOME/bin/launch/backward-compatibility.sh
$JBOSS_HOME/bin/launch/ip.sh
$JBOSS_HOME/bin/launch/configure_extensions.sh
$JBOSS_HOME/bin/launch/passwd.sh
$JBOSS_HOME/bin/launch/messaging.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# wildfly-cekit-modules will look for each of the listed files and run them if they exist.
CONFIG_SCRIPT_CANDIDATES=(
$JBOSS_HOME/bin/launch/backward-compatibility.sh
$JBOSS_HOME/bin/launch/ip.sh
$JBOSS_HOME/bin/launch/configure_extensions.sh
$JBOSS_HOME/bin/launch/passwd.sh
$JBOSS_HOME/bin/launch/messaging.sh
Expand Down