参考:
1)你的weblogic没有安装、配置好,如果要重装,建议要手工删除bea对应的目录;
2)你的iis是否有问题,建议试试http://localhost  看看是否能打开iis的帮助文档。

解决方案 »

  1.   

    我启动domain里面的startweblogic,出现下面信息:
    Enter username to boot WebLogic server:thursday
    Enter password to boot WebLogic server:
    Starting WebLogic Server...
    <2003-7-16 下午03时14分54秒> <Notice> <Management> <140005> <Loading configu
    on E:\bea\user_projects\mydomain\.\config.xml>
    <2003-7-16 下午03时14分58秒> <Notice> <Security> <090082> <Security initiali
     using realm myrealm.>
    <2003-7-16 下午03时14分59秒> <Notice> <WebLogicServer> <000327> <Starting We
    ic Admin Server "myserver" for domain "mydomain">
    <2003-7-16 下午03时15分07秒> <Notice> <Management> <141052> <Application Pol
    started for development server.>
    <2003-7-16 下午03时15分08秒> <Emergency> <WebLogicServer> <000351> <Unable t
    eate a server socket on Channel Default for port: 7001. java.net.BindExcepti
    Address in use: JVM_Bind Perhaps another process is using port 7001.>
    <2003-7-16 下午03时15分08秒> <Emergency> <WebLogicServer> <000351> <Unable t
    eate a server socket on Channel Default for port: 7002. java.net.BindExcepti
    Address in use: JVM_Bind Perhaps another process is using port 7002.>
    <2003-7-16 下午03时15分09秒> <Emergency> <Security> <090085> <Server failed
    ind to any port such that it is not reachable from the console.>
    <2003-7-16 下午03时15分09秒> <Emergency> <WebLogicServer> <000342> <Unable t
    itialize the server: Fatal initialization exception>
    ***************************************************************************
    The WebLogic Server did not start up properly.
    Reason: Fatal initialization exception
    ***************************************************************************端口被占用了?那是不是只要设domain的时候改一下端口,还是一定要用7001端口?还有,怎样查看那个程序占用端口??谢谢各位了
      

  2.   

    你的端口7001被其他程序占用了,可以修改config.xml把端口修改,比如7101.
    访问时:http://localhost:7101/console
      

  3.   

    命令行输入netstat,能查看端口占用情况
      

  4.   

    直接修改config.xml文件里面的 ListenPort="7001" 
    7001科一改成别的端口,如:7003
      

  5.   

    将web.xml文件里面的 ListenPort="7001"  中的7001改成别的,如:7003
      

  6.   

    我用netstat -a Active Connections  Proto  Local Address          Foreign Address        State
      TCP    ibm49:epmap            ibm49:0                LISTENING
      TCP    ibm49:microsoft-ds     ibm49:0                LISTENING
      TCP    ibm49:1026             ibm49:0                LISTENING
      TCP    ibm49:1034             ibm49:0                LISTENING
      TCP    ibm49:1437             ibm49:0                LISTENING
      TCP    ibm49:1441             ibm49:0                LISTENING
      TCP    ibm49:netbios-ssn      ibm49:0                LISTENING
      TCP    ibm49:1437             207.46.107.33:1863     ESTABLISHED好像没有占用,很奇怪,我们学校机房512m内存IBM的机器都不能跑weblogic(console不能打开),可是旁边256m内存的却没什么问题,怎么回事呢?
      

  7.   

    是不是把weblogic装成Windows服务了?到管理工具\服务 里面看一下。如果是,就停掉,改成手动。或运行uninstallNtService.cmd取消。
      

  8.   

    端口占用,重起机器,再起SERVER试试