今天遇到一个问题。感觉比较棘手。
webLogic无法启动,错误提示有其他用户正在使用端口80。
把使用端口80的地方全都改了, 折腾了不少时间,还是无法启动。
最后请教一高手,关闭SQL SERVER 的服务,然后重启webLogic,问题解决。
还有朋友提供的另一种解决方案:由于时间紧迫还没有试。
------------------------------------------------------------------------------
These messages indicate that WLS is binding itself to all network adapters 
configured on your machine running Windows - yes, this is an OS issue; it 
doesn‘t happen on Linux.
All these bindings end up eating a couple of 
seconds of WLS startup time. To minimize it:
1.Start WLS - On JDeveloper, 
go to Run > Start Server Instance 
2.Go to the admin console at http://localhost:7101/console and login as 
weblogic/weblogic1
3. On the left side navigation bar, select Environment 
> Servers
4.Select Default Server from the table
5.On the Listen 
Address field, enter: 127.0.0.1 
6.Restart WLS.
------------------------------------------------------------------------------
------------------------------------------------------------------------------
(借鉴前辈保存过的关于端口的资料)
点击"开始"--"运行",输入"cmd"后点击确定按钮,进入DOS窗口,接下来分别运行以下命令:
>netstat -aon | findstr 
"80"
                  
Proto   Local 
Address            
 Foreign Address          
 State               
 PID
                  
====  ============      ==============  
==========  
======
                  
TCP     
 0.0.0.0:80                    
0.0.0.0:0                  LISTENING        
1688    
可以看出80端口被进程号为1688的程序占用.
 >tasklist | findstr 
"1688"
                 
 图像名                      
PID           
会话名            会话#     
内存使用
                 
============= ====== ========= ====== 
============
                 
inetinfo.exe             
 1688         Console          
0           2,800 K   
 很明显,是inetinfo占用了80端口;inetinfo.exe主要用于支持微软Windows 
IIS网络服务的除错,这个程序对你系统的正常运行是非常重要的.
 
>taskkill /pid 1688 /F
          成功: 
已终止 PID 为 1688 的进程。
          
如果你很熟悉此进程,并确定可以终止,那么就直接使用上面的命令把PID为1688的进程终止.(这一步同样可以在任务管理器中执行,inetinfo.exe就是任务管理器中的映像名称,选中它,点击"结束进程"即可)
  再次确认是否成功终止,如果成功终止此次执行命令后应返回空            
强制终止 inetinfo.exe iis 服务:iisreset.exe /stop
1. net stop http
2. Sc config http start= disabled
原文:http://www.cnblogs.com/xiaoxiaonvzi/p/3597445.html