/** * 문서번호: nabiro_201108150157 * 검색어: nabiro, oracle, 오라클, oracle xe, xe, oraclexe, 오라클xe, http, port * 출처: http://daust.blogspot.com/2006/01/xe-changing-default-http-port.html * 참조: **/ Oracle XE 버전에서 HTTP 리스너용 포트 번호를 8080으로 하지 않고 다른 번호로 하려면 아래의 쿼리문을 sys 또는 system 계정으로 실행하면 됩니다. 서비스 port 조회 select dbms_xdb.gethttpport as “HTTP-Port”, dbms_xdb.getftpport as “FTP-Port” from dual; 서비스 port 설정 beg..