修改Oracle 10g XE WEB服务器端口 – Modify the Oracle XE web console server port

Categories: Database; Tagged with: ; @ August 21st, 2011 13:06

we need to change one port when using Oracle 10g XE and Tomcat/JBoss, because they all use the 8080 port.
It’s very easy to change the web server port, just need to update some config xml file.
For Oracle, we just need to execute a SQL:

After connect to the server as sys admin, execute the following SQL:
begin
dbms_xdb.sethttpport(‘8888’);
end;
/

The port will be updated to 8888, no need to restart the oracle service.

<->



// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.