Wednesday, August 24, 2011

Oracle XE change default http port

By default, 8080 is the port of oracle xe http listener, but normally we keep 8080 for web or application server. To change Oracle XE http port, just run sqlplus command then:

SQL> begin
2 dbms_xdb.sethttpport('9090');
3 end;
5 /


No comments:

Post a Comment