0

My EAR has two WARs and a bunch of jars. It looks to have deployed successfully from the logs and shows up in the JBoss admin console at localhost:9990/console. Though I specified port 80 as my http socket-binding in standalone.xml:

<socket-binding name="http" port="80"/>

This allows me to login to the admin console at localhost:80 but I do not see either web app at localhost:80/<context-root value>

What port are my webapps being served from by JBoss?

user1561108
  • 2,666
  • 9
  • 44
  • 69

1 Answers1

1

Did you update the http binding port from 8080 to 80 in jboss/server/default/conf/bindingservice.beans/META-INF/bindings-jboss-beans.xml?

        <bean class="org.jboss.services.binding.ServiceBindingMetadata">
           <property name="serviceName">jboss.web:service=WebServer</property>
           <property name="bindingName">HttpConnector</property>
           <property name="port">8080</property>
           <property name="description">JBoss Web HTTP connector socket; also drives the values for the HTTPS and AJP sockets</property>
        </bean>
SMS Krishnan
  • 61
  • 1
  • 2