프린트 하기

OS환경 : Oracle Linux 8.1 (64bit)

 

DB 환경 : Oracle Database 19.3.0.0

 

에러 : AHF-00074: Required Perl Modules not found :  Net::Ping

ahf 설치시 발생하는 에러 메세지

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
# unzip AHF-LINUX_v24.2.0.zip
Archive:  AHF-LINUX_v24.2.0.zip
  inflating: ahf_setup
 extracting: ahf_setup.dat
  inflating: README.txt
  inflating: oracle-tfa.pub
# ls -l
total 853080
-rw-r--r-- 1 root root 424820183 Mar 21 16:31 AHF-LINUX_v24.2.0.zip
-rwx------ 1 root root 448718192 Feb 29 14:28 ahf_setup
-rw------- 1 root root       384 Feb 29 14:28 ahf_setup.dat
-r-------- 1 root root       625 Feb 29 14:29 oracle-tfa.pub
-r-xr-x--- 1 root root      1537 Feb 29 14:29 README.txt
 
# ./ahf_setup
 
AHF Installer for Platform Linux Architecture x86_64
 
AHF Installation Log : /tmp/ahf_install_242000_4409_2024_03_21-16_32_30.log
 
Starting Autonomous Health Framework (AHF) Installation
 
AHF Version: 24.2.0 Build Date: 202402281810
 
PERL : /bin/perl
 
[ERROR] : AHF-00074: Required Perl Modules not found :  Net::Ping

 

 

해결 방법 : perl 경로 설정 후 설치 재시도

perl 위치 확인

1
2
# which perl
/usr/bin/perl

기존에는 이 경로의 perl을 이용했었음

 

 

perlhome 을 oracle home 이나 grid home 으로 잡아준 뒤 실행

1
2
3
4
5
6
7
8
9
10
11
12
13
# ./ahf_setup -perlhome /ORA19/app/oracle/product/19.0.0/db_1/perl
 
AHF Installer for Platform Linux Architecture x86_64
 
AHF Installation Log : /tmp/ahf_install_242000_5184_2024_03_21-16_37_08.log
 
Starting Autonomous Health Framework (AHF) Installation
 
AHF Version: 24.2.0 Build Date: 202402281810
 
PERL : /ORA19/app/oracle/product/19.0.0/db_1/perl/bin/perl
 
[ERROR] : AHF-00026: Perl is not owned by root.  AHF Requires Perl to be root owned for AHF Installations as the root user.

oracle home/perl 으로 잡아준 경우 AHF-00026 에러가 발생함

 

 

이 경우 오라클 home 의 perl 폴더를 /opt/perl 로 복제 및 권한 부여해준 뒤 ahf을 설치해야함

1
2
3
ex) cp -pR <ORACLE_HOME>/perl /opt/perl
# cp -pR /ORA19/app/oracle/product/19.0.0/db_1/perl /opt/perl
# chown -R root:oinstall /opt/perl

 

 

20251016 업데이트

2800691.1 참고하여 perl-Data-Dumper 패키지 설치 후 재시도

1
2
# rpm -q perl-Data-Dumper
# dnf install perl-Data-Dumper -y

 

 

20251031 업데이트

perl-Data-Dumper 설치해도 안되는 경우가 생겨서 구글링해서 방법을 찾음

perl 관련 패키지를 다 설치하는 방법인듯함(테스트 환경이 아닌이상 비추천함)

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
# dnf install -y perl-CPAN
Last metadata expiration check: 2:05:16 ago on Fri 31 Oct 2025 08:12:20 PM KST.
Dependencies resolved.
=====================================================================================================================================================================
 Package                                           Architecture                Version                                  Repository                              Size
=====================================================================================================================================================================
Installing:
 perl-CPAN                                         noarch                      2.18-402.el8_10                          ol8_appstream                          574 k
