본문 바로가기
IT/Oracle

Oracle 19c em express 사용기

by 할량골 2021. 6. 15.

 

기존 이름이 db control? 11g 때 emca로 설치해 본 뒤로 em 화면을 잠깐 보고 싶어서 설치해보려고 했다.

[oracle@hyodb1-orcl1 bin]$ emca
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128M; support was removed in 8.0

하.. 에러발생

[oracle@hyodb1-orcl1 ~]$ sqlplus / as sysdba

SQL*Plus: Release 19.0.0.0.0 - Production on Tue Jun 15 11:02:41 2021
Version 19.11.0.0.0

Copyright (c) 1982, 2020, Oracle.  All rights reserved.


Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.11.0.0.0

SQL> @?/rdbms/admin/execemx omx

Session altered.


no rows selected

old   1: select nvl( '&1','omx') p1 from dual
new   1: select nvl( 'omx','omx') p1 from dual

P1
------
omx


PL/SQL procedure successfully completed.


Session altered.

SQL> 

SQL> @?/rdbms/admin/execemx omx

java jet 방식 : 성능지표만 보여주는 것 같음..

SQL> @?/rdbms/admin/execemx emx

기존 플래시 방식

 

스크립트 돌리고 접속하려고 하니 접속 안됨.. 포트 설정 안 돼있네.. 

[oracle@hyodb1-orcl1 bin]$ sqlplus / as sysdba

SQL*Plus: Release 19.0.0.0.0 - Production on Tue Jun 15 11:11:54 2021
Version 19.11.0.0.0

Copyright (c) 1982, 2020, Oracle.  All rights reserved.


Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.11.0.0.0

SQL> select dbms_xdb_config.gethttpsport() from dual;

DBMS_XDB_CONFIG.GETHTTPSPORT()
------------------------------
     0

SQL> EXEC DBMS_XDB_CONFIG.SETHTTPSPORT(5500);

PL/SQL procedure successfully completed.

SQL> select dbms_xdb_config.gethttpsport() from dual;

DBMS_XDB_CONFIG.GETHTTPSPORT()
------------------------------
  5500

SQL> 

화면은 나쁘지 않지만 얼마나 성능 정보를 직관적으로 볼 수 있을지 모르겠다.

--기존 플래쉬 방식으로 해봄.
SQL> @?/rdbms/admin/execemx emx

Session altered.


no rows selected

old   1: select nvl( '&1','omx') p1 from dual
new   1: select nvl( 'emx','omx') p1 from dual

P1
------
emx


PL/SQL procedure successfully completed.


Session altered.

SQL> 


-- flash 방식은 나중에 더 알아봐야되겠다.. 19c 화면이 도통 나오질 않는다..

 

'IT > Oracle' 카테고리의 다른 글

19c 패치 후 rollback  (0) 2021.07.09
Oracle 11g emca  (0) 2021.06.15
filesystem to ASM 데이터파일 변경  (0) 2021.06.14
Oracle Statspack  (0) 2021.05.26
ASM disk 추가/삭제  (0) 2018.07.02

댓글