Get started link does not work in oracle 11g server

霸气de小男生 提交于 2019-12-03 04:44:58

Simple solution:

You need to directly tell where your http port is. To do so; open up the folder where your Oracle is stored and navigate to server folder( in my case C:\Oracle\oraclexe\app\oracle\product\11.2.0\server) in that folder right click to Get_Started file and choose properties. There you can hand type your http port which is usually 8080 in my case: ....127.0.0.1:8080/apex/f?p=4950

The problem should be solved.

Hope this helps you get through it..

Pinar U.S.

You can directly go to http://127.0.0.1:8080/apex/f?p=4950 and you will get Home Page Of your Oracle Database

Or you can make a new shortcut icon and set it's url to the previous link

This is what worked for me on Windows 8.1 with Update 1, 64-bit:

Create a SYSTEM level Environment variable named HTTPPORT with a value of 8080. Reboot. Click the Get Started link and this time it will work because it can resolve %HTTPPORT%.

I found the solution Right click on the shortcut > choose properties > go to security tab > Choose Authenticated Users > and give permission to do everything and now try to change the URL you will be able to do it Hope this help

Dr.KarimSaleh

Make sure these services are working:

  • OracleJobSchedulerXE
  • OracleMTSRecoveryService
  • OracleServiceXE
  • OracleXEClrAgent
  • OracleXETNSListener

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.

I have got the solution. I made Internet explorer my default browser and then add 127.0.0.1 Under 'Add this Web site to the zone'.

Just go where the file (Get_Started) is which is probably -> C:\oraclexe\app\oracle\product\11.2.0\server And then RENAME IT to any other name THAT's IT.

That worked for me.

user4130083

Using localhost instead of 127.0.0.1 worked for me.

AcaSurf AcaMaster

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.

Try to run it as administrator or with an admin user. I did it. It works

Vinay

Check your antivirus program, some of these softwares block the ports, unblock them, there you go it works!

Surely Oracle will have in some installations an bug that does not add the environment variable %HTTPPORT%

Add new enviroment variable (for user or system) with name HTTPPORT and value 8080 maybe u need restart

Mayank Kumar

To successfully make the Database_Oracle_Application_Express_11gr run do the following :

  • do Windows_key + R - it will open Run
  • type in services.msc
  • select Extended View from down below to see all the services
  • hit 'O' key to reach the Services starting alphabetically with 'O'
  • find the service named: OracleServiceXE
  • go right_click and move to properties
  • in properties: set the Startup Type to "Automatic". That's it.

try running your Database_Oracle again and successfully gain access.

Type to your browser address bar

http://127.0.0.1:8080/apex/f?p=4950

You must change port number 8080, only if you did select different HTTP port during install

Go through the oracle server folder like this C:\oraclexe\app\oracle\product\11.2.0\server\Get_Started.url and open the properties of Get_Started and changed the 'http://127.0.01:%HTTPPORT%/apex/f?p=4950' with this 'http://127.0.01:8080/apex/f?p=4950'

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!