Installing dependencies:
 perl                                              x86_64                      4:5.26.3-423.el8_10                      ol8_appstream                           72 k
 perl-Algorithm-Diff                               noarch                      1.1903-9.el8                             ol8_baseos_latest                       52 k
 perl-Archive-Tar                                  noarch                      2.30-1.el8                               ol8_baseos_latest                       79 k
 perl-Archive-Zip                                  noarch                      1.60-3.el8                               ol8_appstream                          108 k
 perl-Attribute-Handlers                           noarch                      0.99-423.el8_10                          ol8_appstream                           88 k
 perl-B-Debug                                      noarch                      1.26-2.el8                               ol8_appstream                           26 k
 perl-CPAN-Meta                                    noarch                      2.150010-396.el8                         ol8_appstream                          191 k
 perl-CPAN-Meta-Requirements                       noarch                      2.140-396.el8                            ol8_appstream                           37 k
 perl-CPAN-Meta-YAML                               noarch                      0.018-397.el8                            ol8_appstream                           34 k
 perl-Compress-Bzip2                               x86_64                      2.26-6.el8                               ol8_appstream                           72 k
 perl-Config-Perl-V                                noarch                      0.30-1.el8                               ol8_appstream                           22 k
 perl-DB_File                                      x86_64                      1.842-1.el8                              ol8_appstream                           83 k
 perl-Data-OptList                                 noarch                      0.110-6.el8                              ol8_appstream                           31 k
 perl-Data-Section                                 noarch                      0.200007-3.el8                           ol8_appstream                           30 k
 perl-Devel-PPPort                                 x86_64                      3.36-5.el8                               ol8_appstream                          118 k
 perl-Devel-Peek                                   x86_64                      1.26-423.el8_10                          ol8_appstream                           93 k
 perl-Devel-SelfStubber                            noarch                      1.06-423.el8_10                          ol8_appstream                           75 k
 perl-Devel-Size                                   x86_64                      0.81-2.el8                               ol8_appstream                           34 k
 perl-Encode-devel                                 x86_64                      4:2.97-3.el8                             ol8_appstream                           39 k
 perl-Env                                          noarch                      1.04-395.el8                             ol8_appstream                           21 k
 perl-ExtUtils-CBuilder                            noarch                      1:0.280230-2.el8                         ol8_appstream                           48 k
 perl-ExtUtils-Command                             noarch                      1:7.34-1.el8                             ol8_appstream                           19 k
 perl-ExtUtils-Embed                               noarch                      1.34-423.el8_10                          ol8_appstream                           78 k
 perl-ExtUtils-Install                             noarch                      2.14-4.el8                               ol8_appstream                           46 k
 perl-ExtUtils-MM-Utils                            noarch                      1:7.34-1.el8                             ol8_appstream                           16 k
 perl-ExtUtils-MakeMaker                           noarch                      1:7.34-1.el8                             ol8_appstream                          300 k
 perl-ExtUtils-Manifest                            noarch                      1.70-395.el8                             ol8_appstream                           36 k
 perl-ExtUtils-Miniperl                            noarch                      1.06-423.el8_10                          ol8_appstream                           76 k
 perl-ExtUtils-ParseXS                             noarch                      1:3.35-2.el8                             ol8_appstream                           83 k
 perl-File-Fetch                                   noarch                      0.56-2.el8                               ol8_appstream                           33 k
 perl-File-HomeDir                                 noarch                      1.002-4.el8                              ol8_appstream                           61 k
 perl-File-Which                                   noarch                      1.22-2.el8                               ol8_appstream                           23 k
 perl-Filter                                       x86_64                      2:1.58-2.el8                             ol8_appstream                           82 k
 perl-Filter-Simple                                noarch                      0.94-2.el8                               ol8_appstream                           29 k
 perl-IO-Zlib                                      noarch                      1:1.10-423.el8_10                        ol8_appstream                           80 k
 perl-IPC-Cmd                                      noarch                      2:1.02-1.el8                             ol8_appstream                           43 k
 perl-IPC-SysV                                     x86_64                      2.07-397.el8                             ol8_appstream                           43 k
 perl-IPC-System-Simple                            noarch                      1.25-17.el8                              ol8_appstream                           43 k
 perl-JSON-PP                                      noarch                      1:2.97.001-3.el8                         ol8_appstream                           68 k
 perl-Locale-Codes                                 noarch                      3.57-1.el8                               ol8_appstream                          310 k
 perl-Locale-Maketext                              noarch                      1.28-396.el8                             ol8_appstream                           99 k
 perl-Locale-Maketext-Simple                       noarch                      1:0.21-423.el8_10                        ol8_appstream                           78 k
 perl-MRO-Compat                                   noarch                      0.13-4.el8                               ol8_appstream                           24 k
 perl-Math-BigInt-FastCalc                         x86_64                      0.500.600-6.el8                          ol8_appstream                           27 k
 perl-Math-BigRat                                  noarch                      0.2614-1.el8                             ol8_appstream                           40 k
 perl-Memoize                                      noarch                      1.03-423.el8_10                          ol8_appstream                          118 k
 perl-Module-Build                                 noarch                      2:0.42.24-5.el8                          ol8_appstream                          273 k
 perl-Module-CoreList                              noarch                      1:5.20181130-1.el8                       ol8_appstream                           87 k
 perl-Module-CoreList-tools                        noarch                      1:5.20181130-1.el8                       ol8_appstream                           22 k
 perl-Module-Load                                  noarch                      1:0.32-395.el8                           ol8_appstream                           19 k
 perl-Module-Load-Conditional                      noarch                      0.68-395.el8                             ol8_appstream                           24 k
 perl-Module-Loaded                                noarch                      1:0.08-423.el8_10                        ol8_appstream                           74 k
 perl-Module-Metadata                              noarch                      1.000033-395.el8                         ol8_appstream                           44 k
 perl-Net-Ping                                     noarch                      2.55-423.el8_10                          ol8_appstream                          101 k
 perl-Package-Generator                            noarch                      1.106-11.el8                             ol8_appstream                           27 k
 perl-Params-Check                                 noarch                      1:0.38-395.el8                           ol8_appstream                           24 k
 perl-Params-Util                                  x86_64                      1.07-22.el8                              ol8_appstream                           44 k
 perl-Perl-OSType                                  noarch                      1.010-396.el8                            ol8_appstream                           29 k
 perl-PerlIO-via-QuotedPrint                       noarch                      0.08-395.el8                             ol8_appstream                           13 k
 perl-Pod-Checker                                  noarch                      4:1.73-395.el8                           ol8_appstream                           33 k
 perl-Pod-Html                                     noarch                      1.22.02-423.el8_10                       ol8_appstream                           87 k
 perl-Pod-Parser                                   noarch                      1.63-396.el8                             ol8_appstream                          108 k
 perl-SelfLoader                                   noarch                      1.23-423.el8_10                          ol8_appstream                           82 k
 perl-Software-License                             noarch                      0.103013-2.el8                           ol8_appstream                          137 k
 perl-Sub-Exporter                                 noarch                      0.987-15.el8                             ol8_appstream                           73 k
 perl-Sub-Install                                  noarch                      0.928-14.el8                             ol8_appstream                           27 k
 perl-Test                                         noarch                      1.30-423.el8_10                          ol8_appstream                           89 k
 perl-Test-Harness                                 noarch                      1:3.42-1.el8                             ol8_appstream                          279 k
 perl-Test-Simple                                  noarch                      1:1.302135-1.el8                         ol8_appstream                          516 k
 perl-Text-Balanced                                noarch                      2.03-395.el8                             ol8_appstream                           58 k
 perl-Text-Diff                                    noarch                      1.45-2.el8                               ol8_baseos_latest                       45 k
 perl-Text-Glob                                    noarch                      0.11-4.el8                               ol8_appstream                           17 k
 perl-Text-Template                                noarch                      1.51-1.el8                               ol8_appstream                           64 k
 perl-Time-HiRes                                   x86_64                      4:1.9758-2.el8                           ol8_appstream                           61 k
 perl-Time-Piece                                   x86_64                      1.31-423.el8_10                          ol8_appstream                           97 k
 perl-Unicode-Collate                              x86_64                      1.25-2.el8                               ol8_appstream                          686 k
 perl-autodie                                      noarch                      2.29-396.el8                             ol8_appstream                           98 k
 perl-bignum                                       noarch                      0.49-2.el8                               ol8_appstream                           43 k
 perl-devel                                        x86_64                      4:5.26.3-423.el8_10                      ol8_appstream                          599 k
 perl-encoding                                     x86_64                      4:2.22-3.el8                             ol8_appstream                           68 k
 perl-experimental                                 noarch                      0.019-2.el8                              ol8_appstream                           24 k
 perl-inc-latest                                   noarch                      2:0.500-9.el8                            ol8_appstream                           25 k
 perl-libnetcfg                                    noarch                      4:5.26.3-423.el8_10                      ol8_appstream                           77 k
 perl-local-lib                                    noarch                      2.000024-2.el8                           ol8_appstream                           74 k
 perl-open                                         noarch                      1.11-423.el8_10                          ol8_appstream                           77 k
 perl-perlfaq                                      noarch                      5.20180605-1.el8                         ol8_appstream                          386 k
 perl-utils                                        noarch                      5.26.3-423.el8_10                        ol8_appstream                          128 k
 perl-version                                      x86_64                      6:0.99.24-1.el8                          ol8_appstream                           67 k
 systemtap-sdt-devel                               x86_64                      4.9-3.0.1.el8                            ol8_appstream                           88 k
 
Transaction Summary
=====================================================================================================================================================================
Install  90 Packages
 
