Dataguard 환경에서 sys의 암호를 바꾸면 passwd 화일을 standby 로 copy 해줘야 ora-16191 에러가 안 난다.


매번 Copy 하기 귀찮으면 DB단에서..


SQL> GRANT SYSOPER to &USER; 


SQL> ALTER SYSTEM SET REDO_TRANSPORT_USER = <user_name> SID='*';

Posted by pat98

10g -> 11g 로 upgrade 시 timezone 관련 에러

 

11g 엔진 설치후..
SQL> starup upgrade 

catupgrade.sql 실행시 DST 관련 에러가 날것임


SQL> SELECT PROPERTY_NAME, SUBSTR(property_value, 1, 30) value
FROM DATABASE_PROPERTIES
WHERE PROPERTY_NAME LIKE ‘DST_%’
ORDER BY PROPERTY_NAME;


SQL> SELECT * FROM v$timezone_file;

FILENAME VERSION
——————– ———-
timezlrg_14.dat 14

SQL> select VERSION from v$timezone_file;

VERSION
———-
14

SQL> select TZ_VERSION from registry$database;

TZ_VERSION
———-
4

이 부분에서 TZ_VERSION 이 틀리거나 아예 값이 안 나올거임.

TZ_VERSION 값을 update 해줌

SQL> update registry$database set TZ_VERSION = (select version FROM v$timezone_file);

SQL> commit;

SQL> select TZ_VERSION from registry$database;

TZ_VERSION
———-
14


다시 catupgrade 진행!!

Posted by pat98

- Primary 쪽 확인 -

 

set pages 500
select thread#, sequence# from v$thread;

select dest_id, database_mode, recovery_mode, protection_mode,
standby_logfile_count,standby_logfile_active,archived_seq#, status
from v$archive_dest_status
where rownum <=2;

set lines 150
col destination format a30
col error format a20
select dest_id,destination,status,target,schedule,process,error from v$archive_dest
where rownum <=2;


 

- Standby 쪽 확인 -

 

SET HEADING OFF
prompt ==================================================================
prompt = Data Guard Monitor for Standby Site
select '= Time Computed: '||MIN(TIME_COMPUTED)
from v$dataguard_stats
/
prompt ==================================================================

SET PAGESIZE 124
SET HEADING ON
SET FEEDBACK OFF
SET TIMING OFF
COL DB_NAME FORMAT A8
COL HOSTNAME FORMAT A10
COL switchover_status FORMAT A15
COL RECEIVED1 FORMAT 999999
COL APPLIED1 FORMAT 9999
COL RECEIVED2 FORMAT 999999
COL APPLIED2 FORMAT 9999
COL APPLIED_TIME FORMAT A20
COL RECEIVED_TIME2 FORMAT A20
COL APPLIED_TIME2 FORMAT A20
COL RECEIVED_TIME FORMAT A20
COL MRP_DELAY FORMAT A5
COL NAME FORMAT A40
COL VALUE FORMAT A30


SELECT DB_NAME, database_role,switchover_status, open_mode, HOSTNAME
FROM
(
SELECT NAME DB_NAME, database_role, open_mode,switchover_status
FROM V$DATABASE
),
(
SELECT UPPER(SUBSTR(HOST_NAME,1,(DECODE(INSTR(HOST_NAME,'.'),0,LENGTH(HOST_NAME),
(INSTR(HOST_NAME,'.')-1))))) HOSTNAME
FROM V$INSTANCE
)
/

prompt
prompt ==================================================================
prompt = Standby Log Status
prompt ==================================================================
select THREAD#,GROUP#,STATUS from v$standby_log order by GROUP#;

prompt
prompt ==================================================================
prompt = LOG RECEIVED  and APPLIED STATUS
prompt ==================================================================
prompt '                       THREAD#1                           THREAD#2             '
prompt '            ------------------------------   ----------------------------------'

