简体   繁体   中英

multiport Weblogic

I am using oracle 11g and web logic Application Server

I want to create multiple port listener for example

  1. http://ip(192.168.10.11:8080)/applicationName/index.jsp
  2. http://ip(192.168.10.11:7878)/applicationName/index.jsp

My Requirement is when i restart 1 service ,that is not affected to 2

You can do this by adding a network channel to your server. For details: http://download.oracle.com/docs/cd/E15051_01/wls/docs103/config_wls/network.html#wp1058981

edit your config.xml of web logic... as this may it work..

<Domain ConfigurationVersion="8.1.0.0" Name="yourdomain">  
...  
<NetworkChannel   
    HTTPEnabled="true"   
    ListenPort="8080"  
    ListenPortEnabled="true"   
    Name="AdditionalPort"  
    Targets="yourserver"/>  
  ...  
</Domain> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM