Get started link does not work in oracle 11g server

后端 未结 16 2214
独厮守ぢ
独厮守ぢ 2021-02-07 01:43

I have started using Oracle database server on Windows 7 64 bit OS and I have encountered the following error.

\"Error- Windows cannot find \'http://127.0.01:%HT         


        
16条回答
  •  滥情空心
    2021-02-07 02:09

    The correct solution is to match the entries in the file:

    C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN\listener.ora

    (the entries with the --> mark)

    :

    LISTENER =
    
    (DESCRIPTION_LIST =
    
    (DESCRIPTION =
    
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    
    --> (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    
    --> (ADDRESS = (PROTOCOL = TCP)(HOST = myserver.company.com)(PORT = 1521))
    
    )
    
    )
    
    :
    

    With the entries in the file:

    C:\Windows\System32\drivers\etc\hosts

    (the entries with the --> mark)

    :
    
    --> 127.0.0.1 localhost
    
    --> 1.2.3.4 myserver myserver.company.com
    
    :
    

    Finally, under Administrator account do:

    C:> lsnrctl stop
    
    C:> lsnrctl start
    

    Solved. No need for changing name, no drag & drop.

提交回复
热议问题