Get started link does not work in oracle 11g server

后端 未结 16 2182
独厮守ぢ
独厮守ぢ 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:12

    This article works for me: https://orlandoolguin.wordpress.com/2012/06/10/configuracion-de-apex-en-oracle-11g/

    Maybe you need unlock the anonymous account to start Apex. Use this code on cmd:

    C:\oracle\product\11.2.0\db_1>sqlplus / as sysdba
    
    SQL> alter user anonymous account unlock; 
    User altered.
    

    If doesn't work, you can try previous steps defined on the article.

    I hope you solve this issue.

提交回复
热议问题