Change Oracle port from port 8080

后端 未结 8 2209
终归单人心
终归单人心 2020-12-22 16:07

How do I change Oracle from port 8080? My Eclipse is using 8080, so I can\'t use that.

相关标签:
8条回答
  • 2020-12-22 17:06

    There are many Oracle components that run a web service, so it's not clear which you are referring to.

    For example, the web site port for standalone OC4J is configured in the j2ee/home/config/default-web-site.xml file:

    <web-site xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/web-site-10_0.xsd"
    port="8888" display-name="OC4J 10g (10.1.3) Default Web Site"
    schema-major-version="10" schema-minor-version="0" > 
    
    0 讨论(0)
  • 2020-12-22 17:10

    Login in with System Admin User Account and execute below SQL Procedure.

    begin
    dbms_xdb.sethttpport('Your Port Number');
    end;
    

    Then open the Browser and access the below URL

    http://127.0.0.1:YourPortNumber/apex/

    0 讨论(0)
提交回复
热议问题