Total download size: 8.6 M
Installed size: 24 M
Downloading Packages:
(1/90): perl-Algorithm-Diff-1.1903-9.el8.noarch.rpm                                                                                  229 kB/|  52 kB     00:00
(2/90): perl-Text-Diff-1.45-2.el8.noarch.rpm                                                                                         193 kB/|  45 kB     00:00
(3/90): perl-Archive-Tar-2.30-1.el8.noarch.rpm                                                                                       306 kB/|  79 kB     00:00
(4/90): perl-5.26.3-423.el8_10.x86_64.rpm                                                                                            922 kB/|  72 kB     00:00
(5/90): perl-Attribute-Handlers-0.99-423.el8_10.noarch.rpm                                                                           1.4 MB/|  88 kB     00:00
(6/90): perl-Archive-Zip-1.60-3.el8.noarch.rpm                                                                                       1.1 MB/| 108 kB     00:00
(7/90): perl-B-Debug-1.26-2.el8.noarch.rpm                                                                                           553 kB/|  26 kB     00:00
(8/90): perl-CPAN-Meta-Requirements-2.140-396.el8.noarch.rpm                                                                         669 kB/|  37 kB     00:00
(9/90): perl-CPAN-Meta-2.150010-396.el8.noarch.rpm                                                                                   2.2 MB/| 191 kB     00:00
(10/90): perl-CPAN-2.18-402.el8_10.noarch.rpm                                                                                        4.1 MB/| 574 kB     00:00
(11/90): perl-CPAN-Meta-YAML-0.018-397.el8.noarch.rpm                                                                                648 kB/|  34 kB     00:00
(12/90): perl-Compress-Bzip2-2.26-6.el8.x86_64.rpm                                                                                   1.6 MB/|  72 kB     00:00
(13/90): perl-Config-Perl-V-0.30-1.el8.noarch.rpm                                                                                    530 kB/|  22 kB     00:00
(14/90): perl-Data-OptList-0.110-6.el8.noarch.rpm                                                                                    712 kB/|  31 kB     00:00
(15/90): perl-DB_File-1.842-1.el8.x86_64.rpm                                                                                         1.2 MB/|  83 kB     00:00
(16/90): perl-Data-Section-0.200007-3.el8.noarch.rpm                                                                                 742 kB/|  30 kB     00:00
(17/90): perl-Devel-PPPort-3.36-5.el8.x86_64.rpm                                                                                     2.3 MB/| 118 kB     00:00
(18/90): perl-Devel-SelfStubber-1.06-423.el8_10.noarch.rpm                                                                           1.7 MB/|  75 kB     00:00
(19/90): perl-Devel-Peek-1.26-423.el8_10.x86_64.rpm                                                                                  1.5 MB/|  93 kB     00:00
(20/90): perl-Devel-Size-0.81-2.el8.x86_64.rpm                                                                                       828 kB/|  34 kB     00:00
(21/90): perl-Encode-devel-2.97-3.el8.x86_64.rpm                                                                                     921 kB/|  39 kB     00:00
(22/90): perl-Env-1.04-395.el8.noarch.rpm                                                                                            505 kB/|  21 kB     00:00
(23/90): perl-ExtUtils-CBuilder-0.280230-2.el8.noarch.rpm                                                                            1.1 MB/|  48 kB     00:00
(24/90): perl-ExtUtils-Command-7.34-1.el8.noarch.rpm                                                                                 461 kB/|  19 kB     00:00
(25/90): perl-ExtUtils-Install-2.14-4.el8.noarch.rpm                                                                                 1.0 MB/|  46 kB     00:00
(26/90): perl-ExtUtils-Embed-1.34-423.el8_10.noarch.rpm                                                                              1.4 MB/|  78 kB     00:00
(27/90): perl-ExtUtils-MM-Utils-7.34-1.el8.noarch.rpm                                                                                402 kB/|  16 kB     00:00
(28/90): perl-ExtUtils-Manifest-1.70-395.el8.noarch.rpm                                                                              798 kB/|  36 kB     00:00
(29/90): perl-ExtUtils-MakeMaker-7.34-1.el8.noarch.rpm                                                                               4.6 MB/| 300 kB     00:00
(30/90): perl-ExtUtils-Miniperl-1.06-423.el8_10.noarch.rpm                                                                           1.7 MB/|  76 kB     00:00
(31/90): perl-File-Fetch-0.56-2.el8.noarch.rpm                                                                                       787 kB/|  33 kB     00:00
(32/90): perl-ExtUtils-ParseXS-3.35-2.el8.noarch.rpm                                                                                 1.4 MB/|  83 kB     00:00
(33/90): perl-File-HomeDir-1.002-4.el8.noarch.rpm                                                                                    1.4 MB/|  61 kB     00:00
(34/90): perl-File-Which-1.22-2.el8.noarch.rpm                                                                                       538 kB/|  23 kB     00:00
(35/90): perl-Filter-1.58-2.el8.x86_64.rpm                                                                                           1.8 MB/|  82 kB     00:00
(36/90): perl-Filter-Simple-0.94-2.el8.noarch.rpm                                                                                    707 kB/|  29 kB     00:00
(37/90): perl-IPC-Cmd-1.02-1.el8.noarch.rpm                                                                                          1.0 MB/|  43 kB     00:00
(38/90): perl-IPC-SysV-2.07-397.el8.x86_64.rpm                                                                                       970 kB/|  43 kB     00:00
(39/90): perl-IO-Zlib-1.10-423.el8_10.noarch.rpm                                                                                     1.4 MB/|  80 kB     00:00
(40/90): perl-IPC-System-Simple-1.25-17.el8.noarch.rpm                                                                               1.0 MB/|  43 kB     00:00
(41/90): perl-JSON-PP-2.97.001-3.el8.noarch.rpm                                                                                      1.5 MB/|  68 kB     00:00
(42/90): perl-Locale-Maketext-Simple-0.21-423.el8_10.noarch.rpm                                                                      1.7 MB/|  78 kB     00:00
(43/90): perl-Locale-Maketext-1.28-396.el8.noarch.rpm                                                                                1.9 MB/|  99 kB     00:00
(44/90): perl-Locale-Codes-3.57-1.el8.noarch.rpm                                                                                     2.8 MB/| 310 kB     00:00
(45/90): perl-MRO-Compat-0.13-4.el8.noarch.rpm                                                                                       585 kB/|  24 kB     00:00
(46/90): perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64.rpm                                                                        655 kB/|  27 kB     00:00
(47/90): perl-Math-BigRat-0.2614-1.el8.noarch.rpm                                                                                    979 kB/|  40 kB     00:00
(48/90): perl-Memoize-1.03-423.el8_10.noarch.rpm                                                                                     2.6 MB/| 118 kB     00:00
(49/90): perl-Module-Build-0.42.24-5.el8.noarch.rpm                                                                                  4.5 MB/| 273 kB     00:00
(50/90): perl-Module-CoreList-5.20181130-1.el8.noarch.rpm                                                                            1.9 MB/|  87 kB     00:00
(51/90): perl-Module-CoreList-tools-5.20181130-1.el8.noarch.rpm                                                                      541 kB/|  22 kB     00:00
(52/90): perl-Module-Load-0.32-395.el8.noarch.rpm                                                                                    458 kB/|  19 kB     00:00
(53/90): perl-Module-Load-Conditional-0.68-395.el8.noarch.rpm                                                                        544 kB/|  24 kB     00:00
(54/90): perl-Module-Loaded-0.08-423.el8_10.noarch.rpm                                                                               1.7 MB/|  74 kB     00:00
(55/90): perl-Module-Metadata-1.000033-395.el8.noarch.rpm                                                                            1.0 MB/|  44 kB     00:00
(56/90): perl-Net-Ping-2.55-423.el8_10.noarch.rpm                                                                                    2.1 MB/| 101 kB     00:00
(57/90): perl-Package-Generator-1.106-11.el8.noarch.rpm                                                                              670 kB/|  27 kB     00:00
(58/90): perl-Params-Check-0.38-395.el8.noarch.rpm                                                                                   554 kB/|  24 kB     00:00
(59/90): perl-Params-Util-1.07-22.el8.x86_64.rpm                                                                                     1.0 MB/|  44 kB     00:00
(60/90): perl-Perl-OSType-1.010-396.el8.noarch.rpm                                                                                   715 kB/|  29 kB     00:00
(61/90): perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch.rpm                                                                         331 kB/|  13 kB     00:00
(62/90): perl-Pod-Checker-1.73-395.el8.noarch.rpm                                                                                    717 kB/|  33 kB     00:00
(63/90): perl-Pod-Html-1.22.02-423.el8_10.noarch.rpm                                                                                 1.9 MB/|  87 kB     00:00
(64/90): perl-Pod-Parser-1.63-396.el8.noarch.rpm                                                                                     2.2 MB/| 108 kB     00:00
(65/90): perl-SelfLoader-1.23-423.el8_10.noarch.rpm                                                                                  1.8 MB/|  82 kB     00:00
(66/90): perl-Software-License-0.103013-2.el8.noarch.rpm                                                                             2.9 MB/| 137 kB     00:00
(67/90): perl-Sub-Exporter-0.987-15.el8.noarch.rpm                                                                                   1.6 MB/|  73 kB     00:00
(68/90): perl-Sub-Install-0.928-14.el8.noarch.rpm                                                                                    671 kB/|  27 kB     00:00
(69/90): perl-Test-1.30-423.el8_10.noarch.rpm                                                                                        2.0 MB/|  89 kB     00:00
(70/90): perl-Test-Harness-3.42-1.el8.noarch.rpm                                                                                     4.6 MB/| 279 kB     00:00
(71/90): perl-Text-Balanced-2.03-395.el8.noarch.rpm                                                                                  1.3 MB/|  58 kB     00:00
(72/90): perl-Test-Simple-1.302135-1.el8.noarch.rpm                                                                                  6.3 MB/| 516 kB     00:00
(73/90): perl-Text-Glob-0.11-4.el8.noarch.rpm                                                                                        385 kB/|  17 kB     00:00
(74/90): perl-Text-Template-1.51-1.el8.noarch.rpm                                                                                    1.5 MB/|  64 kB     00:00
(75/90): perl-Time-HiRes-1.9758-2.el8.x86_64.rpm                                                                                     1.5 MB/|  61 kB     00:00
(76/90): perl-Time-Piece-1.31-423.el8_10.x86_64.rpm                                                                                  2.1 MB/|  97 kB     00:00
(77/90): perl-autodie-2.29-396.el8.noarch.rpm                                                                                        2.3 MB/|  98 kB     00:00
(78/90): perl-Unicode-Collate-1.25-2.el8.x86_64.rpm                                                                                  9.4 MB/| 686 kB     00:00
(79/90): perl-bignum-0.49-2.el8.noarch.rpm                                                                                           1.0 MB/|  43 kB     00:00
(80/90): perl-encoding-2.22-3.el8.x86_64.rpm                                                                                         1.5 MB/|  68 kB     00:00
(81/90): perl-devel-5.26.3-423.el8_10.x86_64.rpm                                                                                      11 MB/| 599 kB     00:00
(82/90): perl-experimental-0.019-2.el8.noarch.rpm                                                                                    561 kB/|  24 kB     00:00
(83/90): perl-inc-latest-0.500-9.el8.noarch.rpm                                                                                      604 kB/|  25 kB     00:00
(84/90): perl-libnetcfg-5.26.3-423.el8_10.noarch.rpm                                                                                 1.8 MB/|  77 kB     00:00
(85/90): perl-local-lib-2.000024-2.el8.noarch.rpm                                                                                    1.6 MB/|  74 kB     00:00
(86/90): perl-open-1.11-423.el8_10.noarch.rpm                                                                                        1.7 MB/|  77 kB     00:00
(87/90): perl-perlfaq-5.20180605-1.el8.noarch.rpm                                                                                    7.6 MB/| 386 kB     00:00
(88/90): perl-utils-5.26.3-423.el8_10.noarch.rpm                                                                                     2.6 MB/| 128 kB     00:00
(89/90): perl-version-0.99.24-1.el8.x86_64.rpm                                                                                       1.5 MB/|  67 kB     00:00
(90/90): systemtap-sdt-devel-4.9-3.0.1.el8.x86_64.rpm                                                                                2.1 MB/|  88 kB     00:00
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                                                5.0 MB/| 8.6 MB     00:01
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                                                                             1/1
  Installing       : perl-version-6:0.99.24-1.el8.x86_64                                                                                                        1/90
  Installing       : perl-Time-HiRes-4:1.9758-2.el8.x86_64                                                                                                      2/90
  Installing       : perl-CPAN-Meta-Requirements-2.140-396.el8.noarch                                                                                           3/90
  Installing       : perl-ExtUtils-ParseXS-1:3.35-2.el8.noarch                                                                                                  4/90
  Installing       : perl-ExtUtils-Manifest-1.70-395.el8.noarch                                                                                                 5/90
  Installing       : perl-Test-Harness-1:3.42-1.el8.noarch                                                                                                      6/90
  Installing       : perl-Module-CoreList-1:5.20181130-1.el8.noarch                                                                                             7/90
  Installing       : perl-Module-Metadata-1.000033-395.el8.noarch                                                                                               8/90
  Installing       : perl-SelfLoader-1.23-423.el8_10.noarch                                                                                                     9/90
  Installing       : perl-Perl-OSType-1.010-396.el8.noarch                                                                                                     10/90
  Installing       : perl-Module-Load-1:0.32-395.el8.noarch                                                                                                    11/90
  Installing       : perl-JSON-PP-1:2.97.001-3.el8.noarch                                                                                                      12/90
  Installing       : perl-Filter-2:1.58-2.el8.x86_64                                                                                                           13/90
  Installing       : perl-encoding-4:2.22-3.el8.x86_64                                                                                                         14/90
  Installing       : perl-Text-Balanced-2.03-395.el8.noarch                                                                                                    15/90
  Installing       : perl-Net-Ping-2.55-423.el8_10.noarch                                                                                                      16/90
  Installing       : perl-Sub-Install-0.928-14.el8.noarch                                                                                                      17/90
  Installing       : perl-Pod-Html-1.22.02-423.el8_10.noarch                                                                                                   18/90
  Installing       : perl-Params-Util-1.07-22.el8.x86_64                                                                                                       19/90
  Installing       : perl-Math-BigRat-0.2614-1.el8.noarch                                                                                                      20/90
  Installing       : perl-Locale-Maketext-1.28-396.el8.noarch                                                                                                  21/90
  Installing       : perl-Locale-Maketext-Simple-1:0.21-423.el8_10.noarch                                                                                      22/90
  Installing       : perl-Params-Check-1:0.38-395.el8.noarch                                                                                                   23/90
  Installing       : perl-Module-Load-Conditional-0.68-395.el8.noarch                                                                                          24/90
  Installing       : perl-IO-Zlib-1:1.10-423.el8_10.noarch                                                                                                     25/90
  Installing       : perl-ExtUtils-Command-1:7.34-1.el8.noarch                                                                                                 26/90
  Installing       : perl-CPAN-Meta-YAML-0.018-397.el8.noarch                                                                                                  27/90
  Installing       : perl-CPAN-Meta-2.150010-396.el8.noarch                                                                                                    28/90
  Installing       : perl-bignum-0.49-2.el8.noarch                                                                                                             29/90
  Installing       : perl-Data-OptList-0.110-6.el8.noarch                                                                                                      30/90
  Installing       : perl-Filter-Simple-0.94-2.el8.noarch                                                                                                      31/90
  Installing       : perl-open-1.11-423.el8_10.noarch                                                                                                          32/90
  Installing       : perl-Devel-SelfStubber-1.06-423.el8_10.noarch                                                                                             33/90
  Installing       : perl-Module-CoreList-tools-1:5.20181130-1.el8.noarch                                                                                      34/90
  Installing       : perl-experimental-0.019-2.el8.noarch                                                                                                      35/90
  Installing       : systemtap-sdt-devel-4.9-3.0.1.el8.x86_64                                                                                                  36/90
  Installing       : perl-devel-4:5.26.3-423.el8_10.x86_64                                                                                                     37/90
  Installing       : perl-ExtUtils-Install-2.14-4.el8.noarch                                                                                                   38/90
  Installing       : perl-ExtUtils-MakeMaker-1:7.34-1.el8.noarch                                                                                               39/90
  Installing       : perl-ExtUtils-Embed-1.34-423.el8_10.noarch                                                                                                40/90
  Installing       : perl-ExtUtils-Miniperl-1.06-423.el8_10.noarch                                                                                             41/90
  Installing       : perl-libnetcfg-4:5.26.3-423.el8_10.noarch                                                                                                 42/90
  Installing       : perl-inc-latest-2:0.500-9.el8.noarch                                                                                                      43/90
  Installing       : perl-Encode-devel-4:2.97-3.el8.x86_64                                                                                                     44/90
  Installing       : perl-utils-5.26.3-423.el8_10.noarch                                                                                                       45/90
  Installing       : perl-perlfaq-5.20180605-1.el8.noarch                                                                                                      46/90
  Installing       : perl-local-lib-2.000024-2.el8.noarch                                                                                                      47/90
  Installing       : perl-Unicode-Collate-1.25-2.el8.x86_64                                                                                                    48/90
  Installing       : perl-Time-Piece-1.31-423.el8_10.x86_64                                                                                                    49/90
  Installing       : perl-Text-Template-1.51-1.el8.noarch                                                                                                      50/90
  Installing       : perl-Text-Glob-0.11-4.el8.noarch                                                                                                          51/90
  Installing       : perl-Test-Simple-1:1.302135-1.el8.noarch                                                                                                  52/90
  Installing       : perl-Test-1.30-423.el8_10.noarch                                                                                                          53/90
  Installing       : perl-Pod-Parser-1.63-396.el8.noarch                                                                                                       54/90
  Installing       : perl-Pod-Checker-4:1.73-395.el8.noarch                                                                                                    55/90
  Installing       : perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch                                                                                           56/90
  Installing       : perl-Package-Generator-1.106-11.el8.noarch                                                                                                57/90
  Installing       : perl-Sub-Exporter-0.987-15.el8.noarch                                                                                                     58/90
  Installing       : perl-Module-Loaded-1:0.08-423.el8_10.noarch                                                                                               59/90
  Installing       : perl-Memoize-1.03-423.el8_10.noarch                                                                                                       60/90
  Installing       : perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64                                                                                          61/90
  Installing       : perl-MRO-Compat-0.13-4.el8.noarch                                                                                                         62/90
  Installing       : perl-Data-Section-0.200007-3.el8.noarch                                                                                                   63/90
  Installing       : perl-Software-License-0.103013-2.el8.noarch                                                                                               64/90
  Installing       : perl-Locale-Codes-3.57-1.el8.noarch                                                                                                       65/90
  Installing       : perl-IPC-System-Simple-1.25-17.el8.noarch                                                                                                 66/90
  Installing       : perl-autodie-2.29-396.el8.noarch                                                                                                          67/90
  Installing       : perl-IPC-SysV-2.07-397.el8.x86_64                                                                                                         68/90
  Installing       : perl-File-Which-1.22-2.el8.noarch                                                                                                         69/90
  Installing       : perl-File-HomeDir-1.002-4.el8.noarch                                                                                                      70/90
  Installing       : perl-ExtUtils-MM-Utils-1:7.34-1.el8.noarch                                                                                                71/90
  Installing       : perl-IPC-Cmd-2:1.02-1.el8.noarch                                                                                                          72/90
  Installing       : perl-ExtUtils-CBuilder-1:0.280230-2.el8.noarch                                                                                            73/90
  Installing       : perl-Module-Build-2:0.42.24-5.el8.noarch                                                                                                  74/90
  Installing       : perl-File-Fetch-0.56-2.el8.noarch                                                                                                         75/90
  Installing       : perl-Env-1.04-395.el8.noarch                                                                                                              76/90
  Installing       : perl-Devel-Size-0.81-2.el8.x86_64                                                                                                         77/90
  Installing       : perl-Devel-Peek-1.26-423.el8_10.x86_64                                                                                                    78/90
  Installing       : perl-Devel-PPPort-3.36-5.el8.x86_64                                                                                                       79/90
  Installing       : perl-DB_File-1.842-1.el8.x86_64                                                                                                           80/90
  Installing       : perl-Config-Perl-V-0.30-1.el8.noarch                                                                                                      81/90
  Installing       : perl-Compress-Bzip2-2.26-6.el8.x86_64                                                                                                     82/90
  Installing       : perl-B-Debug-1.26-2.el8.noarch                                                                                                            83/90
  Installing       : perl-Attribute-Handlers-0.99-423.el8_10.noarch                                                                                            84/90
  Installing       : perl-Archive-Zip-1.60-3.el8.noarch                                                                                                        85/90
  Installing       : perl-Algorithm-Diff-1.1903-9.el8.noarch                                                                                                   86/90
  Installing       : perl-Text-Diff-1.45-2.el8.noarch                                                                                                          87/90
  Installing       : perl-Archive-Tar-2.30-1.el8.noarch                                                                                                        88/90
  Installing       : perl-4:5.26.3-423.el8_10.x86_64                                                                                                           89/90
  Installing       : perl-CPAN-2.18-402.el8_10.noarch                                                                                                          90/90
  Running scriptlet: perl-CPAN-2.18-402.el8_10.noarch                                                                                                          90/90
  Verifying        : perl-Algorithm-Diff-1.1903-9.el8.noarch                                                                                                    1/90
  Verifying        : perl-Archive-Tar-2.30-1.el8.noarch                                                                                                         2/90
  Verifying        : perl-Text-Diff-1.45-2.el8.noarch                                                                                                           3/90
  Verifying        : perl-4:5.26.3-423.el8_10.x86_64                                                                                                            4/90
  Verifying        : perl-Archive-Zip-1.60-3.el8.noarch                                                                                                         5/90
  Verifying        : perl-Attribute-Handlers-0.99-423.el8_10.noarch                                                                                             6/90
  Verifying        : perl-B-Debug-1.26-2.el8.noarch                                                                                                             7/90
  Verifying        : perl-CPAN-2.18-402.el8_10.noarch                                                                                                           8/90
  Verifying        : perl-CPAN-Meta-2.150010-396.el8.noarch                                                                                                     9/90
  Verifying        : perl-CPAN-Meta-Requirements-2.140-396.el8.noarch                                                                                          10/90
  Verifying        : perl-CPAN-Meta-YAML-0.018-397.el8.noarch                                                                                                  11/90
  Verifying        : perl-Compress-Bzip2-2.26-6.el8.x86_64                                                                                                     12/90
  Verifying        : perl-Config-Perl-V-0.30-1.el8.noarch                                                                                                      13/90
  Verifying        : perl-DB_File-1.842-1.el8.x86_64                                                                                                           14/90
  Verifying        : perl-Data-OptList-0.110-6.el8.noarch                                                                                                      15/90
  Verifying        : perl-Data-Section-0.200007-3.el8.noarch                                                                                                   16/90
  Verifying        : perl-Devel-PPPort-3.36-5.el8.x86_64                                                                                                       17/90
  Verifying        : perl-Devel-Peek-1.26-423.el8_10.x86_64                                                                                                    18/90
  Verifying        : perl-Devel-SelfStubber-1.06-423.el8_10.noarch                                                                                             19/90
  Verifying        : perl-Devel-Size-0.81-2.el8.x86_64                                                                                                         20/90
  Verifying        : perl-Encode-devel-4:2.97-3.el8.x86_64                                                                                                     21/90
  Verifying        : perl-Env-1.04-395.el8.noarch                                                                                                              22/90
  Verifying        : perl-ExtUtils-CBuilder-1:0.280230-2.el8.noarch                                                                                            23/90
  Verifying        : perl-ExtUtils-Command-1:7.34-1.el8.noarch                                                                                                 24/90
  Verifying        : perl-ExtUtils-Embed-1.34-423.el8_10.noarch                                                                                                25/90
  Verifying        : perl-ExtUtils-Install-2.14-4.el8.noarch                                                                                                   26/90
  Verifying        : perl-ExtUtils-MM-Utils-1:7.34-1.el8.noarch                                                                                                27/90
  Verifying        : perl-ExtUtils-MakeMaker-1:7.34-1.el8.noarch                                                                                               28/90
  Verifying        : perl-ExtUtils-Manifest-1.70-395.el8.noarch                                                                                                29/90
  Verifying        : perl-ExtUtils-Miniperl-1.06-423.el8_10.noarch                                                                                             30/90
  Verifying        : perl-ExtUtils-ParseXS-1:3.35-2.el8.noarch                                                                                                 31/90
  Verifying        : perl-File-Fetch-0.56-2.el8.noarch                                                                                                         32/90
  Verifying        : perl-File-HomeDir-1.002-4.el8.noarch                                                                                                      33/90
  Verifying        : perl-File-Which-1.22-2.el8.noarch                                                                                                         34/90
  Verifying        : perl-Filter-2:1.58-2.el8.x86_64                                                                                                           35/90
  Verifying        : perl-Filter-Simple-0.94-2.el8.noarch                                                                                                      36/90
  Verifying        : perl-IO-Zlib-1:1.10-423.el8_10.noarch                                                                                                     37/90
  Verifying        : perl-IPC-Cmd-2:1.02-1.el8.noarch                                                                                                          38/90
  Verifying        : perl-IPC-SysV-2.07-397.el8.x86_64                                                                                                         39/90
  Verifying        : perl-IPC-System-Simple-1.25-17.el8.noarch                                                                                                 40/90
  Verifying        : perl-JSON-PP-1:2.97.001-3.el8.noarch                                                                                                      41/90
  Verifying        : perl-Locale-Codes-3.57-1.el8.noarch                                                                                                       42/90
  Verifying        : perl-Locale-Maketext-1.28-396.el8.noarch                                                                                                  43/90
  Verifying        : perl-Locale-Maketext-Simple-1:0.21-423.el8_10.noarch                                                                                      44/90
  Verifying        : perl-MRO-Compat-0.13-4.el8.noarch                                                                                                         45/90
  Verifying        : perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64                                                                                          46/90
  Verifying        : perl-Math-BigRat-0.2614-1.el8.noarch                                                                                                      47/90
  Verifying        : perl-Memoize-1.03-423.el8_10.noarch                                                                                                       48/90
  Verifying        : perl-Module-Build-2:0.42.24-5.el8.noarch                                                                                                  49/90
  Verifying        : perl-Module-CoreList-1:5.20181130-1.el8.noarch                                                                                            50/90
  Verifying        : perl-Module-CoreList-tools-1:5.20181130-1.el8.noarch                                                                                      51/90
  Verifying        : perl-Module-Load-1:0.32-395.el8.noarch                                                                                                    52/90
  Verifying        : perl-Module-Load-Conditional-0.68-395.el8.noarch                                                                                          53/90
  Verifying        : perl-Module-Loaded-1:0.08-423.el8_10.noarch                                                                                               54/90
  Verifying        : perl-Module-Metadata-1.000033-395.el8.noarch                                                                                              55/90
  Verifying        : perl-Net-Ping-2.55-423.el8_10.noarch                                                                                                      56/90
  Verifying        : perl-Package-Generator-1.106-11.el8.noarch                                                                                                57/90
  Verifying        : perl-Params-Check-1:0.38-395.el8.noarch                                                                                                   58/90
  Verifying        : perl-Params-Util-1.07-22.el8.x86_64                                                                                                       59/90
  Verifying        : perl-Perl-OSType-1.010-396.el8.noarch                                                                                                     60/90
  Verifying        : perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch                                                                                           61/90
  Verifying        : perl-Pod-Checker-4:1.73-395.el8.noarch                                                                                                    62/90
  Verifying        : perl-Pod-Html-1.22.02-423.el8_10.noarch                                                                                                   63/90
  Verifying        : perl-Pod-Parser-1.63-396.el8.noarch                                                                                                       64/90
  Verifying        : perl-SelfLoader-1.23-423.el8_10.noarch                                                                                                    65/90
  Verifying        : perl-Software-License-0.103013-2.el8.noarch                                                                                               66/90
  Verifying        : perl-Sub-Exporter-0.987-15.el8.noarch                                                                                                     67/90
  Verifying        : perl-Sub-Install-0.928-14.el8.noarch                                                                                                      68/90
  Verifying        : perl-Test-1.30-423.el8_10.noarch                                                                                                          69/90
  Verifying        : perl-Test-Harness-1:3.42-1.el8.noarch                                                                                                     70/90
  Verifying        : perl-Test-Simple-1:1.302135-1.el8.noarch                                                                                                  71/90
  Verifying        : perl-Text-Balanced-2.03-395.el8.noarch                                                                                                    72/90
  Verifying        : perl-Text-Glob-0.11-4.el8.noarch                                                                                                          73/90
  Verifying        : perl-Text-Template-1.51-1.el8.noarch                                                                                                      74/90
  Verifying        : perl-Time-HiRes-4:1.9758-2.el8.x86_64                                                                                                     75/90
  Verifying        : perl-Time-Piece-1.31-423.el8_10.x86_64                                                                                                    76/90
  Verifying        : perl-Unicode-Collate-1.25-2.el8.x86_64                                                                                                    77/90
  Verifying        : perl-autodie-2.29-396.el8.noarch                                                                                                          78/90
  Verifying        : perl-bignum-0.49-2.el8.noarch                                                                                                             79/90
  Verifying        : perl-devel-4:5.26.3-423.el8_10.x86_64                                                                                                     80/90
  Verifying        : perl-encoding-4:2.22-3.el8.x86_64                                                                                                         81/90
  Verifying        : perl-experimental-0.019-2.el8.noarch                                                                                                      82/90
  Verifying        : perl-inc-latest-2:0.500-9.el8.noarch                                                                                                      83/90
  Verifying        : perl-libnetcfg-4:5.26.3-423.el8_10.noarch                                                                                                 84/90
  Verifying        : perl-local-lib-2.000024-2.el8.noarch                                                                                                      85/90
  Verifying        : perl-open-1.11-423.el8_10.noarch                                                                                                          86/90
  Verifying        : perl-perlfaq-5.20180605-1.el8.noarch                                                                                                      87/90
  Verifying        : perl-utils-5.26.3-423.el8_10.noarch                                                                                                       88/90
  Verifying        : perl-version-6:0.99.24-1.el8.x86_64                                                                                                       89/90
  Verifying        : systemtap-sdt-devel-4.9-3.0.1.el8.x86_64                                                                                                  90/90
 
