Can't access JBoss AS 7 from remote machine

前端 未结 4 824
再見小時候
再見小時候 2021-01-05 18:25

I am running JBoss AS 7 on port 8080. I am able to access it from my local machine (http://localhost:8080). However I am not able to access it from another mach

4条回答
  •  余生分开走
    2021-01-05 19:02

    Start the server with -Djboss.bind.address=192.168.1.104 option

    OR

    add the server IP address in your standalone.xml

    
      
        
      
      
        
      
    
    

    You can use 0.0.0.0 instead of 192.168.1.104 if you want to bind to all IP addresses.

提交回复
热议问题