Bonjour,

je suis en train d'installer oracle 11g r2 sur centos 6 j'ai configurer tous les paramètres du kernel et j'utilise la commande

Code : Sélectionner tout - Visualiser dans une fenêtre à part
./runInstaller -silent -responseFile /u01/app/oraFResponse.rsp
mais il m'affiche le message d'erreur suivant :

[FATAL] [INS-13013] Target environment do not meet some mandatory requirements.
CAUSE: Some of the mandatory prerequisites are not met. See logs for details. /tmp/OraInstall2013-08-03_07-38-35AM/installActions2013-08-03_07-38-35AM.log
ACTION: Identify the list of failed prerequisite checks from the log: /tmp/OraInstall2013-08-03_07-38-35AM/installActions2013-08-03_07-38-35AM.log. Then either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.
A log of this session is currently saved as: /tmp/OraInstall2013-08-03_07-38-35AM/installActions2013-08-03_07-38-35AM.log. Oracle recommends that if you want to keep this log, you should move it from the temporary location to a more permanent location.
merci d'avance.

voila le contenu du fichier log :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
 
 
 
 
 
INFO: Launching Oracle Database 11g Release 2 Installer
INFO: Started executing the flow in SILENT mode
INFO: Waiting for completion of background operations
INFO: Finishing all forked tasks at state prepInstall
INFO: Waiting for completion all forked tasks at state prepInstall
INFO: All forked task are completed at state prepInstall
INFO: Completed background operations
INFO: Executing action at state prepInstall
INFO: Completed executing action at state <prepInstall>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <prepInstall>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <prepInstall>
WARNING: Validation disabled for the state prepInstall
INFO: Completed validating state <prepInstall>
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state decideOCMInstall
INFO: Completed executing action at state <decideOCMInstall>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <decideOCMInstall>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <decideOCMInstall>
WARNING: Validation disabled for the state decideOCMInstall
INFO: Completed validating state <decideOCMInstall>
INFO: Verifying route requireOCM
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state getOCMDetails
INFO: Completed executing action at state <getOCMDetails>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <getOCMDetails>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <getOCMDetails>
INFO: Completed validating state <getOCMDetails>
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state installOptions
INFO: Completed executing action at state <installOptions>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <installOptions>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <installOptions>
INFO: Completed validating state <installOptions>
INFO: InstallOptionsAction Actions.transition called
INFO: selectedInstallOption is :INSTALL_DB_AND_CONFIG
INFO: inventory location is/u01/app/oraInventory
INFO: Is CRS Installed false
INFO: launchNETCA = true
INFO: Verifying route system_class
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state getSystemClass
INFO: Completed executing action at state <getSystemClass>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <getSystemClass>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <getSystemClass>
INFO: inventory location is/u01/app/oraInventory
INFO: Is CRS Installed false
INFO: Completed validating state <getSystemClass>
INFO: selectedSystemClass is :SERVER_CLASS
INFO: Verifying route server_class_yes
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state nodeSelectionPage
INFO: Completed executing action at state <nodeSelectionPage>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <nodeSelectionPage>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <nodeSelectionPage>
INFO: Completed validating state <nodeSelectionPage>
INFO: NodeSelectionAction Actions.transition called
INFO: selectedInstallOption is :INSTALL_DB_AND_CONFIG
INFO: Verifying route create_and_configureDB
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state installType
INFO: Completed executing action at state <installType>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <installType>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <installType>
WARNING: Validation disabled for the state installType
INFO: Completed validating state <installType>
INFO: Verifying route advanced_yes
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state productLanguage
INFO: Completed executing action at state <productLanguage>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <productLanguage>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <productLanguage>
INFO: Using default Validator configured in the Action class oracle.install.ivw.common.action.ProductLanguageAction
INFO: Completed validating state <productLanguage>
INFO: Verifying route productlanguage_yes
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state dbEdition
INFO: Re-loading component config bean
INFO: Loading beanstore from jar:file:/tmp/OraInstall2013-08-16_07-18-14PM/ext/jlib/instdb.jar!/oracle/install/ivw/db/resource/custom_component-config.xml
INFO: Translating external format into raw format 
INFO: Restoring class oracle.install.commons.base.util.ComponentConfig from jar:file:/tmp/OraInstall2013-08-16_07-18-14PM/ext/jlib/instdb.jar!/oracle/install/ivw/db/resource/custom_component-config.xml
WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
INFO: Resolving dependencies
INFO: Completed executing action at state <dbEdition>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <dbEdition>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <dbEdition>
WARNING: Validation disabled for the state dbEdition
INFO: Completed validating state <dbEdition>
INFO: Install Type selected :EE
INFO: Database Edition selected: EE
INFO: Verifying route oraclehome_location
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state getOracleHome
INFO: Completed executing action at state <getOracleHome>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <getOracleHome>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <getOracleHome>
INFO: Validating specified location...
INFO: custom prereq file name: oracle.server_NONE.xml
INFO: refDataFile: /oracle_11g_db_linux_x64/database/stage/cvu/oracle.server_NONE.xml
INFO: isCustomRefDataFilePresent: false
INFO: InstallAreaControl exists: true
INFO: isNewHome= true isORCAHome=false
INFO: Checking:NEW_HOME
INFO: Checking:COMP
INFO: Checking:COMP
INFO: Checking:COMP
INFO: Checking:COMP
INFO: Checking:COMP
INFO: Checking:COMP
INFO: Checking:COMP
INFO: Checking:COMP
INFO: Checking:COMP
INFO: Checking:COMP
INFO: Checking:ORCA_HOME
INFO: Reading shiphome metadata from /oracle_11g_db_linux_x64/database/install/../stage/shiphomeproperties.xml
INFO: Loading beanstore from file:/oracle_11g_db_linux_x64/database/install/../stage/shiphomeproperties.xml
INFO: Translating external format into raw format 
INFO: Restoring class oracle.install.driver.oui.ShiphomeMetadata from file:/oracle_11g_db_linux_x64/database/install/../stage/shiphomeproperties.xml
INFO: inventory location is/u01/app/oraInventory
INFO: inventory location is/u01/app/oraInventory
INFO: size estimation for EEinstall is 4397.013998031616
INFO: PATH has :==>/tmp/OraInstall2013-08-16_07-18-14PM/jdk/jre/lib/amd64/server:/tmp/OraInstall2013-08-16_07-18-14PM/jdk/jre/lib/amd64:/tmp/OraInstall2013-08-16_07-18-14PM/jdk/jre/../lib/amd64:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib
INFO: Completed validating state <getOracleHome>
INFO: Verifying route advanced_yes_createDB_yes
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state configurationType
INFO: Completed executing action at state <configurationType>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <configurationType>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <configurationType>
WARNING: Validation disabled for the state configurationType
INFO: Completed validating state <configurationType>
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state dbIdentifier
INFO: Completed executing action at state <dbIdentifier>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <dbIdentifier>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <dbIdentifier>
INFO: Using default Validator configured in the Action class oracle.install.ivw.db.action.DBIdentifierAction
INFO: Completed validating state <dbIdentifier>
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state configurationOption
INFO: Completed executing action at state <configurationOption>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <configurationOption>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <configurationOption>
INFO: Using default Validator configured in the Action class oracle.install.ivw.db.action.ConfigurationOptionsAction
INFO: Completed validating state <configurationOption>
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state managementOption
INFO: ManagementOptionsAction-> inside execute method
INFO: Completed executing action at state <managementOption>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <managementOption>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <managementOption>
INFO: Using default Validator configured in the Action class oracle.install.ivw.db.action.ManagementOptionsAction
INFO: Completed validating state <managementOption>
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state storageOption
INFO: Completed executing action at state <storageOption>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <storageOption>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <storageOption>
INFO: Using default Validator configured in the Action class oracle.install.ivw.db.action.StorageOptionsAction
INFO: PATH has :==>/tmp/OraInstall2013-08-16_07-18-14PM/jdk/jre/lib/amd64/server:/tmp/OraInstall2013-08-16_07-18-14PM/jdk/jre/lib/amd64:/tmp/OraInstall2013-08-16_07-18-14PM/jdk/jre/../lib/amd64:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib
INFO: Completed validating state <storageOption>
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state recoveryOption
INFO: Completed executing action at state <recoveryOption>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <recoveryOption>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <recoveryOption>
INFO: Using default Validator configured in the Action class oracle.install.ivw.db.action.RecoveryBackupAction
INFO: Completed validating state <recoveryOption>
INFO: Verifying route asm_not_chosen
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state schemaPasswordDialog
INFO: Completed executing action at state <schemaPasswordDialog>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <schemaPasswordDialog>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <schemaPasswordDialog>
INFO: Using default Validator configured in the Action class oracle.install.ivw.db.action.SchemaPasswordAction
INFO: Completed validating state <schemaPasswordDialog>
INFO: dbBean.getDatabase_StorageType_Chosen() is :1
INFO: dbBean.isEnableAutoBackup() is:false
INFO: dbBean.isUseFileSystemForRecoverySelected() is:false
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state getPrivilegedOSGroups
INFO: Completed executing action at state <getPrivilegedOSGroups>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <getPrivilegedOSGroups>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <getPrivilegedOSGroups>
INFO: ... PrivilegedOSGroupValidator: entering validate()
INFO: Completed validating state <getPrivilegedOSGroups>
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state prereqExecutionDecider
INFO: Completed executing action at state <prereqExecutionDecider>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <prereqExecutionDecider>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <prereqExecutionDecider>
WARNING: Validation disabled for the state prereqExecutionDecider
INFO: Completed validating state <prereqExecutionDecider>
INFO: Verifying route executeprereqs
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state performChecks
INFO: CVU tracingEnabled = false
INFO: Nodes are prepared for verification.
INFO: Completed executing action at state <performChecks>
INFO: Waiting for completion of background operations
INFO: Finishing all forked tasks at state performChecks
INFO: Waiting for completion all forked tasks at state performChecks
INFO: Creating PrereqChecker Job for leaf task Physical Memory
INFO: Creating PrereqChecker Job for leaf task Available Physical Memory
INFO: Creating PrereqChecker Job for leaf task Swap Size
INFO: Creating CompositePrereqChecker Job for container task Free Space
INFO: Creating PrereqChecker Job for leaf task Free Space: CAR_CASA_SCB:/tmp
INFO: Creating PrereqChecker Job for leaf task User Existence: oracle
INFO: Creating PrereqChecker Job for leaf task Group Existence: oinstall
INFO: Creating PrereqChecker Job for leaf task Group Existence: dba
INFO: Creating PrereqChecker Job for leaf task Group Membership: oinstall
INFO: Creating PrereqChecker Job for leaf task Group Membership: dba
INFO: Creating PrereqChecker Job for leaf task Run Level
INFO: Creating PrereqChecker Job for leaf task Hard Limit: maximum open file descriptors
INFO: Creating PrereqChecker Job for leaf task Soft Limit: maximum open file descriptors
INFO: Creating PrereqChecker Job for leaf task Hard Limit: maximum user processes
INFO: Creating PrereqChecker Job for leaf task Soft Limit: maximum user processes
INFO: Creating PrereqChecker Job for leaf task Architecture
INFO: Creating PrereqChecker Job for leaf task OS Kernel Version
INFO: Creating CompositePrereqChecker Job for container task OS Kernel Parameters
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: semmsl
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: semmns
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: semopm
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: semmni
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: shmmax
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: shmmni
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: shmall
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: file-max
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: ip_local_port_range
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: rmem_default
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: rmem_max
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: wmem_default
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: wmem_max
INFO: Creating PrereqChecker Job for leaf task OS Kernel Parameter: aio-max-nr
INFO: Creating CompositePrereqChecker Job for container task Packages
INFO: Creating PrereqChecker Job for leaf task Package: make-3.80
INFO: Creating PrereqChecker Job for leaf task Package: binutils-2.15.92.0.2
INFO: Creating PrereqChecker Job for leaf task Package: gcc-3.4.6
INFO: Creating PrereqChecker Job for leaf task Package: libaio-0.3.105
INFO: Creating PrereqChecker Job for leaf task Package: libaio-0.3.105
INFO: Creating PrereqChecker Job for leaf task Package: glibc-2.3.4-2.41
INFO: Creating PrereqChecker Job for leaf task Package: glibc-2.3.4-2.41
INFO: Creating PrereqChecker Job for leaf task Package: compat-libstdc++-33-3.2.3
INFO: Creating PrereqChecker Job for leaf task Package: compat-libstdc++-33-3.2.3
INFO: Creating PrereqChecker Job for leaf task Package: elfutils-libelf-0.97
INFO: Creating PrereqChecker Job for leaf task Package: elfutils-libelf-devel-0.97
INFO: Creating PrereqChecker Job for leaf task Package: glibc-common-2.3.4
INFO: Creating PrereqChecker Job for leaf task Package: glibc-devel-2.3.4
INFO: Creating PrereqChecker Job for leaf task Package: glibc-headers-2.3.4
INFO: Creating PrereqChecker Job for leaf task Package: gcc-c++-3.4.6
INFO: Creating PrereqChecker Job for leaf task Package: libaio-devel-0.3.105
INFO: Creating PrereqChecker Job for leaf task Package: libaio-devel-0.3.105
INFO: Creating PrereqChecker Job for leaf task Package: libgcc-3.4.6
INFO: Creating PrereqChecker Job for leaf task Package: libgcc-3.4.6
INFO: Creating PrereqChecker Job for leaf task Package: libstdc++-3.4.6
INFO: Creating PrereqChecker Job for leaf task Package: libstdc++-3.4.6
INFO: Creating PrereqChecker Job for leaf task Package: libstdc++-devel-3.4.6
INFO: Creating PrereqChecker Job for leaf task Package: sysstat-5.0.5
INFO: Creating PrereqChecker Job for leaf task Package: unixODBC-2.2.11
INFO: Creating PrereqChecker Job for leaf task Package: unixODBC-2.2.11
INFO: Creating PrereqChecker Job for leaf task Package: unixODBC-devel-2.2.11
INFO: Creating PrereqChecker Job for leaf task Package: unixODBC-devel-2.2.11
INFO: Creating PrereqChecker Job for leaf task Package: pdksh-5.2.14
INFO: Creating PrereqChecker Job for leaf task Package: expat-1.95.7
INFO: Creating PrereqChecker Job for leaf task Users With Same UID
INFO: *********************************************
INFO: Physical Memory: This is a prerequisite condition to test whether the system has at least 1GB (1048576.0KB) of total physical memory.
INFO: Severity:IGNORABLE
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:1GB (1048576.0KB)
INFO: Actual Value:996.77MB (1020696.0KB)
INFO: Error Message:PRVF-7530 : Sufficient physical memory is not available on node "CAR_CASA_SCB" [Required physical memory = 1GB (1048576.0KB)]
INFO: Cause: Amount of physical memory (RAM) found does not meet minimum memory requirements.
INFO: Action: Add physical memory (RAM) to the node specified.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Available Physical Memory: This is a prerequisite condition to test whether the system has at least 50MB (51200.0KB) of available physical memory.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:50MB (51200.0KB)
INFO: Actual Value:679.54MB (695844.0KB)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Swap Size: This is a prerequisite condition to test whether sufficient total swap space is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:OPERATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
WARNING: Result values are not available for this verification task
INFO: Error Message:PRVF-7575 : Encountered an internal error. The range of reference data for verifying swap size has not been correctly defined
INFO: Cause: Swap size could not be determined based on the physical memory available.
INFO: Action: This is an internal error that should be reported to Oracle.
INFO: *********************************************
INFO: Free Space: CAR_CASA_SCB:/tmp: This is a prerequisite condition to test whether sufficient free space is available in the file system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:1GB 
INFO: Actual Value:15.45GB 
INFO: -----------------------------------------------
INFO: *********************************************
INFO: User Existence: oracle: This is a prerequisite condition to test whether user "oracle" exists on the system.
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
WARNING: Result values are not available for this verification task
INFO: *********************************************
INFO: Group Existence: oinstall: This is a prerequisite condition to test whether group "oinstall" exists on the system.
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
WARNING: Result values are not available for this verification task
INFO: *********************************************
INFO: Group Existence: dba: This is a prerequisite condition to test whether group "dba" exists on the system.
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
WARNING: Result values are not available for this verification task
INFO: *********************************************
INFO: Group Membership: oinstall: This is a prerequisite condition to test whether user "oracle" is a member of the group "oinstall".
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
WARNING: Result values are not available for this verification task
INFO: *********************************************
INFO: Group Membership: dba: This is a prerequisite condition to test whether user "oracle" is a member of the group "dba".
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
WARNING: Result values are not available for this verification task
INFO: *********************************************
INFO: Run Level: This is a prerequisite condition to test whether the system is running with proper run level.
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:3,5
INFO: Actual Value:5
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Hard Limit: maximum open file descriptors: This is a prerequisite condition to test whether the hard limit for "maximum open file descriptors" is set to at least 65536.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:65536
INFO: Actual Value:65536
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Soft Limit: maximum open file descriptors: This is a prerequisite condition to test whether the soft limit for "maximum open file descriptors" is set to at least 1024.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:1024
INFO: Actual Value:1024
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Hard Limit: maximum user processes: This is a prerequisite condition to test whether the hard limit for "maximum user processes" is set to at least 16384.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:16384
INFO: Actual Value:16384
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Soft Limit: maximum user processes: This is a prerequisite condition to test whether the soft limit for "maximum user processes" is set to at least 2047.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:2047
INFO: Actual Value:2047
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Architecture: This is a prerequisite condition to test whether the system has a certified architecture.
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:x86_64
INFO: Actual Value:x86_64
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Version: This is a prerequisite condition to test whether the system kernel version is at least "2.6.9".
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:2.6.9
INFO: Actual Value:2.6.32-279.el6.x86_64
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: semmsl: This is a prerequisite condition to test whether the OS kernel parameter "semmsl" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:250
INFO: Actual Value:250
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: semmns: This is a prerequisite condition to test whether the OS kernel parameter "semmns" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:32000
INFO: Actual Value:32000
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: semopm: This is a prerequisite condition to test whether the OS kernel parameter "semopm" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:100
INFO: Actual Value:100
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: semmni: This is a prerequisite condition to test whether the OS kernel parameter "semmni" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:128
INFO: Actual Value:128
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: shmmax: This is a prerequisite condition to test whether the OS kernel parameter "shmmax" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:536870912
INFO: Actual Value:982431744
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: shmmni: This is a prerequisite condition to test whether the OS kernel parameter "shmmni" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:4096
INFO: Actual Value:4096
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: shmall: This is a prerequisite condition to test whether the OS kernel parameter "shmall" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:2097152
INFO: Actual Value:4294967296
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: file-max: This is a prerequisite condition to test whether the OS kernel parameter "file-max" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:6815744
INFO: Actual Value:6815744
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: ip_local_port_range: This is a prerequisite condition to test whether the OS kernel parameter "ip_local_port_range" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:between 9000 & 65500
INFO: Actual Value:between 9000 & 65500
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: rmem_default: This is a prerequisite condition to test whether the OS kernel parameter "rmem_default" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:262144
INFO: Actual Value:262144
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: rmem_max: This is a prerequisite condition to test whether the OS kernel parameter "rmem_max" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:4194304
INFO: Actual Value:8388608
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: wmem_default: This is a prerequisite condition to test whether the OS kernel parameter "wmem_default" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:262144
INFO: Actual Value:262144
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: wmem_max: This is a prerequisite condition to test whether the OS kernel parameter "wmem_max" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:1048576
INFO: Actual Value:1048576
INFO: -----------------------------------------------
INFO: *********************************************
INFO: OS Kernel Parameter: aio-max-nr: This is a prerequisite condition to test whether the OS kernel parameter "aio-max-nr" is properly set.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:1048576
INFO: Actual Value:1048576
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: make-3.80: This is a prerequisite condition to test whether the package "make-3.80" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:make-3.80
INFO: Actual Value:make-3.81-20.el6
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: binutils-2.15.92.0.2: This is a prerequisite condition to test whether the package "binutils-2.15.92.0.2" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:binutils-2.15.92.0.2
INFO: Actual Value:binutils-2.20.51.0.2-5.36.el6
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: gcc-3.4.6: This is a prerequisite condition to test whether the package "gcc-3.4.6" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:gcc-3.4.6
INFO: Actual Value:gcc-4.4.7-3.el6
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: libaio-0.3.105: This is a prerequisite condition to test whether the package "libaio-0.3.105" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:libaio-0.3.105 (i386)
INFO: Actual Value:missing
INFO: Error Message:PRVF-7532 : Package "libaio-0.3.105 (i386)" is missing on node "CAR_CASA_SCB"
INFO: Cause: A required package is either not installed or, if the package is a kernel module, is not loaded on the specified node.
INFO: Action: Ensure that the required package is installed and available.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: libaio-0.3.105: This is a prerequisite condition to test whether the package "libaio-0.3.105" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:libaio-0.3.105 (x86_64)
INFO: Actual Value:libaio-0.3.107-10.el6 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: glibc-2.3.4-2.41: This is a prerequisite condition to test whether the package "glibc-2.3.4-2.41" is available on the system.
INFO: Severity:CRITICAL
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:glibc-2.3.4-2.41 (i686)
INFO: Actual Value:missing
INFO: Error Message:PRVF-7532 : Package "glibc-2.3.4-2.41 (i686)" is missing on node "CAR_CASA_SCB"
INFO: Cause: A required package is either not installed or, if the package is a kernel module, is not loaded on the specified node.
INFO: Action: Ensure that the required package is installed and available.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: glibc-2.3.4-2.41: This is a prerequisite condition to test whether the package "glibc-2.3.4-2.41" is available on the system.
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:glibc-2.3.4-2.41 (x86_64)
INFO: Actual Value:glibc-2.12-1.107.el6_4.2 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: compat-libstdc++-33-3.2.3: This is a prerequisite condition to test whether the package "compat-libstdc++-33-3.2.3" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:compat-libstdc++-33-3.2.3 (i386)
INFO: Actual Value:missing
INFO: Error Message:PRVF-7532 : Package "compat-libstdc++-33-3.2.3 (i386)" is missing on node "CAR_CASA_SCB"
INFO: Cause: A required package is either not installed or, if the package is a kernel module, is not loaded on the specified node.
INFO: Action: Ensure that the required package is installed and available.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: compat-libstdc++-33-3.2.3: This is a prerequisite condition to test whether the package "compat-libstdc++-33-3.2.3" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:compat-libstdc++-33-3.2.3 (x86_64)
INFO: Actual Value:compat-libstdc++-33-3.2.3-69.el6 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: elfutils-libelf-0.97: This is a prerequisite condition to test whether the package "elfutils-libelf-0.97" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:elfutils-libelf-0.97 (x86_64)
INFO: Actual Value:elfutils-libelf-0.152-1.el6 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: elfutils-libelf-devel-0.97: This is a prerequisite condition to test whether the package "elfutils-libelf-devel-0.97" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:elfutils-libelf-devel-0.97
INFO: Actual Value:elfutils-libelf-devel-0.152-1.el6
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: glibc-common-2.3.4: This is a prerequisite condition to test whether the package "glibc-common-2.3.4" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:glibc-common-2.3.4
INFO: Actual Value:glibc-common-2.12-1.107.el6_4.2
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: glibc-devel-2.3.4: This is a prerequisite condition to test whether the package "glibc-devel-2.3.4" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:glibc-devel-2.3.4 (x86_64)
INFO: Actual Value:glibc-devel-2.12-1.107.el6_4.2 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: glibc-headers-2.3.4: This is a prerequisite condition to test whether the package "glibc-headers-2.3.4" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:glibc-headers-2.3.4
INFO: Actual Value:glibc-headers-2.12-1.107.el6_4.2
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: gcc-c++-3.4.6: This is a prerequisite condition to test whether the package "gcc-c++-3.4.6" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:gcc-c++-3.4.6
INFO: Actual Value:gcc-c++-4.4.7-3.el6
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: libaio-devel-0.3.105: This is a prerequisite condition to test whether the package "libaio-devel-0.3.105" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:libaio-devel-0.3.105 (i386)
INFO: Actual Value:missing
INFO: Error Message:PRVF-7532 : Package "libaio-devel-0.3.105 (i386)" is missing on node "CAR_CASA_SCB"
INFO: Cause: A required package is either not installed or, if the package is a kernel module, is not loaded on the specified node.
INFO: Action: Ensure that the required package is installed and available.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: libaio-devel-0.3.105: This is a prerequisite condition to test whether the package "libaio-devel-0.3.105" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:libaio-devel-0.3.105 (x86_64)
INFO: Actual Value:libaio-devel-0.3.107-10.el6 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: libgcc-3.4.6: This is a prerequisite condition to test whether the package "libgcc-3.4.6" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:libgcc-3.4.6 (i386)
INFO: Actual Value:missing
INFO: Error Message:PRVF-7532 : Package "libgcc-3.4.6 (i386)" is missing on node "CAR_CASA_SCB"
INFO: Cause: A required package is either not installed or, if the package is a kernel module, is not loaded on the specified node.
INFO: Action: Ensure that the required package is installed and available.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: libgcc-3.4.6: This is a prerequisite condition to test whether the package "libgcc-3.4.6" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:libgcc-3.4.6 (x86_64)
INFO: Actual Value:libgcc-4.4.7-3.el6 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: libstdc++-3.4.6: This is a prerequisite condition to test whether the package "libstdc++-3.4.6" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:libstdc++-3.4.6 (i386)
INFO: Actual Value:missing
INFO: Error Message:PRVF-7532 : Package "libstdc++-3.4.6 (i386)" is missing on node "CAR_CASA_SCB"
INFO: Cause: A required package is either not installed or, if the package is a kernel module, is not loaded on the specified node.
INFO: Action: Ensure that the required package is installed and available.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: libstdc++-3.4.6: This is a prerequisite condition to test whether the package "libstdc++-3.4.6" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:libstdc++-3.4.6 (x86_64)
INFO: Actual Value:libstdc++-4.4.7-3.el6 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: libstdc++-devel-3.4.6: This is a prerequisite condition to test whether the package "libstdc++-devel-3.4.6" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:libstdc++-devel-3.4.6 (x86_64)
INFO: Actual Value:libstdc++-devel-4.4.7-3.el6 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: sysstat-5.0.5: This is a prerequisite condition to test whether the package "sysstat-5.0.5" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:sysstat-5.0.5
INFO: Actual Value:sysstat-9.0.4-20.el6
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: unixODBC-2.2.11: This is a prerequisite condition to test whether the package "unixODBC-2.2.11" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:unixODBC-2.2.11 (i386)
INFO: Actual Value:missing
INFO: Error Message:PRVF-7532 : Package "unixODBC-2.2.11 (i386)" is missing on node "CAR_CASA_SCB"
INFO: Cause: A required package is either not installed or, if the package is a kernel module, is not loaded on the specified node.
INFO: Action: Ensure that the required package is installed and available.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: unixODBC-2.2.11: This is a prerequisite condition to test whether the package "unixODBC-2.2.11" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:unixODBC-2.2.11 (x86_64)
INFO: Actual Value:unixODBC-2.2.14-12.el6_3 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: unixODBC-devel-2.2.11: This is a prerequisite condition to test whether the package "unixODBC-devel-2.2.11" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:unixODBC-devel-2.2.11 (i386)
INFO: Actual Value:missing
INFO: Error Message:PRVF-7532 : Package "unixODBC-devel-2.2.11 (i386)" is missing on node "CAR_CASA_SCB"
INFO: Cause: A required package is either not installed or, if the package is a kernel module, is not loaded on the specified node.
INFO: Action: Ensure that the required package is installed and available.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: unixODBC-devel-2.2.11: This is a prerequisite condition to test whether the package "unixODBC-devel-2.2.11" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:unixODBC-devel-2.2.11 (x86_64)
INFO: Actual Value:unixODBC-devel-2.2.14-12.el6_3 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: pdksh-5.2.14: This is a prerequisite condition to test whether the package "pdksh-5.2.14" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:VERIFICATION_FAILED
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:pdksh-5.2.14
INFO: Actual Value:missing
INFO: Error Message:PRVF-7532 : Package "pdksh-5.2.14" is missing on node "CAR_CASA_SCB"
INFO: Cause: A required package is either not installed or, if the package is a kernel module, is not loaded on the specified node.
INFO: Action: Ensure that the required package is installed and available.
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Package: expat-1.95.7: This is a prerequisite condition to test whether the package "expat-1.95.7" is available on the system.
INFO: Severity:IGNORABLE
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
INFO: Expected Value:expat-1.95.7 (x86_64)
INFO: Actual Value:expat-2.0.1-11.el6_2 (x86_64)
INFO: -----------------------------------------------
INFO: *********************************************
INFO: Users With Same UID: This test checks that multiple users do not exist with user id as "0".
INFO: Severity:CRITICAL
INFO: OverallStatus:SUCCESSFUL
INFO: -----------------------------------------------
INFO: Verification Result for Node:CAR_CASA_SCB
WARNING: Result values are not available for this verification task
INFO: All forked task are completed at state performChecks
INFO: Completed background operations
INFO: Moved to state <performChecks>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <performChecks>
INFO: Using default Validator configured in the Action class oracle.install.ivw.db.action.PrereqAction
INFO: Adding ExitStatus PREREQUISITES_NOT_MET to the exit status set
SEVERE: [FATAL] [INS-13013] Target environment do not meet some mandatory requirements.
   CAUSE: Some of the mandatory prerequisites are not met. See logs for details. /u01/app/oraInventory/logs/installActions2013-08-16_07-18-14PM.log
   ACTION: Identify the list of failed prerequisite checks from the log: /u01/app/oraInventory/logs/installActions2013-08-16_07-18-14PM.log. Then either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.
INFO: Advice is ABORT
INFO: Adding ExitStatus INVALID_USER_INPUT to the exit status set
INFO: Completed validating state <performChecks>
INFO: Terminating all background operations
INFO: Terminated all background operations
INFO: Finding the most appropriate exit status for the current application
INFO: Exit Status is -3
INFO: Shutdown Oracle Database 11g Release 2 Installer
INFO: Unloading Setup Driver
INFO: inventory location is/u01/app/oraInventory