Wildfly server

Asked

Viewed 136 times

1

Standalone of the wildfly

<interfaces>
        <interface name="management">
           <inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
        </interface>
        <interface name="public">
            <any-address/>
        </interface>
        <interface name="unsecure">
            <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
        </interface>
    </interfaces>

    <socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
        <socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990}"/>
        <socket-binding name="management-https" interface="management" port="${jboss.management.https.port:9993}"/>
        <socket-binding name="ajp" port="${jboss.ajp.port:8009}"/>
        <socket-binding name="http" port="${jboss.http.port:8100}"/>
        <socket-binding name="https" port="${jboss.https.port:8443}"/>
        <socket-binding name="txn-recovery-environment" port="4712"/>
        <socket-binding name="txn-status-manager" port="4713"/>
        <outbound-socket-binding name="mail-smtp">
            <remote-destination host="localhost" port="25"/>
        </outbound-socket-binding>
    </socket-binding-group>

Localhost only access. I can’t access elsewhere. You need to set up something else ?

The door 8100 and 9990, is released in windows server 2008 firewall.

  • Can’t access the 8100 or the 9990? If it’s the 9990 shall change the interface configuration management.

  • Neither of the two doors

1 answer

2

Usually you need to touch the wildfly.conf and edit the JBOSS_OPTS environment variable so that it "listens" to other interfaces; so that it responds at all is something like this:

JBOSS_OPTS="-b 0.0.0.0 -bmanagement=0.0.0.0"

These parameters are used when the server is started.

  • In the archive wildfly conf., was like this: JBOSS_OPTS="-b 0.0.0.0 -bmanagement=0.0.0.0", but it didn’t work. Before changing, I stopped the server. I made the changes. I restarted the server.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.