Change Oracle port from port 8080

后端 未结 8 2242
终归单人心
终归单人心 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: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/

提交回复
热议问题