Installed:
  perl-4:5.26.3-423.el8_10.x86_64                         perl-Algorithm-Diff-1.1903-9.el8.noarch                 perl-Archive-Tar-2.30-1.el8.noarch
  perl-Archive-Zip-1.60-3.el8.noarch                      perl-Attribute-Handlers-0.99-423.el8_10.noarch          perl-B-Debug-1.26-2.el8.noarch
  perl-CPAN-2.18-402.el8_10.noarch                        perl-CPAN-Meta-2.150010-396.el8.noarch                  perl-CPAN-Meta-Requirements-2.140-396.el8.noarch
  perl-CPAN-Meta-YAML-0.018-397.el8.noarch                perl-Compress-Bzip2-2.26-6.el8.x86_64                   perl-Config-Perl-V-0.30-1.el8.noarch
  perl-DB_File-1.842-1.el8.x86_64                         perl-Data-OptList-0.110-6.el8.noarch                    perl-Data-Section-0.200007-3.el8.noarch
  perl-Devel-PPPort-3.36-5.el8.x86_64                     perl-Devel-Peek-1.26-423.el8_10.x86_64                  perl-Devel-SelfStubber-1.06-423.el8_10.noarch
  perl-Devel-Size-0.81-2.el8.x86_64                       perl-Encode-devel-4:2.97-3.el8.x86_64                   perl-Env-1.04-395.el8.noarch
  perl-ExtUtils-CBuilder-1:0.280230-2.el8.noarch          perl-ExtUtils-Command-1:7.34-1.el8.noarch               perl-ExtUtils-Embed-1.34-423.el8_10.noarch
  perl-ExtUtils-Install-2.14-4.el8.noarch                 perl-ExtUtils-MM-Utils-1:7.34-1.el8.noarch              perl-ExtUtils-MakeMaker-1:7.34-1.el8.noarch
  perl-ExtUtils-Manifest-1.70-395.el8.noarch              perl-ExtUtils-Miniperl-1.06-423.el8_10.noarch           perl-ExtUtils-ParseXS-1:3.35-2.el8.noarch
  perl-File-Fetch-0.56-2.el8.noarch                       perl-File-HomeDir-1.002-4.el8.noarch                    perl-File-Which-1.22-2.el8.noarch
  perl-Filter-2:1.58-2.el8.x86_64                         perl-Filter-Simple-0.94-2.el8.noarch                    perl-IO-Zlib-1:1.10-423.el8_10.noarch
  perl-IPC-Cmd-2:1.02-1.el8.noarch                        perl-IPC-SysV-2.07-397.el8.x86_64                       perl-IPC-System-Simple-1.25-17.el8.noarch
  perl-JSON-PP-1:2.97.001-3.el8.noarch                    perl-Locale-Codes-3.57-1.el8.noarch                     perl-Locale-Maketext-1.28-396.el8.noarch
  perl-Locale-Maketext-Simple-1:0.21-423.el8_10.noarch    perl-MRO-Compat-0.13-4.el8.noarch                       perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64
  perl-Math-BigRat-0.2614-1.el8.noarch                    perl-Memoize-1.03-423.el8_10.noarch                     perl-Module-Build-2:0.42.24-5.el8.noarch
  perl-Module-CoreList-1:5.20181130-1.el8.noarch          perl-Module-CoreList-tools-1:5.20181130-1.el8.noarch    perl-Module-Load-1:0.32-395.el8.noarch
  perl-Module-Load-Conditional-0.68-395.el8.noarch        perl-Module-Loaded-1:0.08-423.el8_10.noarch             perl-Module-Metadata-1.000033-395.el8.noarch
  perl-Net-Ping-2.55-423.el8_10.noarch                    perl-Package-Generator-1.106-11.el8.noarch              perl-Params-Check-1:0.38-395.el8.noarch
  perl-Params-Util-1.07-22.el8.x86_64                     perl-Perl-OSType-1.010-396.el8.noarch                   perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch
  perl-Pod-Checker-4:1.73-395.el8.noarch                  perl-Pod-Html-1.22.02-423.el8_10.noarch                 perl-Pod-Parser-1.63-396.el8.noarch
  perl-SelfLoader-1.23-423.el8_10.noarch                  perl-Software-License-0.103013-2.el8.noarch             perl-Sub-Exporter-0.987-15.el8.noarch
  perl-Sub-Install-0.928-14.el8.noarch                    perl-Test-1.30-423.el8_10.noarch                        perl-Test-Harness-1:3.42-1.el8.noarch
  perl-Test-Simple-1:1.302135-1.el8.noarch                perl-Text-Balanced-2.03-395.el8.noarch                  perl-Text-Diff-1.45-2.el8.noarch
  perl-Text-Glob-0.11-4.el8.noarch                        perl-Text-Template-1.51-1.el8.noarch                    perl-Time-HiRes-4:1.9758-2.el8.x86_64
  perl-Time-Piece-1.31-423.el8_10.x86_64                  perl-Unicode-Collate-1.25-2.el8.x86_64                  perl-autodie-2.29-396.el8.noarch
  perl-bignum-0.49-2.el8.noarch                           perl-devel-4:5.26.3-423.el8_10.x86_64                   perl-encoding-4:2.22-3.el8.x86_64
  perl-experimental-0.019-2.el8.noarch                    perl-inc-latest-2:0.500-9.el8.noarch                    perl-libnetcfg-4:5.26.3-423.el8_10.noarch
  perl-local-lib-2.000024-2.el8.noarch                    perl-open-1.11-423.el8_10.noarch                        perl-perlfaq-5.20180605-1.el8.noarch
  perl-utils-5.26.3-423.el8_10.noarch                     perl-version-6:0.99.24-1.el8.x86_64                     systemtap-sdt-devel-4.9-3.0.1.el8.x86_64
 
