Change default Http Port in Oracle Database 11g Express Edition
To change Http Port in Oracle Database 11g Express Edition, after installation it takes 8080 as default port.
If you want to change default port, please find below mention instruction.
Open up a SQL Plus session to your XE instance, then type the following to determine the port values
Select existing value of http and ftp port.
select dbms_xdb.gethttpport as "HTTP-Port", dbms_xdb.getftpport as "FTP-Port" from dual;
Update existing value with new value.
begin dbms_xdb.sethttpport('1008'); dbms_xdb.setftpport('2100'); end;
Verify new value of http and ftp port.
select dbms_xdb.gethttpport as "HTTP-Port", dbms_xdb.getftpport as "FTP-Port" from dual;
If you want to change default port, please find below mention instruction.
Open up a SQL Plus session to your XE instance, then type the following to determine the port values
Select existing value of http and ftp port.
select dbms_xdb.gethttpport as "HTTP-Port", dbms_xdb.getftpport as "FTP-Port" from dual;
Update existing value with new value.
begin dbms_xdb.sethttpport('1008'); dbms_xdb.setftpport('2100'); end;
Verify new value of http and ftp port.
select dbms_xdb.gethttpport as "HTTP-Port", dbms_xdb.getftpport as "FTP-Port" from dual;
Comments
Post a Comment