set heading off
SELECT 'RECEIVED'||chr(9)||rtrim(received1)||'-> '||received_time1||chr(9)||rtrim(received2)||'-> '||received_time2
FROM
(select max(sequence#) received1, to_char(max(next_time),'YYYY/MM/DD HH24:MI:SS') RECEIVED_TIME1
from V$ARCHIVED_LOG
where thread#=1
),
(select max(sequence#) received2, to_char(max(next_time),'YYYY/MM/DD HH24:MI:SS') RECEIVED_TIME2
from V$ARCHIVED_LOG
where thread#=2
)
/


SELECT 'APPLIED '||chr(9)||rtrim(applied1)||'-> '||applied_time1||chr(9)||rtrim(applied2)||'-> '||applied_time2
from
(select MAX(SEQUENCE#) applied1, TO_CHAR(MAX(COMPLETION_TIME),'YYYY/MM/DD HH24:MI:SS') APPLIED_TIME1
from V$ARCHIVED_LOG where applied='YES' and thread#=1
),
(select MAX(SEQUENCE#) applied2, TO_CHAR(MAX(COMPLETION_TIME),'YYYY/MM/DD HH24:MI:SS') APPLIED_TIME2
from V$ARCHIVED_LOG where applied='YES' and thread#=2
)
/

prompt
SET HEADING OFF

prompt ==================================================================
prompt = DG Stats
prompt ==================================================================

select
NAME,
VALUE Value
from v$dataguard_stats
/

SET HEADING ON

prompt

prompt ==================================================================
prompt = MRP Status (No Rows Return) => MRP down
prompt ==================================================================

COL MRP_DELAY FORMAT A10

select inst_id,process, mrp_delay_setting
from
(select inst_id,process
 from gv$managed_standby where process like 'MRP%'
),
(
select to_char(delay_mins) MRP_DELAY_SETTING from gv$managed_standby where process = 'MRP0'
)
/

prompt

Posted by pat98

- Dataguard stop 절차

 

standby에서

 

SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;

 

Primary에서

 

SQL> ALTER SYSTEM SET log_archive_dest_state_2='DEFER' SCOPE=BOTH SID='*';

 

        srvctl stop database -d RAC or shutdown immediate

 

- Dataguard start 절차

 

standby에서

 

SQL> startup mount

 

SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE DICONNECT;

 

primary에서


SQL> ALTER SYSTEM SET log_archive_dest_state_2='ENABLE' SCOPE=BOTH SID='*';

       

        srvctl start database -d RAC  or startup

 

Posted by pat98

2015. 6. 17. 10:47 오라클

dataguard archive policy


Dataguard 에서 archive log 를 막 지우지 않고 standby 에 redo apply 된거 확인하고 지우고 싶다면?

primary에서

CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON ALL STANDBY;


Posted by pat98

2015. 6. 11. 17:23 오라클

exadata ExaWatcher


Exadata ExaWatcher 기본명령어


위치 /opt/oracle.ExaWatcher/


1. ExaWatcher 중지


# ./ExaWatcher.sh --stop


2. ExaWatcher 중지


# /opt/oracle.cellos/vldrun -script oswatcher

 

3. ExaWatcher 동작확인


# ps -ef | grep -i ExaWatcher


ExaWatcher 가 수집하는 정보


- Diskinfo.ExaWatcher

# Collection Module:    DiskinfoExaWatcher

# Collection Command:   /bin/cat /proc/diskstats


- IBCardInfo.ExaWatcher

# Collection Module:    IBCardInfoExaWatcher

# Collection Command:   /opt/oracle.ExaWatcher/IBCardInfoExaWatcher.sh 2>/dev/null


- IBprocs.ExaWatcher

# Collection Module:    IBprocsExaWatcher

# Collection Command:   /bin/cat /sys/class/net/bondib0/bonding/active_slave

# Collection Command:   /bin/cat /sys/class/net/ib0/carrier

# Collection Command:   /bin/cat /sys/class/net/ib1/carrier

# Collection Command:   /usr/sbin/ibstatus

# Collection Command:   /usr/bin/ibv_devinfo


- Iostat.ExaWatcher

# Collection Module:    IostatExaWatcher

# Collection Command:   /usr/bin/iostat -t -x  5  720


- LGWR.ExaWatcher

# Collection Module:    LGWRExaWatcher

# Collection Command:   /opt/oracle.ExaWatcher/LGWRExaWatcher.sh


- Lsof.ExaWatcher

# Collection Module:    LsofExaWatcher

# Collection Command:   /usr/sbin/lsof +c0 -w +L -b -R -i

# Collection Command:   /usr/sbin/lsof +c0 -w +L -b -R -U

# Collection Command:   /usr/sbin/lsof +c0 -w +L1 -b -R


- MegaRaidFW.ExaWatcher

# Collection Module:    MegaRaidFWExaWatcher

# Collection Command:   /opt/MegaRAID/MegaCli/MegaCli64 fwtermlog dsply -a0


- Meminfo.ExaWatcher

# Collection Module:    MeminfoExaWatcher

# Collection Command:   /bin/cat /proc/meminfo


- Mpstat.ExaWatcher

# Collection Module:    MpstatExaWatcher

# Collection Command:   /usr/bin/mpstat -P ALL  5  720


- Netstat.ExaWatcher

# Collection Module:    NetstatExaWatcher

# Collection Command:   /bin/netstat -a -i -n

# Collection Command:   /bin/netstat -s

# Collection Command:   /bin/netstat -n -p -l


- Ps.ExaWatcher

# Collection Module:    PsExaWatcher

# Collection Command:   /bin/ps -eo flags,s,ruser,pid,ppid,c,psr,pri,ni,addr,sz,wchan,stime,tty,time,cmd


- RDSinfo.ExaWatcher

# Collection Module:    RDSinfoExaWatcher

# Collection Command:   /opt/oracle.ExaWatcher/RDSinfoExaWatcher.sh 2>/dev/null


- Slabinfo.ExaWatcher

# Collection Module:    SlabinfoExaWatcher

# Collection Command:   /bin/cat /proc/slabinfo


- Top.ExaWatcher

# Collection Module:    TopExaWatcher

# Collection Command:   /usr/bin/top -b -d 5 -n 720


- Vmstat.ExaWatcher

# Collection Module:    VmstatExaWatcher

# Collection Command:   /usr/bin/vmstat  5  2 

Posted by pat98

2015. 6. 11. 16:32 오라클

Exadata 용량계산


 

고객이 생각하는 용량과 실제 사용할수 있는 용량이 차이가 난다. 왜일까?

 

- 엑사데이타 용량 계산법


Quarter Rack
경우
- 2 DB nodes
- 3 Storage Cells

 3 Cell
서버 (High Performance) 아래와 같이 계산될수 있다.

Step 1: RAW
사이즈 계산 


우선 전체 용량을 구해보면 아래와 같다.

 

전체 Raw 용량 => Cell 12EA disk * Disk 600G * 3 Cell

                 => 21,600GB 또는  21.09TB

그런데 Cell 서버의 1,2 디스크에서 OS Linux 영역으로 30G 할당이 된다. 그래서 기본으로 디스크 그룹은 남은 10개의 디스크의 30G 용량으로 생성된다.


그리하여 DBFS 디스크그룹은 아래와 같이 용량을 차지 한다.

 

Cell에서 10EA 디스크 * 디스크에서 30 GB  * 3 cell  =   DBFS => 900 GB

개별 디스크 600G-30G = 570G 사용가능하며 전체 디스크가 12EA * 3 cell  이므로

 


570 * 12 * 3 = 20,520 GB or  20.03TB 

Step 2:
미러링을 고려해 보자

 NORMAL Redundancy
설정하여 이중화 되었으므로 용량의 반만 사용할수 있다.

 

 20.03/2 = 10.01TB.

Step 3: fault tolerance
고려한 여유공간 확보 

Disk Failure Coverage(DFC)
고려하면 Cell 에서 디스크하나가 나갔을 때를 대비한 용량은 600G 디스크 하나의 용량과 같다.

 

NOTE: that is a very important part. You need to plan for a Disk failure coverage or for complete cell node failure coverge. The ORACLE support document "Understanding ASM Capacity and Reservation of Free Space in Exadata (Doc ID 1551288.1)" clearly describes the different strategies and their pros and cos.

NOTE: After the application of BPS10 (11.2.0.4.10) the default is now the Disk Failure Coverage rather than the Cell Failure Coverage.


그래서 디스크 용량 하나가 빠진다.  10.01 TB - 0.57TB =>  9.4 TB

Step 4: Disk
그룹의 할당비율을 결정한다. 기본이 6;4 이므로 40%  recovery area 위한 공간이 된다.

그래서 최종적으로 계산된 용량은 아래와 같다.


 RECO Diskgroup  =>
 3.76 TB
 DATA Diskgroup  =>
 5.64TB


출처 :

 

http://jehanzebdba.blogspot.kr/2014/09/exadata-storage-space-calculation.html

 

Posted by pat98

Exadata Cell Upgrade 하기 


11.2.3.3.0.131014.1 -> 11.2.3.3.1.140708


Cell Upgrade 는 DB node 에서 진행한다.


[EXA1]root@exa1:/root# dcli -g cell_group -l root /opt/oracle.cellos/ipconf -verify

gtceladm01: Verifying of Exadata configuration file /opt/oracle.cellos/cell.conf

gtceladm01: Done. Configuration file /opt/oracle.cellos/cell.conf passed all verification checks

gtceladm02: Verifying of Exadata configuration file /opt/oracle.cellos/cell.conf

gtceladm02: Done. Configuration file /opt/oracle.cellos/cell.conf passed all verification checks

gtceladm03: Verifying of Exadata configuration file /opt/oracle.cellos/cell.conf

gtceladm03: Done. Configuration file /opt/oracle.cellos/cell.conf passed all verification checks


압축해제


[EXA1]root@exa1:/root# unzip p19166601_112331_Linux-x86-64.zip

Archive:  p19166601_112331_Linux-x86-64.zip

   creating: patch_11.2.3.3.1.140708/

  inflating: patch_11.2.3.3.1.140708/sundcs_36p_repository_2.1.3_4.pkg  

  inflating: patch_11.2.3.3.1.140708/upgradeIBSwitch.sh  

   creating: patch_11.2.3.3.1.140708/linux.db.rpms/

  inflating: patch_11.2.3.3.1.140708/linux.db.rpms/perl-XML-Parser-2.34-6.1.2.2.1.x86_64.rpm  

   creating: patch_11.2.3.3.1.140708/plugins/

  inflating: patch_11.2.3.3.1.140708/plugins/010-check_17854520.sh  

  inflating: patch_11.2.3.3.1.140708/plugins/000-check_dummy_bash  

  inflating: patch_11.2.3.3.1.140708/plugins/000-check_dummy_perl  

  inflating: patch_11.2.3.3.1.140708/11.2.3.3.1.140708.iso  

....................


[EXA1]root@exa1:/root# crsctl stop crs

CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'exa1'

CRS-2673: Attempting to stop 'ora.crsd' on 'exa1'

CRS-2790: Starting shutdown of Cluster Ready Services-managed resources on 'exa1'

CRS-2673: Attempting to stop 'ora.registry.acfs' on 'exa1'

CRS-2673: Attempting to stop 'ora.exa.db' on 'exa1'

CRS-2673: Attempting to stop 'dbfs_mount' on 'exa1'

CRS-2673: Attempting to stop 'ora.LISTENER_SCAN1.lsnr' on 'exa1'

CRS-2673: Attempting to stop 'ora.LISTENER.lsnr' on 'exa1'

CRS-2677: Stop of 'dbfs_mount' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.fsdb.db' on 'exa1'

CRS-2677: Stop of 'ora.LISTENER_SCAN1.lsnr' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.scan1.vip' on 'exa1'

CRS-2677: Stop of 'ora.LISTENER.lsnr' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.exa1.vip' on 'exa1'

CRS-2677: Stop of 'ora.registry.acfs' on 'exa1' succeeded

CRS-2677: Stop of 'ora.fsdb.db' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.DBFS.dg' on 'exa1'

CRS-2677: Stop of 'ora.exa.db' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.DATA.dg' on 'exa1'

CRS-2673: Attempting to stop 'ora.RECO.dg' on 'exa1'

CRS-2677: Stop of 'ora.exa1.vip' on 'exa1' succeeded

CRS-2672: Attempting to start 'ora.exa1.vip' on 'exa2'

CRS-2677: Stop of 'ora.RECO.dg' on 'exa1' succeeded

CRS-2677: Stop of 'ora.DATA.dg' on 'exa1' succeeded

CRS-2677: Stop of 'ora.scan1.vip' on 'exa1' succeeded

CRS-2672: Attempting to start 'ora.scan1.vip' on 'exa2'

CRS-2676: Start of 'ora.exa1.vip' on 'exa2' succeeded

CRS-2676: Start of 'ora.scan1.vip' on 'exa2' succeeded

CRS-2672: Attempting to start 'ora.LISTENER_SCAN1.lsnr' on 'exa2'

CRS-2676: Start of 'ora.LISTENER_SCAN1.lsnr' on 'exa2' succeeded

CRS-2677: Stop of 'ora.DBFS.dg' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.asm' on 'exa1'

CRS-2677: Stop of 'ora.asm' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.ons' on 'exa1'

CRS-2677: Stop of 'ora.ons' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.net1.network' on 'exa1'

CRS-2677: Stop of 'ora.net1.network' on 'exa1' succeeded

CRS-2792: Shutdown of Cluster Ready Services-managed resources on 'exa1' has completed

CRS-2677: Stop of 'ora.crsd' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.mdnsd' on 'exa1'

CRS-2673: Attempting to stop 'ora.ctssd' on 'exa1'

CRS-2673: Attempting to stop 'ora.evmd' on 'exa1'

CRS-2673: Attempting to stop 'ora.asm' on 'exa1'

CRS-2673: Attempting to stop 'ora.drivers.acfs' on 'exa1'

CRS-2677: Stop of 'ora.ctssd' on 'exa1' succeeded

CRS-2677: Stop of 'ora.evmd' on 'exa1' succeeded

CRS-2677: Stop of 'ora.mdnsd' on 'exa1' succeeded

CRS-2677: Stop of 'ora.asm' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.cluster_interconnect.haip' on 'exa1'

CRS-2677: Stop of 'ora.cluster_interconnect.haip' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.cssd' on 'exa1'

CRS-2677: Stop of 'ora.drivers.acfs' on 'exa1' succeeded

CRS-2677: Stop of 'ora.cssd' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.diskmon' on 'exa1'

CRS-2673: Attempting to stop 'ora.crf' on 'exa1'

CRS-2677: Stop of 'ora.crf' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.gipcd' on 'exa1'

CRS-2677: Stop of 'ora.diskmon' on 'exa1' succeeded

CRS-2677: Stop of 'ora.gipcd' on 'exa1' succeeded

CRS-2673: Attempting to stop 'ora.gpnpd' on 'exa1'

CRS-2677: Stop of 'ora.gpnpd' on 'exa1' succeeded

CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'exa1' has completed

CRS-4133: Oracle High Availability Services has been stopped.


[EXA1]root@exa1:/root# dcli -g /root/cell_group -l root 'service celld stop'

gtceladm01: 

gtceladm01: Stopping the RS, CELLSRV, and MS services...

gtceladm01: The SHUTDOWN of services was successful.

gtceladm02: 

gtceladm02: Stopping the RS, CELLSRV, and MS services...

gtceladm02: The SHUTDOWN of services was successful.

gtceladm03: 

gtceladm03: Stopping the RS, CELLSRV, and MS services...

gtceladm03: The SHUTDOWN of services was successful.


[EXA1]root@exa1:/root# dcli -g /root/cell_group -l root 'service celld status'

gtceladm01: rsStatus:            stopped

gtceladm01: msStatus:            unknown

gtceladm01: cellsrvStatus:       unknown

gtceladm02: rsStatus:            stopped

gtceladm02: msStatus:            unknown

gtceladm02: cellsrvStatus:       unknown

gtceladm03: rsStatus:            stopped

gtceladm03: msStatus:            unknown

gtceladm03: cellsrvStatus:       unknown

[EXA1]root@exa1:/root# 


[EXA1]root@exa1:/root#  dcli -g /root/cell_group -l root 'sync;sync;sync'


[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708#  ./patchmgr -cells /root/cell_group -reset_force


2015-01-20 13:36:41 +0900 :DONE: reset_force


[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708#  ./patchmgr -cells /root/cell_group -cleanup


2015-01-20 13:37:54 +0900        :Working: DO: Cleanup ...

2015-01-20 13:37:55 +0900        :SUCCESS: DONE: Cleanup


-ignore_alerts 옵션 없이


[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708#  ./patchmgr -cells /root/cell_group -patch_check_prereq


2015-01-20 13:39:03 +0900        :Working: DO: Initialize files, check space and state of cell services. Up to 1 minute ...

FAILED for following cells


gtceladm01:  gtceladm01 172.16.40.101 2015-01-20 13:39:38 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm01.log for details. Correct this before retrying the patch.

gtceladm02:  gtceladm02 172.16.40.102 2015-01-20 13:20:53 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm02.log for details. Correct this before retrying the patch.

gtceladm03:  gtceladm03 172.16.40.103 2015-01-20 13:21:40 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm03.log for details. Correct this before retrying the patch.

2015-01-20 13:39:36 +0900        :FAILED: Details in files <cell_name>.log /root/patch_11.2.3.3.1.140708/patchmgr.stdout, /root/patch_11.2.3.3.1.140708/patchmgr.stderr

2015-01-20 13:39:36 +0900        :FAILED: DONE: Initialize files, check space and state of cell services.

[ERROR] Patch prerequisite checks failed. Please run cleanup before retrying.


-ignore_alerts 옵션 주고


[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708#  ./patchmgr -cells /root/cell_group -patch_check_prereq -ignore_alerts


2015-01-20 13:46:10 +0900        :Working: DO: Initialize files, check space and state of cell services. Up to 1 minute ...

2015-01-20 13:46:27 +0900        :SUCCESS: DONE: Initialize files, check space and state of cell services.

2015-01-20 13:46:27 +0900        :Working: DO: Copy, extract prerequisite check archive to cells. If required start md11 mismatched partner size correction. Up to 40 minutes ...

2015-01-20 13:46:41 +0900 Wait correction of degraded md11 due to md partner size mismatch. Up to 30 minutes.


                                          

2015-01-20 13:46:42 +0900        :SUCCESS: DONE: Copy, extract prerequisite check archive to cells. If required start md11 mismatched partner size correction.

2015-01-20 13:46:42 +0900        :Working: DO: Check prerequisites on all cells. Up to 2 minutes ...

2015-01-20 13:47:28 +0900        :SUCCESS: DONE: Check prerequisites on all cells.

2015-01-20 13:47:28 +0900        :Working: DO: Execute plugin check for Patch Check Prereq ...

2015-01-20 13:47:28 +0900 :INFO: Patchmgr plugin start: Prereq check for exposure to bug 17854520 v1.1. Details in logfile /root/patch_11.2.3.3.1.140708/patchmgr.stdout.

2015-01-20 13:47:28 +0900 :INFO: This plugin checks dbhomes across all nodes with oracle-user ssh equivalence, but only for those known to the local system. dbhomes that exist only on remote nodes must be checked manually.

2015-01-20 13:47:28 +0900 :SUCCESS: No exposure to bug 17854520 with non-rolling patching

2015-01-20 13:47:28 +0900        :SUCCESS: DONE: Execute plugin check for Patch Check Prereq.


[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708#  ./patchmgr -cells /root/cell_group -patch

NOTE Cells will reboot during the patch or rollback process.

NOTE For non-rolling patch or rollback, ensure all ASM instances using

NOTE the cells are shut down for the duration of the patch or rollback.

NOTE For rolling patch or rollback, ensure all ASM instances using

NOTE the cells are up for the duration of the patch or rollback.


WARNING Do not start more than one instance of patchmgr.

WARNING Do not interrupt the patchmgr session.

WARNING Do not alter state of ASM instances during patch or rollback.

WARNING Do not resize the screen. It may disturb the screen layout.

WARNING Do not reboot cells or alter cell services during patch or rollback.

WARNING Do not open log files in editor in write mode or try to alter them.


NOTE All time estimates are approximate. Timestamps on the left are real.

NOTE You may interrupt this patchmgr run in next 60 seconds with control-c.



2015-01-20 13:51:22 +0900        :Working: DO: Initialize files, check space and state of cell services. Up to 1 minute ...

FAILED for following cells


gtceladm01:  gtceladm01 172.16.40.101 2015-01-20 13:51:32 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm01.log for details. Correct this before retrying the patch.

gtceladm02:  gtceladm02 172.16.40.102 2015-01-20 13:32:46 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm02.log for details. Correct this before retrying the patch.

gtceladm03:  gtceladm03 172.16.40.103 2015-01-20 13:33:33 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm03.log for details. Correct this before retrying the patch.

2015-01-20 13:51:30 +0900        :FAILED: Details in files <cell_name>.log /root/patch_11.2.3.3.1.140708/patchmgr.stdout, /root/patch_11.2.3.3.1.140708/patchmgr.stderr

2015-01-20 13:51:30 +0900        :FAILED: DONE: Initialize files, check space and state of cell services.

[ERROR] Patch prerequisite checks failed. Please run cleanup before retrying.


[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708# 



================PatchMgr run started 2015-01-20 13:50:15 +0900 ===========

With arguments: -cells /root/cell_group -patch

2015-01-20 13:51:22 +0900        :Working: DO: Initialize files, check space and state of cell services. Up to 1 minute ...

2015-01-20 13:51:29 +0900 ++++++++++++++++++ Logs so far begin ++++++++++

gtceladm01: 

gtceladm01: 2015-01-20 13:51:26 +0900 [INFO]: patchmgr launch attempt from exa1.gtplus.co.kr_172.16.20.1_root_patch_11.2.3.3.1.140708.

gtceladm01: 2015-01-20 13:51:26 +0900 [INFO]: dostep called: prechk:no:1486 patch_prereq -no-auto-rollback non_rolling 900 3600 900 36000 default noforce

gtceladm01: _EXIT_ERROR_Cell gtceladm01 172.16.40.101 2015-01-20 13:51:32 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm01.log for details. Correct this before retrying the patch.

gtceladm02: 

gtceladm02: 2015-01-20 13:32:41 +0900 [INFO]: patchmgr launch attempt from exa1.gtplus.co.kr_172.16.20.1_root_patch_11.2.3.3.1.140708.

gtceladm02: 2015-01-20 13:32:41 +0900 [INFO]: dostep called: prechk:no:1486 patch_prereq -no-auto-rollback non_rolling 900 3600 900 36000 default noforce

gtceladm02: _EXIT_ERROR_Cell gtceladm02 172.16.40.102 2015-01-20 13:32:46 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm02.log for details. Correct this before retrying the patch.

gtceladm03: 

gtceladm03: 2015-01-20 13:33:28 +0900 [INFO]: patchmgr launch attempt from exa1.gtplus.co.kr_172.16.20.1_root_patch_11.2.3.3.1.140708.

gtceladm03: 2015-01-20 13:33:28 +0900 [INFO]: dostep called: prechk:no:1486 patch_prereq -no-auto-rollback non_rolling 900 3600 900 36000 default noforce

gtceladm03: _EXIT_ERROR_Cell gtceladm03 172.16.40.103 2015-01-20 13:33:33 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm03.log for details. Correct this before retrying the patch.

gtceladm01: 

gtceladm01: _EXIT_PASS_Cell gtceladm01 172.16.40.101

gtceladm02: 

gtceladm02: _EXIT_PASS_Cell gtceladm02 172.16.40.102

gtceladm03: 

gtceladm03: _EXIT_PASS_Cell gtceladm03 172.16.40.103

gtceladm01: 

gtceladm01: [INFO] Free space in /boot (/dev/md4) before clean up is 81Mb

gtceladm01: [INFO] Kernel version on runtime: 2.6.39-400.126.1.el5uek

gtceladm01: [INFO] Kernel version in /opt/oracle.cellos/image.id: 2.6.39-400.126.1.el5uek

gtceladm01: [INFO] Free space in /boot (/dev/md4) after clean up is 81Mb

gtceladm01: [INFO] Size for all files for the kernel 2.6.39-400.126.1.el5uek in /boot is 23Mb

gtceladm01: [INFO] Required free space on /boot is 46Mb

gtceladm01: [ERROR] Detected open hardware alert(s) on the Exadata cell

gtceladm01: [ERROR] 3_1  2014-03-08T04:00:01+09:00       critical        "A power supply component is suspected of causing a fault.  Component Name : /SYS/PS0  Fault class    : fault.chassis.env.power.loss  Fault message  : http://www.sun.com/msg/SPX86-8000-55"

gtceladm01: [ERROR] Check for open hardware alerts on Exadata cell by running "cellcli -e list alerthistory where endTime=null and alertShortName=Hardware and alertType=stateful and severity=critical"

gtceladm01: [ERROR] Specific alerts can be dropped using "cellcli -e drop alerthistory X_Y" where X_Y is the alert ID

gtceladm01: Cell gtceladm01 172.16.40.101

gtceladm01: _EXIT_ERROR_Cell gtceladm01 172.16.40.101 2015-01-20 13:51:32 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm01.log for details. Correct this before retrying the patch.

gtceladm02: 

gtceladm02: [INFO] Free space in /boot (/dev/md4) before clean up is 81Mb

gtceladm02: [INFO] Kernel version on runtime: 2.6.39-400.126.1.el5uek

gtceladm02: [INFO] Kernel version in /opt/oracle.cellos/image.id: 2.6.39-400.126.1.el5uek

gtceladm02: [INFO] Free space in /boot (/dev/md4) after clean up is 81Mb

gtceladm02: [INFO] Size for all files for the kernel 2.6.39-400.126.1.el5uek in /boot is 23Mb

gtceladm02: [INFO] Required free space on /boot is 46Mb

gtceladm02: [ERROR] Detected open hardware alert(s) on the Exadata cell

gtceladm02: [ERROR] 3_1  2014-03-10T10:12:43+09:00       critical        "A power supply component is suspected of causing a fault.  Component Name : /SYS/PS0  Fault class    : fault.chassis.env.power.loss  Fault message  : http://www.sun.com/msg/SPX86-8000-55"

gtceladm02: [ERROR] Check for open hardware alerts on Exadata cell by running "cellcli -e list alerthistory where endTime=null and alertShortName=Hardware and alertType=stateful and severity=critical"

gtceladm02: [ERROR] Specific alerts can be dropped using "cellcli -e drop alerthistory X_Y" where X_Y is the alert ID

gtceladm02: Cell gtceladm02 172.16.40.102

gtceladm02: _EXIT_ERROR_Cell gtceladm02 172.16.40.102 2015-01-20 13:32:46 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm02.log for details. Correct this before retrying the patch.

gtceladm03: 

gtceladm03: [INFO] Free space in /boot (/dev/md4) before clean up is 81Mb

gtceladm03: [INFO] Kernel version on runtime: 2.6.39-400.126.1.el5uek

gtceladm03: [INFO] Kernel version in /opt/oracle.cellos/image.id: 2.6.39-400.126.1.el5uek

gtceladm03: [INFO] Free space in /boot (/dev/md4) after clean up is 81Mb

gtceladm03: [INFO] Size for all files for the kernel 2.6.39-400.126.1.el5uek in /boot is 23Mb

gtceladm03: [INFO] Required free space on /boot is 46Mb

gtceladm03: [ERROR] Detected open hardware alert(s) on the Exadata cell

gtceladm03: [ERROR] 3_1  2014-03-10T11:50:46+09:00       critical        "A power supply component is suspected of causing a fault.  Component Name : /SYS/PS0  Fault class    : fault.chassis.env.power.loss  Fault message  : http://www.sun.com/msg/SPX86-8000-55"

gtceladm03: [ERROR] Check for open hardware alerts on Exadata cell by running "cellcli -e list alerthistory where endTime=null and alertShortName=Hardware and alertType=stateful and severity=critical"

gtceladm03: [ERROR] Specific alerts can be dropped using "cellcli -e drop alerthistory X_Y" where X_Y is the alert ID

gtceladm03: Cell gtceladm03 172.16.40.103

gtceladm03: _EXIT_ERROR_Cell gtceladm03 172.16.40.103 2015-01-20 13:33:33 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm03.log for details. Correct this before retrying the patch.

2015-01-20 13:51:30 +0900 ++++++++++++++++++ Logs so far end ++++++++++

FAILED for following cells

gtceladm01:  gtceladm01 172.16.40.101 2015-01-20 13:51:32 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm01.log for details. Correct this before retrying the patch.

gtceladm02:  gtceladm02 172.16.40.102 2015-01-20 13:32:46 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm02.log for details. Correct this before retrying the patch.

gtceladm03:  gtceladm03 172.16.40.103 2015-01-20 13:33:33 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm03.log for details. Correct this before retrying the patch.

2015-01-20 13:51:30 +0900        :FAILED: Details in files <cell_name>.log /root/patch_11.2.3.3.1.140708/patchmgr.stdout, /root/patch_11.2.3.3.1.140708/patchmgr.stderr

2015-01-20 13:51:30 +0900        :FAILED: DONE: Initialize files, check space and state of cell services.

[ERROR] Patch prerequisite checks failed. Please run cleanup before retrying.

================PatchMgr run ended 2015-01-20 13:51:30 +0900 ===========



gtceladm01:  gtceladm01 172.16.40.101 2015-01-20 13:51:32 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm01.log for details. Correct this before retrying the patch.

gtceladm02:  gtceladm02 172.16.40.102 2015-01-20 13:32:46 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm02.log for details. Correct this before retrying the patch.

gtceladm03:  gtceladm03 172.16.40.103 2015-01-20 13:33:33 +0900: Detected open alerts in the alert history for the Exadata cell. Check gtceladm03.log for details. Correct this before retrying the patch.

2015-01-20 13:51:30 +0900        :FAILED: Details in files <cell_name>.log /root/patch_11.2.3.3.1.140708/patchmgr.stdout, /root/patch_11.2.3.3.1.140708/patchmgr.stderr

2015-01-20 13:51:30 +0900        :FAILED: DONE: Initialize files, check space and state of cell services.

[ERROR] Patch prerequisite checks failed. Please run cleanup before retrying.


[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708# 

[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708# 

[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708# 

[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708# ./patchmgr -cells /root/cell_group -patch -ignore_alerts

NOTE Cells will reboot during the patch or rollback process.

NOTE For non-rolling patch or rollback, ensure all ASM instances using

NOTE the cells are shut down for the duration of the patch or rollback.

NOTE For rolling patch or rollback, ensure all ASM instances using

NOTE the cells are up for the duration of the patch or rollback.


WARNING Do not start more than one instance of patchmgr.

WARNING Do not interrupt the patchmgr session.

WARNING Do not alter state of ASM instances during patch or rollback.

WARNING Do not resize the screen. It may disturb the screen layout.

WARNING Do not reboot cells or alter cell services during patch or rollback.

WARNING Do not open log files in editor in write mode or try to alter them.


NOTE All time estimates are approximate. Timestamps on the left are real.

NOTE You may interrupt this patchmgr run in next 60 seconds with control-c.



2015-01-20 13:55:14 +0900        :Working: DO: Initialize files, check space and state of cell services. Up to 1 minute ...

2015-01-20 13:55:31 +0900        :SUCCESS: DONE: Initialize files, check space and state of cell services.

2015-01-20 13:55:31 +0900        :Working: DO: Copy, extract prerequisite check archive to cells. If required start md11 mismatched partner size correction. Up to 40 minutes ...

2015-01-20 13:55:44 +0900 Wait correction of degraded md11 due to md partner size mismatch. Up to 30 minutes.


                                          

2015-01-20 13:55:45 +0900        :SUCCESS: DONE: Copy, extract prerequisite check archive to cells. If required start md11 mismatched partner size correction.

2015-01-20 13:55:45 +0900        :Working: DO: Check prerequisites on all cells. Up to 2 minutes ...

2015-01-20 13:56:31 +0900        :SUCCESS: DONE: Check prerequisites on all cells.

2015-01-20 13:56:31 +0900        :Working: DO: Copy the patch to all cells. Up to 3 minutes ...

2015-01-20 13:57:13 +0900        :SUCCESS: DONE: Copy the patch to all cells.

2015-01-20 13:57:15 +0900        :Working: DO: Execute plugin check for Patch Check Prereq ...

2015-01-20 13:57:15 +0900 :INFO: Patchmgr plugin start: Prereq check for exposure to bug 17854520 v1.1. Details in logfile /root/patch_11.2.3.3.1.140708/patchmgr.stdout.

2015-01-20 13:57:15 +0900 :INFO: This plugin checks dbhomes across all nodes with oracle-user ssh equivalence, but only for those known to the local system. dbhomes that exist only on remote nodes must be checked manually.

2015-01-20 13:57:15 +0900 :SUCCESS: No exposure to bug 17854520 with non-rolling patching

2015-01-20 13:57:16 +0900        :SUCCESS: DONE: Execute plugin check for Patch Check Prereq.

2015-01-20 13:57:16 +0900 1 of 5 :Working: DO: Initiate patch on cells. Cells will remain up. Up to 5 minutes ...

2015-01-20 13:57:26 +0900 1 of 5 :SUCCESS: DONE: Initiate patch on cells.

2015-01-20 13:57:26 +0900 2 of 5 :Working: DO: Waiting to finish pre-reboot patch actions. Cells will remain up. Up to 45 minutes ...

2015-01-20 13:58:26 +0900 Wait for patch pre-reboot procedures


||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ Minutes left 045||||| Minutes left 045||||| Minutes left 045///// Minutes left 045----- Minutes left 045\\\\\ 


.....................................

\\\ Minutes left 083||||| Minutes left 083||||| Minutes left 083///// Minutes left 083----- Minutes left 083\\\\\ Minutes left 083||||| Minutes left 083||||| Minutes left 083///// Minutes left 083----- Minutes left 083\\\\\ Minutes left 083||||| Minutes left 083||||| Minutes left 083///// Minutes left 083----- Minutes left 083\\\\\ Minutes left 083||||| Minutes left 083                                          

2015-01-20 15:01:23 +0900 4 of 5 :SUCCESS: DONE: Wait for cells to reboot and come online.

2015-01-20 15:01:23 +0900 5 of 5 :Working: DO: Check the state of patch on cells. Up to 5 minutes ...

2015-01-20 15:02:04 +0900 5 of 5 :SUCCESS: DONE: Check the state of patch on cells.

2015-01-20 15:02:04 +0900        :Working: DO: Execute plugin check for Post Patch ...

2015-01-20 15:02:05 +0900        :SUCCESS: DONE: Execute plugin check for Post Patch.




================PatchMgr run started 2015-01-20 13:54:08 +0900 ===========

With arguments: -cells /root/cell_group -patch -ignore_alerts

2015-01-20 13:55:14 +0900        :Working: DO: Initialize files, check space and state of cell services. Up to 1 minute ...

2015-01-20 13:55:31 +0900 ++++++++++++++++++ Logs so far begin ++++++++++

gtceladm01: 

gtceladm01: 2015-01-20 13:55:19 +0900 [INFO]: patchmgr launch attempt from exa1.gtplus.co.kr_172.16.20.1_root_patch_11.2.3.3.1.140708.

gtceladm01: 2015-01-20 13:55:19 +0900 [INFO]: dostep called: prechk:yes:1486 patch_prereq -no-auto-rollback non_rolling 900 3600 900 36000 default noforce

gtceladm01: _EXIT_PASS_Cell gtceladm01 172.16.40.101 2015-01-20 13:55:33 +0900:

gtceladm02: 

gtceladm02: 2015-01-20 13:36:34 +0900 [INFO]: patchmgr launch attempt from exa1.gtplus.co.kr_172.16.20.1_root_patch_11.2.3.3.1.140708.

gtceladm02: 2015-01-20 13:36:34 +0900 [INFO]: dostep called: prechk:yes:1486 patch_prereq -no-auto-rollback non_rolling 900 3600 900 36000 default noforce

gtceladm02: _EXIT_PASS_Cell gtceladm02 172.16.40.102 2015-01-20 13:36:48 +0900:

gtceladm03: 

gtceladm03: 2015-01-20 13:37:21 +0900 [INFO]: patchmgr launch attempt from exa1.gtplus.co.kr_172.16.20.1_root_patch_11.2.3.3.1.140708.

gtceladm03: 2015-01-20 13:37:21 +0900 [INFO]: dostep called: prechk:yes:1486 patch_prereq -no-auto-rollback non_rolling 900 3600 900 36000 default noforce

gtceladm03: _EXIT_PASS_Cell gtceladm03 172.16.40.103 2015-01-20 13:37:35 +0900:

gtceladm01: 

gtceladm01: _EXIT_PASS_Cell gtceladm01 172.16.40.101

gtceladm02: 

gtceladm02: _EXIT_PASS_Cell gtceladm02 172.16.40.102

gtceladm03: 

gtceladm03: _EXIT_PASS_Cell gtceladm03 172.16.40.103

gtceladm01: 

gtceladm01: [INFO] Free space in /boot (/dev/md4) before clean up is 81Mb

gtceladm01: [INFO] Kernel version on runtime: 2.6.39-400.126.1.el5uek

gtceladm01: [INFO] Kernel version in /opt/oracle.cellos/image.id: 2.6.39-400.126.1.el5uek

gtceladm01: [INFO] Free space in /boot (/dev/md4) after clean up is 81Mb

gtceladm01: [INFO] Size for all files for the kernel 2.6.39-400.126.1.el5uek in /boot is 23Mb

gtceladm01: [INFO] Required free space on /boot is 46Mb

gtceladm01: [INFO][check_allowed_version] Target: 11.2.3.3.1.140708 Current: 11.2.3.3.0.131014.1 Patch or rollback: 1486 Rolling: non_rolling

gtceladm01: Cell gtceladm01 172.16.40.101

gtceladm01: _EXIT_PASS_Cell gtceladm01 172.16.40.101 2015-01-20 13:55:33 +0900:

gtceladm02: 

gtceladm02: [INFO] Free space in /boot (/dev/md4) before clean up is 81Mb

gtceladm02: [INFO] Kernel version on runtime: 2.6.39-400.126.1.el5uek

gtceladm02: [INFO] Kernel version in /opt/oracle.cellos/image.id: 2.6.39-400.126.1.el5uek

gtceladm02: [INFO] Free space in /boot (/dev/md4) after clean up is 81Mb

gtceladm02: [INFO] Size for all files for the kernel 2.6.39-400.126.1.el5uek in /boot is 23Mb

gtceladm02: [INFO] Required free space on /boot is 46Mb

gtceladm02: [INFO][check_allowed_version] Target: 11.2.3.3.1.140708 Current: 11.2.3.3.0.131014.1 Patch or rollback: 1486 Rolling: non_rolling

gtceladm02: Cell gtceladm02 172.16.40.102

gtceladm02: _EXIT_PASS_Cell gtceladm02 172.16.40.102 2015-01-20 13:36:48 +0900:

gtceladm03: 

gtceladm03: [INFO] Free space in /boot (/dev/md4) before clean up is 81Mb

gtceladm03: [INFO] Kernel version on runtime: 2.6.39-400.126.1.el5uek

gtceladm03: [INFO] Kernel version in /opt/oracle.cellos/image.id: 2.6.39-400.126.1.el5uek

gtceladm03: [INFO] Free space in /boot (/dev/md4) after clean up is 81Mb

gtceladm03: [INFO] Size for all files for the kernel 2.6.39-400.126.1.el5uek in /boot is 23Mb

gtceladm03: [INFO] Required free space on /boot is 46Mb

gtceladm03: [INFO][check_allowed_version] Target: 11.2.3.3.1.140708 Current: 11.2.3.3.0.131014.1 Patch or rollback: 1486 Rolling: non_rolling

gtceladm03: Cell gtceladm03 172.16.40.103

gtceladm03: _EXIT_PASS_Cell gtceladm03 172.16.40.103 2015-01-20 13:37:35 +0900:

2015-01-20 13:55:31 +0900 ++++++++++++++++++ Logs so far end ++++++++++

2015-01-20 13:55:31 +0900        :SUCCESS: DONE: Initialize files, check space and state of cell services.

2015-01-20 13:55:31 +0900        :Working: DO: Copy, extract prerequisite check archive to cells. If required start md11 mismatched partner size correction. Up to 40 minutes ...

2015-01-20 13:55:45 +0900 ++++++++++++++++++ Logs so far begin ++++++++++

gtceladm01: 

gtceladm01: 2015-01-20 13:55:37 +0900 [INFO]: patchmgr launch attempt from exa1.gtplus.co.kr_172.16.20.1_root_patch_11.2.3.3.1.140708.

gtceladm01: 2015-01-20 13:55:37 +0900 [INFO]: dostep called: 4p patch_prereq -no-auto-rollback non_rolling 900 3600 900 36000 default

gtceladm01: _EXIT_PASS_Cell gtceladm01 172.16.40.101 2015-01-20 13:55:37 +0900:

gtceladm01: 

gtceladm01: 2015-01-20 13:55:48 +0900 [INFO]: patchmgr launch attempt from exa1.gtplus.co.kr_172.16.20.1_root_patch_11.2.3.3.1.140708.

gtceladm01: 2015-01-20 13:55:48 +0900 [INFO]: dostep called: 4p_md11_fix_pw patch_prereq -no-auto-rollback non_rolling 900 3600 900 36000 default

gtceladm01: _EXIT_PASS_Cell gtceladm01 172.16.40.101 2015-01-20 13:55:48 +0900:


...............................................


gtceladm03: 2015-01-20 13:39:21 +0900 [INFO] dostep_fix_12545272: LSI disk timeout: 360 for /sys/block/sdj

gtceladm03: 2015-01-20 13:39:21 +0900 [INFO] dostep_fix_12545272: LSI block device: /sys/block/sdk

gtceladm03: 2015-01-20 13:39:21 +0900 [INFO] dostep_fix_12545272: LSI timeout is 60s for /sys/block/sdk. Change it to 300s

gtceladm03: 2015-01-20 13:39:21 +0900 [INFO] dostep_fix_12545272: LSI disk timeout: 360 for /sys/block/sdk

gtceladm03: 2015-01-20 13:39:21 +0900 [INFO] dostep_fix_12545272: LSI block device: /sys/block/sdl

gtceladm03: 2015-01-20 13:39:21 +0900 [INFO] dostep_fix_12545272: LSI timeout is 60s for /sys/block/sdl. Change it to 300s

gtceladm03: 2015-01-20 13:39:21 +0900 [INFO] dostep_fix_12545272: LSI disk timeout: 360 for /sys/block/sdl

gtceladm03: 2015-01-20 13:39:25 +0900 [INFO] Execute: nohup ./install.sh -patch -execute -standby -no-auto-rollback -first-boot-usb -use-upgrade-usb  -ignore-celld-services -force -force -force

gtceladm03: 2015-01-20 13:39:30 +0900 [INFO] pid file: /root/_patch_hctap_/_p_/install.pid : 15227 0 install.sh

gtceladm03: 2015-01-20 13:39:30 +0900 [INFO] pid 15227 is running as "0 S     0 15227     1  2  80   0 -  3437 pipe_w ?          0:00 /bin/bash ./install.sh -patch -execute -standby -no-auto-rollback -first-boot-usb -use-upgrade-usb -ignore-celld-services -force -force -force"

gtceladm03: Cell gtceladm03 172.16.40.103

gtceladm03: _EXIT_PASS_Cell gtceladm03 172.16.40.103 2015-01-20 13:39:30 +0900:

2015-01-20 13:57:26 +0900 ++++++++++++++++++ Logs so far end ++++++++++

2015-01-20 13:57:26 +0900 1 of 5 :SUCCESS: DONE: Initiate patch on cells.

2015-01-20 13:57:26 +0900 2 of 5 :Working: DO: Waiting to finish pre-reboot patch actions. Cells will remain up. Up to 45 minutes ...


.......................................


gtceladm03: _EXIT_PASS_Cell gtceladm03 172.16.40.103 2015-01-20 14:44:08 +0900: Found: 11.2.3.3.1.140708 state success Expected: 11.2.3.3.1.140708 state success.

2015-01-20 15:02:04 +0900 ++++++++++++++++++ Logs so far end ++++++++++

2015-01-20 15:02:04 +0900 5 of 5 :SUCCESS: DONE: Check the state of patch on cells.

2015-01-20 15:02:04 +0900        :Working: DO: Execute plugin check for Post Patch ...

2015-01-20 15:02:04 +0900 ++++++++++++++++++ Logs so far begin ++++++++++

2015-01-20 15:02:05 +0900 ++++++++++++++++++ Logs so far end ++++++++++

2015-01-20 15:02:05 +0900        :SUCCESS: DONE: Execute plugin check for Post Patch.

================PatchMgr run ended 2015-01-20 15:02:05 +0900 ===========


[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708# dcli -g /root/cell_group -l root imageinfo

gtceladm01: 

gtceladm01: Kernel version: 2.6.39-400.128.17.el5uek #1 SMP Tue May 27 13:20:24 PDT 2014 x86_64

gtceladm01: Cell version: OSS_11.2.3.3.1_LINUX.X64_140708

gtceladm01: Cell rpm version: cell-11.2.3.3.1_LINUX.X64_140708-1

gtceladm01: 

gtceladm01: Active image version: 11.2.3.3.1.140708

gtceladm01: Active image activated: 2015-01-20 15:00:37 +0900

gtceladm01: Active image status: success

gtceladm01: Active system partition on device: /dev/md6

gtceladm01: Active software partition on device: /dev/md8

gtceladm01: 

gtceladm01: In partition rollback: Impossible

gtceladm01: 

gtceladm01: Cell boot usb partition: /dev/sdm1

gtceladm01: Cell boot usb version: 11.2.3.3.1.140708

gtceladm01: 

gtceladm01: Inactive image version: 11.2.3.3.0.131014.1

gtceladm01: Inactive image activated: 2015-01-06 17:03:56 +0900

gtceladm01: Inactive image status: success

gtceladm01: Inactive system partition on device: /dev/md5

gtceladm01: Inactive software partition on device: /dev/md7

gtceladm01: 

gtceladm01: Boot area has rollback archive for the version: 11.2.3.3.0.131014.1

gtceladm01: Rollback to the inactive partitions: Possible

gtceladm02: 

gtceladm02: Kernel version: 2.6.39-400.128.17.el5uek #1 SMP Tue May 27 13:20:24 PDT 2014 x86_64

gtceladm02: Cell version: OSS_11.2.3.3.1_LINUX.X64_140708

gtceladm02: Cell rpm version: cell-11.2.3.3.1_LINUX.X64_140708-1

gtceladm02: 

gtceladm02: Active image version: 11.2.3.3.1.140708

gtceladm02: Active image activated: 2015-01-20 14:42:04 +0900

gtceladm02: Active image status: success

gtceladm02: Active system partition on device: /dev/md6

gtceladm02: Active software partition on device: /dev/md8

gtceladm02: 

gtceladm02: In partition rollback: Impossible

gtceladm02: 

gtceladm02: Cell boot usb partition: /dev/sdm1

gtceladm02: Cell boot usb version: 11.2.3.3.1.140708

gtceladm02: 

gtceladm02: Inactive image version: 11.2.3.3.0.131014.1

gtceladm02: Inactive image activated: 2015-01-06 17:53:13 +0900

gtceladm02: Inactive image status: success

gtceladm02: Inactive system partition on device: /dev/md5

gtceladm02: Inactive software partition on device: /dev/md7

gtceladm02: 

gtceladm02: Boot area has rollback archive for the version: 11.2.3.3.0.131014.1

gtceladm02: Rollback to the inactive partitions: Possible

gtceladm03: 

gtceladm03: Kernel version: 2.6.39-400.128.17.el5uek #1 SMP Tue May 27 13:20:24 PDT 2014 x86_64

gtceladm03: Cell version: OSS_11.2.3.3.1_LINUX.X64_140708

gtceladm03: Cell rpm version: cell-11.2.3.3.1_LINUX.X64_140708-1

gtceladm03: 

gtceladm03: Active image version: 11.2.3.3.1.140708

gtceladm03: Active image activated: 2015-01-20 14:42:37 +0900

gtceladm03: Active image status: success

gtceladm03: Active system partition on device: /dev/md6

gtceladm03: Active software partition on device: /dev/md8

gtceladm03: 

gtceladm03: In partition rollback: Impossible

gtceladm03: 

gtceladm03: Cell boot usb partition: /dev/sdm1

gtceladm03: Cell boot usb version: 11.2.3.3.1.140708

gtceladm03: 

gtceladm03: Inactive image version: 11.2.3.3.0.131014.1

gtceladm03: Inactive image activated: 2015-01-06 16:57:02 +0900

gtceladm03: Inactive image status: success

gtceladm03: Inactive system partition on device: /dev/md5

gtceladm03: Inactive software partition on device: /dev/md7

gtceladm03: 

gtceladm03: Boot area has rollback archive for the version: 11.2.3.3.0.131014.1

gtceladm03: Rollback to the inactive partitions: Possible

[EXA1]root@exa1:/root/patch_11.2.3.3.1.140708# dcli -g /root/cell_group -l root imagehistory

gtceladm01: Version                              : 11.2.3.3.0.131014.1

gtceladm01: Image activation date                : 2015-01-06 17:03:56 +0900

gtceladm01: Imaging mode                         : fresh

gtceladm01: Imaging status                       : success

gtceladm01: 

gtceladm01: Version                              : 11.2.3.3.1.140708

gtceladm01: Image activation date                : 2015-01-20 15:00:37 +0900

gtceladm01: Imaging mode                         : out of partition upgrade

gtceladm01: Imaging status                       : success

gtceladm01: 

gtceladm02: Version                              : 11.2.3.3.0.131014.1

gtceladm02: Image activation date                : 2015-01-06 17:53:13 +0900

gtceladm02: Imaging mode                         : fresh

gtceladm02: Imaging status                       : success

gtceladm02: 

gtceladm02: Version                              : 11.2.3.3.1.140708

gtceladm02: Image activation date                : 2015-01-20 14:42:04 +0900

gtceladm02: Imaging mode                         : out of partition upgrade

gtceladm02: Imaging status                       : success

gtceladm02: 

gtceladm03: Version                              : 11.2.3.3.0.131014.1

gtceladm03: Image activation date                : 2015-01-06 16:57:02 +0900

gtceladm03: Imaging mode                         : fresh

gtceladm03: Imaging status                       : success

gtceladm03: 

gtceladm03: Version                              : 11.2.3.3.1.140708

gtceladm03: Image activation date                : 2015-01-20 14:42:37 +0900

gtceladm03: Imaging mode                         : out of partition upgrade

gtceladm03: Imaging status                       : success

Posted by pat98

1. TNSNAMES.ORA 반영


EXA =

   (DESCRIPTION =

     (ADDRESS = (PROTOCOL = TCP)(HOST = 172.16.20.3)(PORT = 1521))

     (ADDRESS = (PROTOCOL = TCP)(HOST = 172.16.20.4)(PORT = 1521))

     (LOAD_BALANCE = yes)

     (CONNECT_DATA =

       (SERVER = DEDICATED)

       (SERVICE_NAME = EXA)

     )

   )


2. test.sh 작성


vi test.sh


#!/bin/sh

count=0

while [ $count -lt 5 ]                                           # 5번 수행하겠다.

do                                                               # loop 시작

    count=`expr $count + 1`                                   # 카운터 증가 

    sqlplus -S system/welcome1@EXA @test.sql 

done


3. test.sql 작성


col "Instance" format a20

col "Host" format a20

col "Service Name" format a20

select sys_context('userenv', 'instance_name') "Instance",

       sys_context('userenv', 'server_host') "Host",

       sys_context('userenv', 'service_name') "Service Name"

from dual

/

exit;


4. sh test.sh 실행

[EXA1]oracle@exa1:/home/oracle# sh loop.sh


Instance             Host                 Service Name

-------------------- -------------------- --------------------

EXA2                 exa2                 EXA


Instance             Host                 Service Name

-------------------- -------------------- --------------------

EXA1                 exa1                 EXA


Instance             Host                 Service Name

-------------------- -------------------- --------------------

EXA1                 exa1                 EXA


Instance             Host                 Service Name

-------------------- -------------------- --------------------

EXA2                 exa2                 EXA


Instance             Host                 Service Name

-------------------- -------------------- --------------------

EXA1                 exa1                 EXA


RAC cluster 에서 로드밸런스가 잘 되고 있음을 확인할수 있다.

Posted by pat98

Transparent Gateway for Microsoft SQL Server(TG4MSQL) 에서 data type conversion 정리

Data Type Conversion

The gateway converts Microsoft SQL Server data types to Oracle data types as follows:

Table A-1 Data Type Conversions

Microsoft SQL ServerOracleComment
BIGINTNUMBER(19) 
BINARYRAW-
BITNUMBER(3)-
CHARCHAR-
DATETIMEDATEFractional parts of a second are truncated
DECIMALNUMBER(p[,s])-
FLOATFLOAT(49)-
IMAGELONG RAW-
INTEGERNUMBER(10)NUMBER range is -2,147,483,647 to 2,147,483,647
MONEYNUMBER(19,4)-
NCHARNCHAR-
NTEXTLONG-
NVARCHARNCHAR-
NUMERICNUMBER(p[,s])-
REALFLOAT(23)-
SMALL DATETIMEDATEThe value for seconds is returned as 0
SMALL MONEYNUMBER(10,4)-
SMALLINTNUMBER(5)NUMBER range is -32,767 to 32,767
TEXTLONG-
TIMESTAMPRAW-
TINYINTNUMBER(3)-
UNIQUEIDENTIFIERCHAR(36) 
VARBINARYRAW-
VARCHARVARCHAR2-


Posted by pat98

02-15 00:01
Flag Counter
Yesterday
Today
Total

글 보관함

최근에 올라온 글

달력

 « |  » 2025.2
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28

최근에 달린 댓글