Change Oracle port from port 8080

后端 未结 8 2241
终归单人心
终归单人心 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条回答
  •  -上瘾入骨i
    2020-12-22 17:05

    From Start | Run open a command window. Assuming your environmental variables are set correctly start with the following:

    C:\>sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Aug 26 10:40:44 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    SQL> connect
    Enter user-name: system
    Enter password: 
    Connected.
    
    SQL> Exec DBMS_XDB.SETHTTPPORT(3010); [Assuming you want to have HTTP going to this port]    
    PL/SQL procedure successfully completed.
    
    SQL>quit 
    

    then open browser and use 3010 port.

提交回复
热议问题