OracleXE 에서 http 서비스 port 변경 방법
- 데이타베이스/Oracle
- 2011. 8. 15. 01:55
/**
* 문서번호: nabiro_201108150157
* 검색어: nabiro, oracle, 오라클, oracle xe, xe, oraclexe, 오라클xe, http, port
* 출처: http://daust.blogspot.com/2006/01/xe-changing-default-http-port.html
* 참조:
**/
* 문서번호: 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 설정
begin;
dbms_xdb.sethttpport(‘80’);
dbms_xdb.setftpport(‘2100’);
end;
'데이타베이스 > Oracle' 카테고리의 다른 글
oracle 에서 테이블 목록 또는 테이블 컬럼 확인 쿼리 (0) | 2011.08.15 |
---|---|
oracle 에서 계정에 권한 주기 (0) | 2011.08.15 |
oracle 에서 계정 생성하기 (0) | 2011.08.15 |
oracle 에서 tablespace 생성하기 (0) | 2011.08.15 |
Oracle 에서 scott 계정 락해제 방법 (0) | 2011.07.31 |