Labels

Tuesday, January 20, 2015

JBoss Application Server default ports

These are the default ports in JBoss Application Server
TCP 1090 – RMI/JRMP socket for connecting to the JMX MBeanServer
TCP 1091 – RMI server socket
TCP 1099 – JNDI Service
TCP 1098 – RMI Port for JNDI Service
TCP 4446 – JBoss Remoting Connector
TCP 4712 – JBossTS Service
TCP 4713 – JBossTS Service
TCP 5445 – HornetQ JMS Service
TCP 5455 – HornetQ Netty port
TCP 5500 – JBoss Remoting
TCP 5501 – JBoss Remoting ssl
TCP 8009 – Web server AjpConnector
TCP 8080 – Web server HTTP Connector
TCP 8083 – Web services
To change the port, we need to edit the bindings-jboss-beans.xml present at the following location.
jboss-as\server\myserver1\conf\bindingservice.beans\META-INF\bindings-jboss-beans.xml
e.g. if we want to change the JNDI port, we need to update the port property for the Naming Service

?
1
2
3
4
5
6
7
<!-- Naming Service -->
           <bean class="org.jboss.services.binding.ServiceBindingMetadata">
              <property name="serviceName">jboss:service=Naming</property>
              <property name="bindingName">Port</property>
              <property name="port">1999</property>
              <property name="description">The listening socket for the Naming service</property>
           </bean>

HOW TO CONFIGURE SSL BETWEEN APACHE and WEBLOGIC