Complete!

 

 

ahf 설치

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
# mkdir -/opt/oracle.ahf.data
# ./ahf_setup -perlhome /opt/perl/
 
AHF Installer for Platform Linux Architecture x86_64
 
AHF Installation Log : /tmp/ahf_install_242000_6780_2024_03_21-16_44_49.log
 
Starting Autonomous Health Framework (AHF) Installation
 
AHF Version: 24.2.0 Build Date: 202402281810
 
Default AHF Location : /opt/oracle.ahf
 
Do you want to install AHF at [/opt/oracle.ahf] ? [Y]|N : y <-- y 입력
 
AHF Location : /opt/oracle.ahf
 
AHF Data Directory stores diagnostic collections and metadata.
AHF Data Directory requires at least 5GB (Recommended 10GB) of free space.
 
Please Enter AHF Data Directory : /opt/oracle.ahf.data <-- /opt/oracle.ahf.data 입력
 
AHF Data Directory : /opt/oracle.ahf.data/oracle.ahf/data
 
Do you want to add AHF Notification Email IDs ? [Y]|N : n <-- n 입력
 
Extracting AHF to /opt/oracle.ahf
 
Setting up AHF CLI and SDK
 
Configuring TFA Services
 
Discovering Nodes and Oracle Resources
 
Successfully generated certificates.
 
