How to change default port 8080 in WildFly

后端 未结 4 1894
粉色の甜心
粉色の甜心 2020-12-13 03:25

I just started JAVA EE development with WildFly 8.2. My first problem is how to change the default port 8080 to something else?

I found many xml files containing bel

4条回答
  •  星月不相逢
    2020-12-13 04:13

    In your standalone.xml file, look for this element:

    
    

    The port-offset attribute lets you modify all the ports wildfly uses, by adding the number you specify.

    For example, the default value is 0, which means that http port will be 8080, remoting 4447, etc.

    If you use ${jboss.socket.binding.port-offset:100}, http port will be 8180 (8080+100), remoting 4547 (4447+100), etc.

    So you need to change the offset, nothing else.

    EDIT: You can also do this by using a system property at startup, check http://www.mastertheboss.com/jboss-server/jboss-configuration/configuring-port-offset-on-jboss-as-wildfly

提交回复
热议问题