프린트 하기 URL 복사

OS 환경 : Oracle Linux 7.6 (64bit)

 

DB 환경 : Oracle Database 11.2.0.4

 

방법 : Oracle Linux 7.6에 Oracle 11gR2 Silent 모드 설치 가이드

본문에서는 Oracle Linux 7.6에 Oracle 11gR2를 Silent 모드로 설치하는 방법을 설명함

 

 

OS 설치는 아래 게시물 참조
Oracle Linux 7.6 설치 가이드( https://positivemh.tistory.com/521 )

 

 

DB 설치파일
p13390677_112040_Linux-x86-64_1of7.zip
p13390677_112040_Linux-x86-64_2of7.zip

 

 

DB 패치파일(선택)
p31718723_112040_Linux-x86-64.zip
p6880880_112000_Linux-x86-64.zip

 

 

/etc/hosts 에 ip hostname설정

1
2
3
4
# vi /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.137.50 oel7

 

 

오라클 설치 전 사전 설정

자동 설정

1
2
# yum install -y oracle-rdbms-server-11gR2-preinstall
# yum install -y elfutils-libelf-devel

 

 

자동 설정 후 수동설정 파일 확인
/etc/sysctl.conf에 아래 내용 삽입되었는지 확인(안되어있다면 수동삽입)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# vi /etc/sysctl.conf
fs.file-max = 6815744
kernel.sem = 250 32000 100 128
kernel.shmmni = 4096
kernel.shmall = 2097152 (또는 물리메모리 크기의 절반 page 단위)
kernel.shmmax = 4294967296 (또는 물리메모리 크기의 절반(byte))
kernel.panic_on_oops = 1
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
net.ipv4.conf.all.rp_filter = 2
net.ipv4.conf.default.rp_filter = 2
fs.aio-max-nr = 1048576
net.ipv4.ip_local_port_range = 9000 65500

위 값은 최소값으로 나의경우 물리메로리를 8GB로 할당했기 때문에 shmmax를 4294967296(byte) 로 할당함

 

 

shmmax를 물리메모리의 60%로 설정을 원하는 경우 + shmall을 page 단위로 설정하려는 경우 아래 스크립트 활용

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
 
# Get total memory size in KB
mem_kb=$(free -k | awk '/^Mem:/ {print $2}')
 
# Get system page size in bytes
page_size=$(getconf PAGE_SIZE)
 
# Calculate shmmax: total memory in bytes × 60%
shmmax=$(echo "$mem_kb * 1024 * 6 / 10" | bc)
 
# Calculate shmall: shmmax divided by page size
shmall=$(echo "$shmmax / $page_size" | bc)
 
# Output results
echo "Total Memory (KB): $mem_kb"
echo "Page Size (bytes): $page_size"
echo "Calculated SHMMAX (bytes): $shmmax"
echo "Calculated SHMALL (pages): $shmall"

여기서 나온값을 넣어주면됨

 

 

잘 입력되었는지 확인

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/sbin/sysctl -p
fs.file-max = 6815744
kernel.sem = 250 32000 100 128
kernel.shmmni = 4096
kernel.shmall = 2097152
kernel.shmmax = 4294967296
kernel.panic_on_oops = 1
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
net.ipv4.conf.all.rp_filter = 2
net.ipv4.conf.default.rp_filter = 2
fs.aio-max-nr = 1048576
net.ipv4.ip_local_port_range = 9000 65500

잘 입력됨

 

 

Shell Limits 설정(안되어있다면 수동삽입)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# cat /etc/security/limits.conf
# oracle-rdbms-server-11gR2-preinstall setting for nofile soft limit is 1024
oracle   soft   nofile    1024
 
# oracle-rdbms-server-11gR2-preinstall setting for nofile hard limit is 65536
oracle   hard   nofile    65536
 
# oracle-rdbms-server-11gR2-preinstall setting for nproc soft limit is 16384
# refer orabug15971421 for more info.
oracle   soft   nproc    16384
 
# oracle-rdbms-server-11gR2-preinstall setting for nproc hard limit is 16384
oracle   hard   nproc    16384
 
# oracle-rdbms-server-11gR2-preinstall setting for stack soft limit is 10240KB
oracle   soft   stack    10240
 
# oracle-rdbms-server-11gR2-preinstall setting for stack hard limit is 32768KB
oracle   hard   stack    32768
 
oracle   hard   memlock    134217728
 
# oracle-rdbms-server-11gR2-preinstall setting for memlock hard limit is maximum of 128GB on x86_64 or 3GB on x86 OR 90 % of RAM
oracle   soft   memlock    134217728

 

 

유저 및 그룹 생성(안되어있다면 수동생성)

1
2
# groupadd dba
# useradd -g dba -G dba oracle

 

 

패스워드 설정

1
# passwd oracle

 

 

selinux disable 설정

1
2
# vi /etc/selinux/config
SELINUX=disabled

 

 

디렉토리 생성 및 권한부여

1
2
3
4
5
6
mkdir -p /app/oracle/media
mkdir -p /app/oracle/product/11g
mkdir -p /app/oraInventory
chown -R oracle:dba /app
chmod -R 775 /app

 

 

/app/oracle/media 경로에 설치파일 업로드

1
2
3
4
5
6
7
8
9
# chown -R oracle:dba /app/oracle/media/
# ls -al
total 2487208
drwxrwxr-x. 3 oracle dba            4096 May 10 11:24 .
drwxrwxr-x. 4 oracle dba              34 May 10 11:15 ..
-rwxrwxr-x. 1 oracle dba      1395582860 May 10 11:24 p13390677_112040_Linux-x86-64_1of7.zip
-rwxrwxr-x. 1 oracle dba      1151304589 May 10 11:24 p13390677_112040_Linux-x86-64_2of7.zip
-rwxr--r--. 1 oracle dba      1319414278 May 10 12:21 p31718723_112040_Linux-x86-64.zip
-rw-r--r--. 1 oracle dba       138423960 May 10 13:13 p6880880_112000_Linux-x86-64.zip

 

 

오라클 계정 설정 .bash_profile에 아래 내용 추가 후 저장

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# su - oracle
$ vi .bash_profile 
export ORACLE_BASE=/app/oracle;
export ORACLE_HOME=$ORACLE_BASE/product/11g;
export ORACLE_SID=ORA11G;
export DB_UNIQUE_NAME=ORA11G;
export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib;
export CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;
alias oh='cd $ORACLE_HOME;pwd'
alias ss='sqlplus / as sysdba'
stty erase ^H 
alias bdump="cd $ORACLE_BASE/diag/rdbms/${DB_UNIQUE_NAME,,}/$ORACLE_SID/trace"
alias alert='vi $ORACLE_BASE/diag/rdbms/${DB_UNIQUE_NAME,,}/$ORACLE_SID/trace/alert_$ORACLE_SID.log'
alias alertf='tail -300f $ORACLE_BASE/diag/rdbms/${DB_UNIQUE_NAME,,}/$ORACLE_SID/trace/alert_$ORACLE_SID.log'
alias listen="vi $ORACLE_BASE/diag/tnslsnr/$(hostname -s)/listener/trace/listener.log" 
alias listenf="tail -300f $ORACLE_BASE/diag/tnslsnr/$(hostname -s)/listener/trace/listener.log" 
alias dbs='cd $ORACLE_HOME/dbs'
export NLS_DATE_FORMAT='YYYY/MM/DD HH24:MI:SS'

 

 

추가 후 적용

1
$ . ./.bash_profile

 

 

Oracle Software(엔진) 설치

db 설치 미디어 압축 해제

1
2
3
4
5
$ cd /app/oracle/media
$ unzip -q p13390677_112040_Linux-x86-64_1of7.zip
$ unzip -q p13390677_112040_Linux-x86-64_2of7.zip
$ cd database
$ export CV_ASSUME_DISTID=OEL7.8

 

 

response 파일 수정

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$ cp database/response/db_install.rsp /home/oracle/
$ vi ~/db_install.rsp
oracle.install.responseFileVersion=/oracle/install/rspfmt_dbinstall_response_schema_v11_2_0
oracle.install.option=INSTALL_DB_SWONLY
ORACLE_HOSTNAME=oel7
UNIX_GROUP_NAME=dba
INVENTORY_LOCATION=/app/oraInventory
SELECTED_LANGUAGES=en
ORACLE_HOME=/app/oracle/product/11g
ORACLE_BASE=/app/oracle
oracle.install.db.InstallEdition=EE
oracle.install.db.EEOptionsSelection=false
oracle.install.db.optionalComponents=oracle.rdbms.partitioning:11.2.0.4.0,oracle.oraolap:11.2.0.4.0,oracle.rdbms.dm:11.2.0.4.0,oracle.rdbms.dv:11.2.0.4.0,oracle.rdbms.lbac:11.2.0.4.0,oracle.rdbms.rat:11.2.0.4.0
oracle.install.db.DBA_GROUP=dba
oracle.install.db.OPER_GROUP=dba
oracle.install.db.isRACOneInstall=false
oracle.install.db.config.starterdb.type=GENERAL_PURPOSE
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
DECLINE_SECURITY_UPDATES=true

 

 

DB 엔진 설치 수행

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$ cd /app/oracle/media
$ ./runInstaller -silent -ignorePrereq -ignoreSysPreReqs -responseFile ~/db_install.rsp
Starting Oracle Universal Installer...
 
Checking Temp space: must be greater than 120 MB.   Actual 61987 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 8191 MB    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2026-05-10_01-02-30PM. Please wait ...[oracle@oel7 database]$ You can find the log of this install session at:
 /app/oraInventory/logs/installActions2026-05-10_01-02-30PM.log
The installation of Oracle Database 11g was successful.
Please check '/app/oraInventory/logs/silentInstall2026-05-10_01-02-30PM.log' for more details.
 
As a root user, execute the following script(s):
        1. /app/oraInventory/orainstRoot.sh
        2. /app/oracle/product/11g/root.sh
 
 
Successfully Setup Software.

완료됨

 

 

세션 새로 열어서 root 유저로 스크립트 수행

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
29
/app/oraInventory/orainstRoot.sh
Changing permissions of /app/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.
 
Changing groupname of /app/oraInventory to dba.
The execution of the script is complete.
 
/app/oracle/product/11g/root.sh
Check /app/oracle/product/11g/install/root_oel7_2026-05-10_13-04-38.log for the output of root script
 
# cat /app/oracle/product/11g/install/root_oel7_2026-05-10_13-04-38.log
Performing root user operation for Oracle 11g
 
The following environment variables are set as:
    ORACLE_OWNER= oracle
    ORACLE_HOME=  /app/oracle/product/11g
   Copying dbhome to /usr/local/bin ...
   Copying oraenv to /usr/local/bin ...
   Copying coraenv to /usr/local/bin ...
 
 
Creating /etc/oratab file...
Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root script.
Now product-specific root actions will be performed.
Finished product-specific root actions.
Finished product-specific root actions.

완료됨

 

 

참고. emagent 관련 에러
gui에서 runInstaller 수행 시 에러 발생시 $ORACLE_HOME/sysman/lib/ins_emagent.mk 파일을 수정해줘야함
gui에선 해줘야되는데 silent 에선 안해줘도 설치는 잘됨, 하지만 패치시 emagent 관련 에러가 발생하기 때문에 설치후라도 수정 해주는게 좋음
(이 부분을 하지 않으면 sqlplus가 접속이 되지 않을수도 있다고함)

1
2
3
4
5
$ vi $ORACLE_HOME/sysman/lib/ins_emagent.mk
기존
$(MK_EMAGENT_NMECTL)
변경
$(MK_EMAGENT_NMECTL) -lnnz11

참고 : Error in invoking target ‘agent nmhs’ of makefile ‘$ORACLE_HOME/sysman/lib/ins_emagent.mk’. ( https://positivemh.tistory.com/39 )

 

 

Opatch 파일 업데이트
*패치는 선택사항임

1
2
3
$ cd $ORACLE_HOME
$ mv OPatch OPatchold
$ unzip -q /app/oracle/media/p6880880_112000_Linux-x86-64.zip

 

 

*패치는 선택사항임
패치 파일 압축 해제

1
2
3
$ cd /app/oracle/media
$ unzip -q p31718723_112040_Linux-x86-64.zip
$ cd /app/oracle/media/31718723/31537677/

 

 

패치 충돌 검사

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$ opatch prereq CheckConflictAgainstOHWithDetail -ph ./
Oracle Interim Patch Installer version 11.2.0.3.55
Copyright (c) 2026, Oracle Corporation.  All rights reserved.
 
PREREQ session
 
Oracle Home       : /app/oracle/product/11g
Central Inventory : /app/oraInventory
   from           : /app/oracle/product/11g/oraInst.loc
OPatch version    : 11.2.0.3.55
OUI version       : 11.2.0.4.0
Log file location : /app/oracle/product/11g/cfgtoollogs/opatch/opatch2026-05-10_13-32-30PM_1.log
 
Invoking prereq "checkconflictagainstohwithdetail"
 
Prereq "checkConflictAgainstOHWithDetail" passed.
 
OPatch succeeded.
 
opatch apply

충돌이 없음

 

 

패치 진행

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
$ opatch apply
Oracle Interim Patch Installer version 11.2.0.3.55
Copyright (c) 2026, Oracle Corporation.  All rights reserved.
 
 
Oracle Home       : /app/oracle/product/11g
Central Inventory : /app/oraInventory
   from           : /app/oracle/product/11g/oraInst.loc
OPatch version    : 11.2.0.3.55
OUI version       : 11.2.0.4.0
Log file location : /app/oracle/product/11g/cfgtoollogs/opatch/opatch2026-05-10_13-47-31PM_1.log
 
Verifying environment and performing prerequisite checks...
OPatch continues with these patches:   17478514  18031668  18522509  19121551  19769489  20299013  20760982  21352635  21948347  22502456  23054359  24006111  24732075  25869727  26609445  26392168  26925576  27338049  27734982  28204707  28729262  29141056  29497421  29913194  30298532  30670774  31103343  31537677
 
Do you want to proceed? [y|n]
y  <<-- y 입력
User Responded with: Y
All checks passed.
 
Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/app/oracle/product/11g')
 
 
Is the local system ready for patching? [y|n]
y  <<-- y 입력
User Responded with: Y
Backing up files...
Applying sub-patch '17478514' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.sdo, 11.2.0.4.0...
 
Patching component oracle.sysman.agent, 10.2.0.4.5...
 
Patching component oracle.xdk, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.sdo.locator, 11.2.0.4.0...
 
Patching component oracle.nlsrtl.rsf, 11.2.0.4.0...
 
Patching component oracle.xdk.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
Applying sub-patch '18031668' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.crs, 11.2.0.4.0...
 
Patching component oracle.precomp.common, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf.ic, 11.2.0.4.0...
 
Patching component oracle.rdbms.deconfig, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
Applying sub-patch '18522509' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.precomp.common, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.deconfig, 11.2.0.4.0...
Applying sub-patch '19121551' to OH '/app/oracle/product/11g'
 
Patching component oracle.precomp.common, 11.2.0.4.0...
 
Patching component oracle.sysman.console.db, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.ordim.client, 11.2.0.4.0...
 
Patching component oracle.ordim.jai, 11.2.0.4.0...
Applying sub-patch '19769489' to OH '/app/oracle/product/11g'
ApplySession: Optional component(s) [ oracle.sysman.agent, 11.2.0.4.0 ]  not present in the Oracle Home or a higher version is found.
 
Patching component oracle.precomp.common, 11.2.0.4.0...
 
Patching component oracle.ovm, 11.2.0.4.0...
 
Patching component oracle.xdk, 11.2.0.4.0...
 
Patching component oracle.rdbms.util, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.xdk.parser.java, 11.2.0.4.0...
 
Patching component oracle.oraolap, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.xdk.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.rdbms.deconfig, 11.2.0.4.0...
Applying sub-patch '20299013' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms.dv, 11.2.0.4.0...
 
Patching component oracle.rdbms.oci, 11.2.0.4.0...
 
Patching component oracle.precomp.common, 11.2.0.4.0...
 
Patching component oracle.sysman.agent, 10.2.0.4.5...
 
Patching component oracle.xdk, 11.2.0.4.0...
 
Patching component oracle.sysman.common, 10.2.0.4.5...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.xdk.parser.java, 11.2.0.4.0...
 
Patching component oracle.sysman.console.db, 11.2.0.4.0...
 
Patching component oracle.xdk.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.sysman.common.core, 10.2.0.4.5...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.rdbms.deconfig, 11.2.0.4.0...
Applying sub-patch '20760982' to OH '/app/oracle/product/11g'
 
Patching component oracle.sysman.console.db, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
Applying sub-patch '21352635' to OH '/app/oracle/product/11g'
 
Patching component oracle.sysman.agent, 10.2.0.4.5...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
Applying sub-patch '21948347' to OH '/app/oracle/product/11g'
ApplySession: Optional component(s) [ oracle.tfa, 11.2.0.4.0 ]  not present in the Oracle Home or a higher version is found.
 
Patching component oracle.sysman.agent, 10.2.0.4.5...
 
Patching component oracle.ovm, 11.2.0.4.0...
 
Patching component oracle.xdk, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.nlsrtl.rsf, 11.2.0.4.0...
 
Patching component oracle.xdk.parser.java, 11.2.0.4.0...
 
Patching component oracle.sysman.console.db, 11.2.0.4.0...
 
Patching component oracle.xdk.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.sysman.oms.core, 10.2.0.4.5...
Applying sub-patch '22502456' to OH '/app/oracle/product/11g'
ApplySession: Optional component(s) [ oracle.tfa, 11.2.0.4.0 ]  not present in the Oracle Home or a higher version is found.
 
Patching component oracle.precomp.common, 11.2.0.4.0...
 
Patching component oracle.oraolap.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.olap, 11.2.0.4.0...
 
Patching component oracle.oraolap, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
Applying sub-patch '23054359' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms.dv, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
Applying sub-patch '24006111' to OH '/app/oracle/product/11g'
 
Patching component oracle.sqlplus.ic, 11.2.0.4.0...
 
Patching component oracle.sqlplus, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
Applying sub-patch '24732075' to OH '/app/oracle/product/11g'
 
Patching component oracle.precomp.common, 11.2.0.4.0...
 
Patching component oracle.sysman.plugin.db.main.agent, 11.2.0.4.0...
 
Patching component oracle.sqlplus.ic, 11.2.0.4.0...
 
Patching component oracle.sqlplus, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.util, 11.2.0.4.0...
 
Patching component oracle.ordim.client, 11.2.0.4.0...
 
Patching component oracle.ordim.jai, 11.2.0.4.0...
 
Patching component oracle.ordim.server, 11.2.0.4.0...
Applying sub-patch '25869727' to OH '/app/oracle/product/11g'
ApplySession: Optional component(s) [ oracle.oid.client, 11.2.0.4.0 ]  not present in the Oracle Home or a higher version is found.
 
Patching component oracle.ldap.rsf, 11.2.0.4.0...
 
Patching component oracle.oracore.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
Applying sub-patch '26609445' to OH '/app/oracle/product/11g'
 
Patching component oracle.oracore.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
Applying sub-patch '26392168' to OH '/app/oracle/product/11g'
ApplySession: Optional component(s) [ oracle.oid.client, 11.2.0.4.0 ]  not present in the Oracle Home or a higher version is found.
 
Patching component oracle.network.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.client, 11.2.0.4.0...
 
Patching component oracle.sysman.agent, 10.2.0.4.5...
 
Patching component oracle.xdk, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.network.listener, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.nlsrtl.rsf, 11.2.0.4.0...
 
Patching component oracle.xdk.parser.java, 11.2.0.4.0...
 
Patching component oracle.xdk.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
Applying sub-patch '26925576' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
Applying sub-patch '27338049' to OH '/app/oracle/product/11g'
 
Patching component oracle.assistants.server, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
Applying sub-patch '27734982' to OH '/app/oracle/product/11g'
 
Patching component oracle.ctx, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.ctx.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
Applying sub-patch '28204707' to OH '/app/oracle/product/11g'
Applying changes to emctl script on the home: /app/oracle/product/11g ...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.oracore.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf.ic, 11.2.0.4.0...
 
Patching component oracle.network.rsf, 11.2.0.4.0...
 
Patching component oracle.sysman.agent, 10.2.0.4.5...
 
Patching component oracle.sysman.console.db, 11.2.0.4.0...
 
Patching component oracle.ldap.security.osdt, 11.2.0.4.0...
 
Patching component oracle.ldap.owm, 11.2.0.4.0...
 
Patching component oracle.sqlplus.rsf, 11.2.0.4.0...
 
Patching component oracle.ctx, 11.2.0.4.0...
Applying sub-patch '28729262' to OH '/app/oracle/product/11g'
INFO: Script isn't applicable to this port!
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.util, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf.ic, 11.2.0.4.0...
 
Patching component oracle.network.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.ctx, 11.2.0.4.0...
Applying sub-patch '29141056' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.oracore.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
Applying sub-patch '29497421' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf.ic, 11.2.0.4.0...
 
Patching component oracle.oracore.rsf, 11.2.0.4.0...
 
Patching component oracle.ctx, 11.2.0.4.0...
Applying sub-patch '29913194' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.network.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf.ic, 11.2.0.4.0...
 
Patching component oracle.rdbms.util, 11.2.0.4.0...
Applying sub-patch '30298532' to OH '/app/oracle/product/11g'
ApplySession: Optional component(s) [ oracle.rdbms.tg4tera, 11.2.0.4.0 ] , [ oracle.rdbms.tg4sybs, 11.2.0.4.0 ] , [ oracle.rdbms.tg4ifmx, 11.2.0.4.0 ] , [ oracle.rdbms.tg4db2, 11.2.0.4.0 ] , [ oracle.rdbms.tg4msql, 11.2.0.4.0 ]  not present in the Oracle Home or a higher version is found.
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.hsodbc, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf.ic, 11.2.0.4.0...
Applying sub-patch '30670774' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.network.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf.ic, 11.2.0.4.0...
 
Patching component oracle.swd.oui, 11.2.0.4.0...
 
Patching component oracle.ctx, 11.2.0.4.0...
Applying sub-patch '31103343' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
Applying sub-patch '31537677' to OH '/app/oracle/product/11g'
 
Patching component oracle.rdbms, 11.2.0.4.0...
 
Patching component oracle.rdbms.dbscripts, 11.2.0.4.0...
 
Patching component oracle.rdbms.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.dv, 11.2.0.4.0...
 
Patching component oracle.rdbms.rman, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf, 11.2.0.4.0...
 
Patching component oracle.ldap.rsf.ic, 11.2.0.4.0...
 
Patching component oracle.oracore.rsf, 11.2.0.4.0...
 
Patching component oracle.rdbms.util, 11.2.0.4.0...
 
Patching component oracle.dbdev, 11.2.0.4.0...
 
Patching component oracle.ctx, 11.2.0.4.0...
 
Patching component oracle.buildtools.rsf, 11.2.0.4.0...
 
OPatch found the word "warning" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
 
 
 
OPatch found the word "error" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
chmod: changing permissions of ‘/app/oracle/product/11g/bin/extjobO’: Operation not permitted
make: [iextjob] Error 1 (ignored)
 
 
 
OPatch found the word "warning" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
 
 
 
OPatch found the word "warning" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
 
 
 
OPatch found the word "warning" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmeoci.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmeoci.so .so
+ libname=libnmeoci
++ dirname /app/oracle/product/11g/sysman/lib/libnmeoci.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmeoci.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmeoci.so _LIBNAME=libnmeoci _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmeociLIBS)' '_LIBNAME_EXTRALIBS=$(libnmeociEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefw.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefw.so .so
+ libname=libnmefw
++ dirname /app/oracle/product/11g/sysman/lib/libnmefw.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefw.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefw.so _LIBNAME=libnmefw _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefwLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefwEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefos.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefos.so .so
+ libname=libnmefos
++ dirname /app/oracle/product/11g/sysman/lib/libnmefos.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefos.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefos.so _LIBNAME=libnmefos _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefosLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefosEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefsql.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefsql.so .so
+ libname=libnmefsql
++ dirname /app/oracle/product/11g/sysman/lib/libnmefsql.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefsql.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefsql.so _LIBNAME=libnmefsql _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefsqlLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefsqlEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefud.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefud.so .so
+ libname=libnmefud
++ dirname /app/oracle/product/11g/sysman/lib/libnmefud.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefud.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefud.so _LIBNAME=libnmefud _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefudLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefudEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefdms.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefdms.so .so
+ libname=libnmefdms
++ dirname /app/oracle/product/11g/sysman/lib/libnmefdms.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefdms.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefdms.so _LIBNAME=libnmefdms _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefdmsLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefdmsEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefojmx.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefojmx.so .so
+ libname=libnmefojmx
++ dirname /app/oracle/product/11g/sysman/lib/libnmefojmx.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefojmx.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefojmx.so _LIBNAME=libnmefojmx _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefojmxLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefojmxEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefut.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefut.so .so
+ libname=libnmefut
++ dirname /app/oracle/product/11g/sysman/lib/libnmefut.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefut.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefut.so _LIBNAME=libnmefut _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefutLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefutEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefvr.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefvr.so .so
+ libname=libnmefvr
++ dirname /app/oracle/product/11g/sysman/lib/libnmefvr.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefvr.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefvr.so _LIBNAME=libnmefvr _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefvrLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefvrEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefpfa.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefpfa.so .so
+ libname=libnmefpfa
++ dirname /app/oracle/product/11g/sysman/lib/libnmefpfa.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefpfa.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefpfa.so _LIBNAME=libnmefpfa _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefpfaLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefpfaEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmevq.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmevq.so .so
+ libname=libnmevq
++ dirname /app/oracle/product/11g/sysman/lib/libnmevq.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmevq.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmevq.so _LIBNAME=libnmevq _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmevqLIBS)' '_LIBNAME_EXTRALIBS=$(libnmevqEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmevsp.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmevsp.so .so
+ libname=libnmevsp
++ dirname /app/oracle/product/11g/sysman/lib/libnmevsp.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmevsp.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmevsp.so _LIBNAME=libnmevsp _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmevspLIBS)' '_LIBNAME_EXTRALIBS=$(libnmevspEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmevc.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmevc.so .so
+ libname=libnmevc
++ dirname /app/oracle/product/11g/sysman/lib/libnmevc.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmevc.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmevc.so _LIBNAME=libnmevc _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmevcLIBS)' '_LIBNAME_EXTRALIBS=$(libnmevcEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmadbg.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmadbg.so .so
+ libname=libnmadbg
++ dirname /app/oracle/product/11g/sysman/lib/libnmadbg.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmadbg.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmadbg.so _LIBNAME=libnmadbg _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmadbgLIBS)' '_LIBNAME_EXTRALIBS=$(libnmadbgEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmadm.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmadm.so .so
+ libname=libnmadm
++ dirname /app/oracle/product/11g/sysman/lib/libnmadm.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmadm.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmadm.so _LIBNAME=libnmadm _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmadmLIBS)' '_LIBNAME_EXTRALIBS=$(libnmadmEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmalk.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmalk.so .so
+ libname=libnmalk
++ dirname /app/oracle/product/11g/sysman/lib/libnmalk.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmalk.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmalk.so _LIBNAME=libnmalk _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmalkLIBS)' '_LIBNAME_EXTRALIBS=$(libnmalkEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmastk.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmastk.so .so
+ libname=libnmastk
++ dirname /app/oracle/product/11g/sysman/lib/libnmastk.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmastk.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmastk.so _LIBNAME=libnmastk _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmastkLIBS)' '_LIBNAME_EXTRALIBS=$(libnmastkEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmasf.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmasf.so .so
+ libname=libnmasf
++ dirname /app/oracle/product/11g/sysman/lib/libnmasf.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmasf.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmasf.so _LIBNAME=libnmasf _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmasfLIBS)' '_LIBNAME_EXTRALIBS=$(libnmasfEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmarl.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmarl.so .so
+ libname=libnmarl
++ dirname /app/oracle/product/11g/sysman/lib/libnmarl.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmarl.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmarl.so _LIBNAME=libnmarl _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmarlLIBS)' '_LIBNAME_EXTRALIBS=$(libnmarlEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefsp.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefsp.so .so
+ libname=libnmefsp
++ dirname /app/oracle/product/11g/sysman/lib/libnmefsp.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefsp.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefsp.so _LIBNAME=libnmefsp _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefspLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefspEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefsqlt.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefsqlt.so .so
+ libname=libnmefsqlt
++ dirname /app/oracle/product/11g/sysman/lib/libnmefsqlt.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefsqlt.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefsqlt.so _LIBNAME=libnmefsqlt _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefsqltLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefsqltEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmefport.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmefport.so .so
+ libname=libnmefport
++ dirname /app/oracle/product/11g/sysman/lib/libnmefport.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmefport.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmefport.so _LIBNAME=libnmefport _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmefportLIBS)' '_LIBNAME_EXTRALIBS=$(libnmefportEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmcfhc.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmcfhc.so .so
+ libname=libnmcfhc
++ dirname /app/oracle/product/11g/sysman/lib/libnmcfhc.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmcfhc.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmcfhc.so _LIBNAME=libnmcfhc _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmcfhcLIBS)' '_LIBNAME_EXTRALIBS=$(libnmcfhcEXTRALIBS)'
+ PATH=/bin:/usr/bin:/usr/ccs/bin
+ export PATH
+ lib=/app/oracle/product/11g/sysman/lib/libnmcfsga.so
+ makefile=/app/oracle/product/11g/sysman/lib/ins_emagent.mk
+ so_ext=so
+ target=new_ld_shlib
+ var=
++ basename /app/oracle/product/11g/sysman/lib/libnmcfsga.so .so
+ libname=libnmcfsga
++ dirname /app/oracle/product/11g/sysman/lib/libnmcfsga.so
+ dir=/app/oracle/product/11g/sysman/lib
+ '[' var = new_ld_shlib ']'
+ '[' -f /app/oracle/product/11g/sysman/lib/libnmcfsga.a ']'
+ dir2=/app/oracle/product/11g/sysman/lib/
+ '[' '' '!=' '' ']'
+ make -f /app/oracle/product/11g/sysman/lib/ins_emagent.mk new_ld_shlib _FULL_LIBNAME=/app/oracle/product/11g/sysman/lib/libnmcfsga.so _LIBNAME=libnmcfsga _LIBDIR=/app/oracle/product/11g/sysman/lib/ '_LIBNAME_LIBS=$(libnmcfsgaLIBS)' '_LIBNAME_EXTRALIBS=$(libnmcfsgaEXTRALIBS)'
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
/bin/ld: warning: -z lazyload ignored.
/bin/ld: warning: -z nolazyload ignored.
 
 
Composite patch 31537677 successfully applied.
OPatch Session completed with warnings.
Log file location: /app/oracle/product/11g/cfgtoollogs/opatch/opatch2026-05-10_13-47-31PM_1.log
 
OPatch completed with warnings.

정상적으로 완료됨

여기서
chmod: changing permissions of ‘/app/oracle/product/11g/bin/extjobO’: Operation not permitted 는 버그라서 무시 가능함
참고 : chmod: changing permissions of `$ORACLE_HOME/bin/extjobO ( https://positivemh.tistory.com/770 )
/bin/ld: warning: -z nolazyload ignored. 도 버그라서 무시 가능함
참고 : /bin/ld: warning: -z nolazyload ignored. ( https://positivemh.tistory.com/771 )

 

 

패치 확인

1
2
3
4
$ opatch lspatches
31537677;Database Patch Set Update : 11.2.0.4.201020 (31537677)
 
OPatch succeeded.

 

 

리스너 설정

리스너용 response 파일 확인

1
2
$ cd /app/oracle/media/database/response
$ cp netca.rsp /home/oracle/

 

 

netca silent 수행

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$ netca -silent -responseFile /home/oracle/netca.rsp
 
Parsing command line arguments:
    Parameter "silent" = true
    Parameter "responsefile" = /home/oracle/netca.rsp
Done parsing command line arguments.
Oracle Net Services Configuration:
Profile configuration complete.
Oracle Net Listener Startup:
    Running Listener Control:
      /app/oracle/product/11g/bin/lsnrctl start LISTENER
    Listener Control complete.
    Listener started successfully.
Listener configuration complete.
Oracle Net Services configuration successful. The exit code is 0

생성됨, 에러가 발생한다면 현재 ip와 hostname이 /etc/hosts에 잘 적혀있는지 확인해야함

 

 

리스너 기동
(위에서 에러가 발생안했다면 리스너는 자동으로 기동됨)

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
29
30
31
$ lsnrctl start
 
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 10-MAY-2026 14:00:50
 
Copyright (c) 1991, 2013, Oracle.  All rights reserved.
 
Starting /app/oracle/product/11g/bin/tnslsnr: please wait...
 
TNSLSNR for Linux: Version 11.2.0.4.0 - Production
System parameter file is /app/oracle/product/11g/network/admin/listener.ora
Log messages written to /app/oracle/diag/tnslsnr/oel7/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oel7)(PORT=1521)))
 
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.4.0 - Production
Start Date                10-MAY-2026 14:00:50
Uptime                    0 days 0 hr. 0 min. 0 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /app/oracle/product/11g/network/admin/listener.ora
Listener Log File         /app/oracle/diag/tnslsnr/oel7/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oel7)(PORT=1521)))
The listener supports no services
The command completed successfully

 

 

DB 생성

DB response 파일 수정

1
2
3
4
5
6
7
8
9
10
11
12
13
$ cd /app/oracle/media/database/response
$ cp dbca.rsp /home/oracle/
$ vi /home/oracle/dbca.rsp
GDBNAME = "ORA11G"
SID = "ORA11G" 
SYSPASSWORD = "oracle"
SYSTEMPASSWORD = "oracle"
DATAFILEDESTINATION = /oradata/
RECOVERYAREADESTINATION=NONE
STORAGETYPE=FS
CHARACTERSET = "AL32UTF8"
NATIONALCHARACTERSET= "AL16UTF16"
MEMORYPERCENTAGE = "40"

 

 

DB 생성

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$ dbca -silent -responseFile /home/oracle/dbca.rsp
Copying database files
1% complete
3% complete
37% complete
Creating and starting Oracle instance
40% complete
45% complete
50% complete
55% complete
56% complete
60% complete
62% complete
Completing Database Creation
66% complete
70% complete
73% complete
74% complete
75% complete
76% complete
77% complete
88% complete
100% complete
Look at the log file "/app/oracle/cfgtoollogs/dbca/ORA11G/ORA11G.log" for further details.

정상적으로 생성됨

 

 

DB 상태 확인

1
2
3
4
5
6
7
8
9
$ sqlplus / as sysdba
SQL> 
set linse 200 pages 1000
col instance_name for a10
select instance_name, version, status from v$instance;
 
INSTANCE_N VERSION           STATUS
---------- ----------------- ------------
ORA11G     11.2.0.4.0        OPEN

정상임

 

 

데이터파일 확인

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SQL>
set lines 200 pages 1000
col tablespace_name for a20
col file_name for a40
select tablespace_name, file_id, file_name, round(bytes/1024/1024/1024, 2) gb,
round(maxbytes/1024/1024/1024, 2) max_gb, autoextensible, status, online_status from dba_data_files
union all
select tablespace_name, file_id, file_name, round(bytes/1024/1024/1024, 2) gb,
round(maxbytes/1024/1024/1024, 2) max_gb, autoextensible, status, null from dba_temp_files order by 2;
 
TABLESPACE_NAME         FILE_ID FILE_NAME                                        GB     MAX_GB AUT STATUS    ONLINE_
-------------------- ---------- ---------------------------------------- ---------- ---------- --- --------- -------
SYSTEM                        1 /oradata/ORA11G/system01.dbf                    .73         32 YES AVAILABLE SYSTEM
TEMP                          1 /oradata/ORA11G/temp01.dbf                      .05         32 YES ONLINE
SYSAUX                        2 /oradata/ORA11G/sysaux01.dbf                    .48         32 YES AVAILABLE ONLINE
UNDOTBS1                      3 /oradata/ORA11G/undotbs01.dbf                   .08         32 YES AVAILABLE ONLINE
USERS                         4 /oradata/ORA11G/users01.dbf                       0         32 YES AVAILABLE ONLINE

정상임

 

 

패치 확인

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SQL>
set lines 400
col action_time for a20
col action for a20
col namespace for a20
col version for a10
col comments for a30
col bundle_series for a10
 
select to_char(action_time, 'yyyymmdd hh24:mi:ss') as action_time
      ,action
      ,namespace
      ,version
      ,id
      ,comments
      ,bundle_series
from   dba_registry_history
order by action_time;
 
ACTION_TIME          ACTION               NAMESPACE            VERSION            ID COMMENTS                       BUNDLE_SER
-------------------- -------------------- -------------------- ---------- ---------- ------------------------------ ----------
20130824 12:03:45    APPLY                SERVER               11.2.0.4            0 Patchset 11.2.0.2.0            PSU
20260510 14:10:28    APPLY                SERVER               11.2.0.4       201020 PSU 11.2.0.4.201020            PSU

정상임

 

 

참조 : 

error in invoking target 'agent nmhs' of make file ins_emagent.mk while installing Oracle 11.2.0.4 on Linux(KB150900)
Missing pdksh-5.2.14 package during Oracle database 11.2.0.4 install on Oracle Linux 7(KB133388)
Oracle Linux 7.6에 Oracle 11gR2 Raw Device RAC 설치 가이드_Part 1 ( https://positivemh.tistory.com/1224 )
Oracle Linux 6.8에 Oracle 11g R2 dbca silent mode 생성 ( https://positivemh.tistory.com/94 )
오라클 11gR2 dbca silent mode 설치시 dbca에 나오는지 확인 ( https://positivemh.tistory.com/864 )
Error in invoking target ‘agent nmhs’ of makefile ‘$ORACLE_HOME/sysman/lib/ins_emagent.mk’. ( https://positivemh.tistory.com/39 )
Oracle 11g R2 RAC PSU 패치 가이드(opatch auto) ( https://positivemh.tistory.com/773 )
chmod: changing permissions of `$ORACLE_HOME/bin/extjobO ( https://positivemh.tistory.com/770 )
https://dataforum.io/pages/viewpage.action?pageId=2622024
https://datacloud.tistory.com/18