Starting TFA Services
Created symlink /etc/systemd/system/multi-user.target.wants/oracle-tfa.service -> /etc/systemd/system/oracle-tfa.service.
Created symlink /etc/systemd/system/graphical.target.wants/oracle-tfa.service -> /etc/systemd/system/oracle-tfa.service.
 
.---------------------------------------------------------------------------.
| Host  | Status of TFA | PID  | Port  | Version    | Build ID              |
+-------+---------------+------+-------+------------+-----------------------+
| ora19 | RUNNING       | 8691 | 19629 | 24.2.0.0.0 | 240200020240228181054 |
'-------+---------------+------+-------+------------+-----------------------'
 
Running TFA Inventory...
 
Adding default users to TFA Access list...
 
.-------------------------------------------------------------------.
|                    Summary of AHF Configuration                   |
+-----------------+-------------------------------------------------+
| Parameter       | Value                                           |
+-----------------+-------------------------------------------------+
| AHF Location    | /opt/oracle.ahf                                 |
| TFA Location    | /opt/oracle.ahf/tfa                             |
| Orachk Location | /opt/oracle.ahf/orachk                          |
| Data Directory  | /opt/oracle.ahf.data/oracle.ahf/data            |
| Repository      | /opt/oracle.ahf.data/oracle.ahf/data/repository |
| Diag Directory  | /opt/oracle.ahf.data/oracle.ahf/data/ora19/diag |
'-----------------+-------------------------------------------------'
 
Starting ORAchk Scheduler from AHF
 
AHF binaries are available in /opt/oracle.ahf/bin
 
AHF is successfully Installed
 
Do you want AHF to store your My Oracle Support Credentials for Automatic Upload ? Y|[N] : n
 
Moving /tmp/ahf_install_242000_6780_2024_03_21-16_44_49.log to /opt/oracle.ahf.data/oracle.ahf/data/ora19/diag/ahf/

정상 설치됨

 

 

원인 : perl의 버전 문제같아 보임

perl의 버전 문제같아 보임

 

 

참조 : 

2766279.1, 2884071.1

https://docs.oracle.com/en/engineered-systems/health-diagnostics/autonomous-health-framework/ahfug/install-upgrade-ahf.html#GUID-41689DF9-F81D-4C8C-992F-78CF48F9B6DF
https://positivemh.tistory.com/747

 

오라클 19c ahf(tfa) 설치 및 로그수집 가이드(SRDC)

OS환경 : Oracle Linux 7.6 (64bit) DB 환경 : Oracle Database 19.10.0.0 방법 : 오라클 19c ahf(tfa) 설치 및 로그수집 가이드(SRDC) TFA 란? Oracle Support는 데이터 수집을 위해 TFA (Trace File Analyzer) 수집기를 사용하는 것

positivemh.tistory.com

https://positivemh.tistory.com/791

 

오라클 19c ahf(tfa) 업그레이드 가이드

OS환경 : Oracle Linux 8.4 (64bit) DB 환경 : Oracle Database 19.12.0.0 RAC 방법 : 오라클 19c ahf(tfa) 업그레이드 가이드 RAC 로 DB 구성시 자동으로 tfa가 설치됨 이 버전을 새 버전으로 업그레이드(패치) 하는 방법

positivemh.tistory.com