-
Notifications
You must be signed in to change notification settings - Fork 0
/
messages-20201016
8133 lines (8133 loc) · 677 KB
/
messages-20201016
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
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys cpuset
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys cpu
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys cpuacct
Oct 10 07:34:04 ip-10-10-1-80 kernel: Linux version 3.10.0-1127.19.1.el7.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ) #1 SMP Tue Aug 25 17:23:54 UTC 2020
Oct 10 07:34:04 ip-10-10-1-80 kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-3.10.0-1127.19.1.el7.x86_64 root=UUID=388a99ed-9486-4a46-aeb6-06eaf6c47675 ro console=tty0 console=ttyS0,115200n8 crashkernel=auto console=ttyS0,115200 LANG=en_US.UTF-8
Oct 10 07:34:04 ip-10-10-1-80 kernel: e820: BIOS-provided physical RAM map:
Oct 10 07:34:04 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Oct 10 07:34:04 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Oct 10 07:34:04 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Oct 10 07:34:04 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003e7f9fff] usable
Oct 10 07:34:04 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x000000003e7fa000-0x000000003fffffff] reserved
Oct 10 07:34:04 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000e03fffff] reserved
Oct 10 07:34:04 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
Oct 10 07:34:04 ip-10-10-1-80 kernel: NX (Execute Disable) protection: active
Oct 10 07:34:04 ip-10-10-1-80 kernel: SMBIOS 2.7 present.
Oct 10 07:34:04 ip-10-10-1-80 kernel: DMI: Amazon EC2 t3a.micro/, BIOS 1.0 10/16/2017
Oct 10 07:34:04 ip-10-10-1-80 kernel: Hypervisor detected: KVM
Oct 10 07:34:04 ip-10-10-1-80 kernel: e820: last_pfn = 0x3e7fa max_arch_pfn = 0x400000000
Oct 10 07:34:04 ip-10-10-1-80 kernel: PAT configuration [0-7]: WB WC UC- UC WB WP UC- UC
Oct 10 07:34:04 ip-10-10-1-80 kernel: Using GB pages for direct mapping
Oct 10 07:34:04 ip-10-10-1-80 kernel: RAMDISK: [mem 0x327e9000-0x353ecfff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: Early table checksum verification disabled
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: RSDP 00000000000f8f90 00014 (v00 AMAZON)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: RSDT 000000003e7fe360 0003C (v01 AMAZON AMZNRSDT 00000001 AMZN 00000001)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: FACP 000000003e7fff80 00074 (v01 AMAZON AMZNFACP 00000001 AMZN 00000001)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: DSDT 000000003e7fe3a0 010E9 (v01 AMAZON AMZNDSDT 00000001 AMZN 00000001)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: FACS 000000003e7fff40 00040
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: SSDT 000000003e7ff6c0 0087A (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: APIC 000000003e7ff5d0 00076 (v01 AMAZON AMZNAPIC 00000001 AMZN 00000001)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: SRAT 000000003e7ff530 000A0 (v01 AMAZON AMZNSRAT 00000001 AMZN 00000001)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: SLIT 000000003e7ff4c0 0006C (v01 AMAZON AMZNSLIT 00000001 AMZN 00000001)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: WAET 000000003e7ff490 00028 (v01 AMAZON AMZNWAET 00000001 AMZN 00000001)
Oct 10 07:34:04 ip-10-10-1-80 kernel: SRAT: PXM 0 -> APIC 0x00 -> Node 0
Oct 10 07:34:04 ip-10-10-1-80 kernel: SRAT: PXM 0 -> APIC 0x01 -> Node 0
Oct 10 07:34:04 ip-10-10-1-80 kernel: SRAT: Node 0 PXM 0 [mem 0x00000000-0x3fffffff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: NODE_DATA(0) allocated [mem 0x3e7d2000-0x3e7f8fff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: crashkernel=auto resulted in zero bytes of reserved memory.
Oct 10 07:34:04 ip-10-10-1-80 kernel: kvm-clock: cpu 0, msr 0:3e781001, primary cpu clock
Oct 10 07:34:04 ip-10-10-1-80 kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00
Oct 10 07:34:04 ip-10-10-1-80 kernel: kvm-clock: using sched offset of 8651340703 cycles
Oct 10 07:34:04 ip-10-10-1-80 kernel: Zone ranges:
Oct 10 07:34:04 ip-10-10-1-80 kernel: DMA [mem 0x00001000-0x00ffffff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: DMA32 [mem 0x01000000-0xffffffff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: Normal empty
Oct 10 07:34:04 ip-10-10-1-80 kernel: Movable zone start for each node
Oct 10 07:34:04 ip-10-10-1-80 kernel: Early memory node ranges
Oct 10 07:34:04 ip-10-10-1-80 kernel: node 0: [mem 0x00001000-0x0009efff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: node 0: [mem 0x00100000-0x3e7f9fff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initmem setup node 0 [mem 0x00001000-0x3e7f9fff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: PM-Timer IO Port: 0xb008
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
Oct 10 07:34:04 ip-10-10-1-80 kernel: IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Using ACPI (MADT) for SMP configuration information
Oct 10 07:34:04 ip-10-10-1-80 kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
Oct 10 07:34:04 ip-10-10-1-80 kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: e820: [mem 0x40000000-0xdfffffff] available for PCI devices
Oct 10 07:34:04 ip-10-10-1-80 kernel: Booting paravirtualized kernel on KVM
Oct 10 07:34:04 ip-10-10-1-80 kernel: setup_percpu: NR_CPUS:5120 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
Oct 10 07:34:04 ip-10-10-1-80 kernel: percpu: Embedded 38 pages/cpu s118784 r8192 d28672 u1048576
Oct 10 07:34:04 ip-10-10-1-80 kernel: KVM setup async PF for cpu 0
Oct 10 07:34:04 ip-10-10-1-80 kernel: kvm-stealtime: cpu 0, msr 3e41c040
Oct 10 07:34:04 ip-10-10-1-80 kernel: PV qspinlock hash table entries: 256 (order: 0, 4096 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 251875
Oct 10 07:34:04 ip-10-10-1-80 kernel: Policy zone: DMA32
Oct 10 07:34:04 ip-10-10-1-80 kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.10.0-1127.19.1.el7.x86_64 root=UUID=388a99ed-9486-4a46-aeb6-06eaf6c47675 ro console=tty0 console=ttyS0,115200n8 crashkernel=auto console=ttyS0,115200 LANG=en_US.UTF-8
Oct 10 07:34:04 ip-10-10-1-80 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
Oct 10 07:34:04 ip-10-10-1-80 kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
Oct 10 07:34:04 ip-10-10-1-80 kernel: Memory: 942060k/1023976k available (7784k kernel code, 392k absent, 81524k reserved, 5958k data, 1980k init)
Oct 10 07:34:04 ip-10-10-1-80 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Oct 10 07:34:04 ip-10-10-1-80 kernel: Hierarchical RCU implementation.
Oct 10 07:34:04 ip-10-10-1-80 kernel: #011RCU restricting CPUs from NR_CPUS=5120 to nr_cpu_ids=2.
Oct 10 07:34:04 ip-10-10-1-80 kernel: NR_IRQS:327936 nr_irqs:440 0
Oct 10 07:34:04 ip-10-10-1-80 kernel: Console: colour VGA+ 80x25
Oct 10 07:34:04 ip-10-10-1-80 kernel: console [tty0] enabled
Oct 10 07:34:04 ip-10-10-1-80 kernel: console [ttyS0] enabled
Oct 10 07:34:04 ip-10-10-1-80 kernel: allocated 4194304 bytes of page_cgroup
Oct 10 07:34:04 ip-10-10-1-80 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
Oct 10 07:34:04 ip-10-10-1-80 kernel: tsc: Detected 2199.664 MHz processor
Oct 10 07:34:04 ip-10-10-1-80 kernel: Calibrating delay loop (skipped) preset value.. 4399.32 BogoMIPS (lpj=2199664)
Oct 10 07:34:04 ip-10-10-1-80 kernel: pid_max: default: 32768 minimum: 301
Oct 10 07:34:04 ip-10-10-1-80 kernel: Security Framework initialized
Oct 10 07:34:04 ip-10-10-1-80 kernel: SELinux: Initializing.
Oct 10 07:34:04 ip-10-10-1-80 kernel: Yama: becoming mindful.
Oct 10 07:34:04 ip-10-10-1-80 kernel: Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys memory
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys devices
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys freezer
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys net_cls
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys blkio
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys perf_event
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys hugetlb
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys pids
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing cgroup subsys net_prio
Oct 10 07:34:04 ip-10-10-1-80 kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Oct 10 07:34:04 ip-10-10-1-80 kernel: Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768
Oct 10 07:34:04 ip-10-10-1-80 kernel: tlb_flushall_shift: 6
Oct 10 07:34:04 ip-10-10-1-80 kernel: FEATURE SPEC_CTRL Not Present
Oct 10 07:34:04 ip-10-10-1-80 kernel: FEATURE IBPB_SUPPORT Not Present
Oct 10 07:34:04 ip-10-10-1-80 kernel: Spectre V1 : Mitigation: Load fences, usercopy/swapgs barriers and __user pointer sanitization
Oct 10 07:34:04 ip-10-10-1-80 kernel: Spectre V2 : Vulnerable: Retpoline without IBPB
Oct 10 07:34:04 ip-10-10-1-80 kernel: Speculative Store Bypass: Vulnerable
Oct 10 07:34:04 ip-10-10-1-80 kernel: Freeing SMP alternatives: 28k freed
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Core revision 20130517
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: All ACPI Tables successfully acquired
Oct 10 07:34:04 ip-10-10-1-80 kernel: ftrace: allocating 29619 entries in 116 pages
Oct 10 07:34:04 ip-10-10-1-80 kernel: ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
Oct 10 07:34:04 ip-10-10-1-80 kernel: smpboot: CPU0: AMD EPYC 7571 (fam: 17, model: 01, stepping: 02)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Performance Events: PMU not available due to virtualization, using software events only.
Oct 10 07:34:04 ip-10-10-1-80 kernel: KVM setup paravirtual spinlock
Oct 10 07:34:04 ip-10-10-1-80 kernel: smpboot: Booting Node 0, Processors #1 OK
Oct 10 07:34:04 ip-10-10-1-80 kernel: kvm-clock: cpu 1, msr 0:3e781041, secondary cpu clock
Oct 10 07:34:04 ip-10-10-1-80 kernel: KVM setup async PF for cpu 1
Oct 10 07:34:04 ip-10-10-1-80 kernel: kvm-stealtime: cpu 1, msr 3e51c040
Oct 10 07:34:04 ip-10-10-1-80 kernel: Brought up 2 CPUs
Oct 10 07:34:04 ip-10-10-1-80 kernel: smpboot: Max logical packages: 1
Oct 10 07:34:04 ip-10-10-1-80 kernel: smpboot: Total of 2 processors activated (8798.65 BogoMIPS)
Oct 10 07:34:04 ip-10-10-1-80 kernel: devtmpfs: initialized
Oct 10 07:34:04 ip-10-10-1-80 kernel: x86/mm: Memory block size: 128MB
Oct 10 07:34:04 ip-10-10-1-80 kernel: EVM: security.selinux
Oct 10 07:34:04 ip-10-10-1-80 kernel: EVM: security.ima
Oct 10 07:34:04 ip-10-10-1-80 kernel: EVM: security.capability
Oct 10 07:34:04 ip-10-10-1-80 kernel: atomic64 test passed for x86-64 platform with CX8 and with SSE
Oct 10 07:34:04 ip-10-10-1-80 kernel: pinctrl core: initialized pinctrl subsystem
Oct 10 07:34:04 ip-10-10-1-80 kernel: RTC time: 7:34:02, date: 10/10/20
Oct 10 07:34:04 ip-10-10-1-80 kernel: NET: Registered protocol family 16
Oct 10 07:34:04 ip-10-10-1-80 kernel: cpuidle: using governor haltpoll
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: bus type PCI registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Oct 10 07:34:04 ip-10-10-1-80 kernel: PCI: Using configuration type 1 for base access
Oct 10 07:34:04 ip-10-10-1-80 kernel: PCI: Using configuration type 1 for extended access
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Added _OSI(Module Device)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Added _OSI(Processor Device)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Added _OSI(Linux-Dell-Video)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Interpreter enabled
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: (supports S0 S4 S5)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Using IOAPIC for interrupt routing
Oct 10 07:34:04 ip-10-10-1-80 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Enabled 16 GPEs in block 00 to 0F
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [3] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [4] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [5] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [6] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [7] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [8] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [9] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [10] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [11] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [12] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [13] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [14] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [15] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [16] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [17] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [18] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [19] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [20] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [21] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [22] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [23] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [24] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [25] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [26] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [27] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [28] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [29] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [30] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: acpiphp: Slot [31] registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: PCI host bridge to bus 0000:00
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window]
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPI
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres E PIO at fff0-ffff
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres F MMIO at ffc00000-ffffffff
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres G PIO at fff0-ffff
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres H MMIO at ffc00000-ffffffff
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres I PIO at fff0-ffff
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres J PIO at fff0-ffff
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
Oct 10 07:34:04 ip-10-10-1-80 kernel: vgaarb: device added: PCI:0000:00:03.0,decodes=io+mem,owns=io+mem,locks=none
Oct 10 07:34:04 ip-10-10-1-80 kernel: vgaarb: loaded
Oct 10 07:34:04 ip-10-10-1-80 kernel: vgaarb: bridge control possible 0000:00:03.0
Oct 10 07:34:04 ip-10-10-1-80 kernel: SCSI subsystem initialized
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: bus type USB registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: usbcore: registered new interface driver usbfs
Oct 10 07:34:04 ip-10-10-1-80 kernel: usbcore: registered new interface driver hub
Oct 10 07:34:04 ip-10-10-1-80 kernel: usbcore: registered new device driver usb
Oct 10 07:34:04 ip-10-10-1-80 kernel: EDAC MC: Ver: 3.0.0
Oct 10 07:34:04 ip-10-10-1-80 kernel: PCI: Using ACPI for IRQ routing
Oct 10 07:34:04 ip-10-10-1-80 kernel: NetLabel: Initializing
Oct 10 07:34:04 ip-10-10-1-80 kernel: NetLabel: domain hash size = 128
Oct 10 07:34:04 ip-10-10-1-80 kernel: NetLabel: protocols = UNLABELED CIPSOv4
Oct 10 07:34:04 ip-10-10-1-80 kernel: NetLabel: unlabeled traffic allowed by default
Oct 10 07:34:04 ip-10-10-1-80 kernel: amd_nb: Cannot enumerate AMD northbridges
Oct 10 07:34:04 ip-10-10-1-80 kernel: Switched to clocksource kvm-clock
Oct 10 07:34:04 ip-10-10-1-80 kernel: pnp: PnP ACPI init
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: bus type PNP registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: pnp: PnP ACPI: found 5 devices
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: bus type PNP unregistered
Oct 10 07:34:04 ip-10-10-1-80 kernel: NET: Registered protocol family 2
Oct 10 07:34:04 ip-10-10-1-80 kernel: TCP established hash table entries: 8192 (order: 4, 65536 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: TCP: Hash tables configured (established 8192 bind 8192)
Oct 10 07:34:04 ip-10-10-1-80 kernel: TCP: reno registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: NET: Registered protocol family 1
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci 0000:00:01.0: Activating ISA DMA hang workarounds
Oct 10 07:34:04 ip-10-10-1-80 kernel: Unpacking initramfs...
Oct 10 07:34:04 ip-10-10-1-80 kernel: Freeing initrd memory: 45072k freed
Oct 10 07:34:04 ip-10-10-1-80 kernel: sha1_ssse3: Using SHA-NI optimized SHA-1 implementation
Oct 10 07:34:04 ip-10-10-1-80 kernel: sha256_ssse3: Using SHA-256-NI optimized SHA-256 implementation
Oct 10 07:34:04 ip-10-10-1-80 kernel: futex hash table entries: 512 (order: 3, 32768 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initialise system trusted keyring
Oct 10 07:34:04 ip-10-10-1-80 kernel: audit: initializing netlink socket (disabled)
Oct 10 07:34:04 ip-10-10-1-80 kernel: type=2000 audit(1602315243.025:1): initialized
Oct 10 07:34:04 ip-10-10-1-80 kernel: HugeTLB registered 1 GB page size, pre-allocated 0 pages
Oct 10 07:34:04 ip-10-10-1-80 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Oct 10 07:34:04 ip-10-10-1-80 kernel: zpool: loaded
Oct 10 07:34:04 ip-10-10-1-80 kernel: zbud: loaded
Oct 10 07:34:04 ip-10-10-1-80 kernel: VFS: Disk quotas dquot_6.5.2
Oct 10 07:34:04 ip-10-10-1-80 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Key type big_key registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: NET: Registered protocol family 38
Oct 10 07:34:04 ip-10-10-1-80 kernel: Key type asymmetric registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: Asymmetric key parser 'x509' registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
Oct 10 07:34:04 ip-10-10-1-80 kernel: io scheduler noop registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: io scheduler deadline registered (default)
Oct 10 07:34:04 ip-10-10-1-80 kernel: io scheduler cfq registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: io scheduler mq-deadline registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: io scheduler kyber registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 10 07:34:04 ip-10-10-1-80 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Oct 10 07:34:04 ip-10-10-1-80 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 10 07:34:04 ip-10-10-1-80 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Power Button [PWRF]
Oct 10 07:34:04 ip-10-10-1-80 kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
Oct 10 07:34:04 ip-10-10-1-80 kernel: ACPI: Sleep Button [SLPF]
Oct 10 07:34:04 ip-10-10-1-80 kernel: GHES: HEST is not enabled!
Oct 10 07:34:04 ip-10-10-1-80 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Oct 10 07:34:04 ip-10-10-1-80 kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Oct 10 07:34:04 ip-10-10-1-80 kernel: Non-volatile memory driver v1.3
Oct 10 07:34:04 ip-10-10-1-80 kernel: Linux agpgart interface v0.103
Oct 10 07:34:04 ip-10-10-1-80 kernel: crash memory driver: version 1.1
Oct 10 07:34:04 ip-10-10-1-80 kernel: rdac: device handler registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: hp_sw: device handler registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: emc: device handler registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: alua: device handler registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: libphy: Fixed MDIO Bus: probed
Oct 10 07:34:04 ip-10-10-1-80 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 10 07:34:04 ip-10-10-1-80 kernel: ehci-pci: EHCI PCI platform driver
Oct 10 07:34:04 ip-10-10-1-80 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Oct 10 07:34:04 ip-10-10-1-80 kernel: ohci-pci: OHCI PCI platform driver
Oct 10 07:34:04 ip-10-10-1-80 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Oct 10 07:34:04 ip-10-10-1-80 kernel: usbcore: registered new interface driver usbserial_generic
Oct 10 07:34:04 ip-10-10-1-80 kernel: usbserial: USB Serial support registered for generic
Oct 10 07:34:04 ip-10-10-1-80 kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Oct 10 07:34:04 ip-10-10-1-80 kernel: i8042: Warning: Keylock active
Oct 10 07:34:04 ip-10-10-1-80 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 10 07:34:04 ip-10-10-1-80 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 10 07:34:04 ip-10-10-1-80 kernel: mousedev: PS/2 mouse device common for all mice
Oct 10 07:34:04 ip-10-10-1-80 kernel: rtc_cmos 00:00: RTC can wake from S4
Oct 10 07:34:04 ip-10-10-1-80 kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
Oct 10 07:34:04 ip-10-10-1-80 kernel: rtc_cmos 00:00: alarms up to one day, 114 bytes nvram
Oct 10 07:34:04 ip-10-10-1-80 kernel: hidraw: raw HID events driver (C) Jiri Kosina
Oct 10 07:34:04 ip-10-10-1-80 kernel: usbcore: registered new interface driver usbhid
Oct 10 07:34:04 ip-10-10-1-80 kernel: usbhid: USB HID core driver
Oct 10 07:34:04 ip-10-10-1-80 kernel: drop_monitor: Initializing network drop monitor service
Oct 10 07:34:04 ip-10-10-1-80 kernel: TCP: cubic registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: Initializing XFRM netlink socket
Oct 10 07:34:04 ip-10-10-1-80 kernel: NET: Registered protocol family 10
Oct 10 07:34:04 ip-10-10-1-80 kernel: NET: Registered protocol family 17
Oct 10 07:34:04 ip-10-10-1-80 kernel: mpls_gso: MPLS GSO support
Oct 10 07:34:04 ip-10-10-1-80 kernel: mce: Using 32 MCE banks
Oct 10 07:34:04 ip-10-10-1-80 kernel: Loading compiled-in X.509 certificates
Oct 10 07:34:04 ip-10-10-1-80 kernel: Loaded X.509 cert 'CentOS Linux kpatch signing key: ea0413152cde1d98ebdca3fe6f0230904c9ef717'
Oct 10 07:34:04 ip-10-10-1-80 kernel: Loaded X.509 cert 'CentOS Linux Driver update signing key: 7f421ee0ab69461574bb358861dbe77762a4201b'
Oct 10 07:34:04 ip-10-10-1-80 kernel: Loaded X.509 cert 'CentOS Linux kernel signing key: b16a91cac9d651464acb7ad9b8ded557cf1aca27'
Oct 10 07:34:04 ip-10-10-1-80 kernel: registered taskstats version 1
Oct 10 07:34:04 ip-10-10-1-80 kernel: Key type trusted registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: Key type encrypted registered
Oct 10 07:34:04 ip-10-10-1-80 kernel: IMA: No TPM chip found, activating TPM-bypass! (rc=-19)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Magic number: 8:545:571
Oct 10 07:34:04 ip-10-10-1-80 kernel: rtc_cmos 00:00: setting system clock to 2020-10-10 07:34:04 UTC (1602315244)
Oct 10 07:34:04 ip-10-10-1-80 kernel: Freeing unused kernel memory: 1980k freed
Oct 10 07:34:04 ip-10-10-1-80 kernel: Write protecting the kernel read-only data: 12288k
Oct 10 07:34:04 ip-10-10-1-80 kernel: Freeing unused kernel memory: 396k freed
Oct 10 07:34:04 ip-10-10-1-80 kernel: Freeing unused kernel memory: 540k freed
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Detected virtualization kvm.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Detected architecture x86-64.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Running in initial RAM disk.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: No hostname configured.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Set hostname to <localhost>.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Initializing machine ID from KVM UUID.
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Reached target Local File Systems.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Reached target Swap.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Reached target Timers.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Reached target Paths.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Created slice Root Slice.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Listening on udev Kernel Socket.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Listening on Journal Socket.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Created slice System Slice.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Starting Journal Service...
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Starting Apply Kernel Variables...
Oct 10 07:34:04 ip-10-10-1-80 journal: Journal started
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Starting dracut cmdline hook...
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Starting Create list of required static device nodes for the current kernel...
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Reached target Slices.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Listening on udev Control Socket.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Reached target Sockets.
Oct 10 07:34:04 ip-10-10-1-80 systemd[1]: Started Journal Service.
Oct 10 07:34:04 ip-10-10-1-80 kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Oct 10 07:34:04 ip-10-10-1-80 systemd: Started Apply Kernel Variables.
Oct 10 07:34:04 ip-10-10-1-80 systemd: Started Create list of required static device nodes for the current kernel.
Oct 10 07:34:04 ip-10-10-1-80 systemd: Starting Create Static Device Nodes in /dev...
Oct 10 07:34:04 ip-10-10-1-80 systemd: Started Create Static Device Nodes in /dev.
Oct 10 07:34:04 ip-10-10-1-80 systemd: Started dracut cmdline hook.
Oct 10 07:34:04 ip-10-10-1-80 systemd: Starting dracut pre-udev hook...
Oct 10 07:34:04 ip-10-10-1-80 kernel: RPC: Registered named UNIX socket transport module.
Oct 10 07:34:04 ip-10-10-1-80 kernel: RPC: Registered udp transport module.
Oct 10 07:34:04 ip-10-10-1-80 kernel: RPC: Registered tcp transport module.
Oct 10 07:34:04 ip-10-10-1-80 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
Oct 10 07:34:05 ip-10-10-1-80 rpc.statd[196]: Version 1.3.0 starting
Oct 10 07:34:05 ip-10-10-1-80 rpc.statd[196]: Initializing NSM state
Oct 10 07:34:05 ip-10-10-1-80 rpc.statd[196]: Running as root. chown /var/lib/nfs/statd to choose different user
Oct 10 07:34:05 ip-10-10-1-80 systemd: Started dracut pre-udev hook.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Starting udev Kernel Device Manager...
Oct 10 07:34:05 ip-10-10-1-80 systemd-udevd: starting version 219
Oct 10 07:34:05 ip-10-10-1-80 systemd: Started udev Kernel Device Manager.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Starting dracut pre-trigger hook...
Oct 10 07:34:05 ip-10-10-1-80 systemd: Started dracut pre-trigger hook.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Starting udev Coldplug all Devices...
Oct 10 07:34:05 ip-10-10-1-80 systemd: Mounting Configuration File System...
Oct 10 07:34:05 ip-10-10-1-80 kernel: psmouse serio1: alps: Unknown ALPS touchpad: E7=10 00 64, EC=10 00 64
Oct 10 07:34:05 ip-10-10-1-80 systemd: Mounted Configuration File System.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Started udev Coldplug all Devices.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Reached target System Initialization.
Oct 10 07:34:05 ip-10-10-1-80 kernel: random: fast init done
Oct 10 07:34:05 ip-10-10-1-80 systemd: Reached target Basic System.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Starting dracut initqueue hook...
Oct 10 07:34:05 ip-10-10-1-80 kernel: ena: Elastic Network Adapter (ENA) v2.0.3K
Oct 10 07:34:05 ip-10-10-1-80 kernel: nvme nvme0: pci function 0000:00:04.0
Oct 10 07:34:05 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
Oct 10 07:34:05 ip-10-10-1-80 kernel: ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.0.3K
Oct 10 07:34:05 ip-10-10-1-80 kernel: ena: ena device version: 0.10
Oct 10 07:34:05 ip-10-10-1-80 kernel: ena: ena controller version: 0.0.1 implementation version 1
Oct 10 07:34:05 ip-10-10-1-80 kernel: ena 0000:00:05.0: LLQ is not supported Fallback to host mode policy.
Oct 10 07:34:05 ip-10-10-1-80 kernel: ena 0000:00:05.0: creating 2 io queues. queue size: 1024. LLQ is DISABLED
Oct 10 07:34:05 ip-10-10-1-80 kernel: ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem febf4000, mac addr 02:8a:f9:f1:bb:7f Queues 2, Placement policy: Regular
Oct 10 07:34:05 ip-10-10-1-80 kernel: nvme0n1: p1
Oct 10 07:34:05 ip-10-10-1-80 systemd: Found device Amazon Elastic Block Store 1.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Started dracut initqueue hook.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Reached target Remote File Systems (Pre).
Oct 10 07:34:05 ip-10-10-1-80 systemd: Reached target Remote File Systems.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Starting File System Check on /dev/disk/by-uuid/388a99ed-9486-4a46-aeb6-06eaf6c47675...
Oct 10 07:34:05 ip-10-10-1-80 systemd-fsck: /sbin/fsck.xfs: XFS file system.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Started File System Check on /dev/disk/by-uuid/388a99ed-9486-4a46-aeb6-06eaf6c47675.
Oct 10 07:34:05 ip-10-10-1-80 systemd: Mounting /sysroot...
Oct 10 07:34:05 ip-10-10-1-80 kernel: SGI XFS with ACLs, security attributes, no debug enabled
Oct 10 07:34:05 ip-10-10-1-80 kernel: XFS (nvme0n1p1): Mounting V5 Filesystem
Oct 10 07:34:05 ip-10-10-1-80 kernel: input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3
Oct 10 07:34:06 ip-10-10-1-80 kernel: XFS (nvme0n1p1): Ending clean mount
Oct 10 07:34:06 ip-10-10-1-80 systemd: Mounted /sysroot.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Reached target Initrd Root File System.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Starting Reload Configuration from the Real Root...
Oct 10 07:34:06 ip-10-10-1-80 systemd: Reloading.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Started Reload Configuration from the Real Root.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Reached target Initrd File Systems.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Reached target Initrd Default Target.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Starting dracut pre-pivot and cleanup hook...
Oct 10 07:34:06 ip-10-10-1-80 rpcbind[192]: cannot open file = /run/rpcbind/rpcbind.xdr for writing
Oct 10 07:34:06 ip-10-10-1-80 rpcbind[192]: cannot save any registration
Oct 10 07:34:06 ip-10-10-1-80 rpcbind[192]: cannot open file = /run/rpcbind/portmap.xdr for writing
Oct 10 07:34:06 ip-10-10-1-80 rpcbind[192]: cannot save any registration
Oct 10 07:34:06 ip-10-10-1-80 systemd: Started dracut pre-pivot and cleanup hook.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Starting Cleaning Up and Shutting Down Daemons...
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Timers.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped dracut pre-pivot and cleanup hook.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Initrd Default Target.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Remote File Systems.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Remote File Systems (Pre).
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped dracut initqueue hook.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Basic System.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Slices.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Paths.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped Dispatch Password Requests to Console Directory Watch.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Sockets.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target System Initialization.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Swap.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped target Local File Systems.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped udev Coldplug all Devices.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped dracut pre-trigger hook.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopping udev Kernel Device Manager...
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped Apply Kernel Variables.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped udev Kernel Device Manager.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped dracut pre-udev hook.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped dracut cmdline hook.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped Create Static Device Nodes in /dev.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Stopped Create list of required static device nodes for the current kernel.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Closed udev Kernel Socket.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Closed udev Control Socket.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Starting Cleanup udevd DB...
Oct 10 07:34:06 ip-10-10-1-80 systemd: Started Cleaning Up and Shutting Down Daemons.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Started Cleanup udevd DB.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Reached target Switch Root.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Starting Switch Root...
Oct 10 07:34:06 ip-10-10-1-80 systemd: Switching root.
Oct 10 07:34:06 ip-10-10-1-80 journal: Journal stopped
Oct 10 07:34:06 ip-10-10-1-80 journal: Runtime journal is using 6.0M (max allowed 48.3M, trying to leave 72.5M free of 471.3M available → current limit 48.3M).
Oct 10 07:34:06 ip-10-10-1-80 systemd-journald[95]: Received SIGTERM from PID 1 (systemd).
Oct 10 07:34:06 ip-10-10-1-80 kernel: SELinux: Disabled at runtime.
Oct 10 07:34:06 ip-10-10-1-80 kernel: type=1404 audit(1602315246.440:2): selinux=0 auid=4294967295 ses=4294967295
Oct 10 07:34:06 ip-10-10-1-80 kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Oct 10 07:34:06 ip-10-10-1-80 systemd[1]: Inserted module 'ip_tables'
Oct 10 07:34:06 ip-10-10-1-80 journal: Journal started
Oct 10 07:34:06 ip-10-10-1-80 systemd: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Oct 10 07:34:06 ip-10-10-1-80 systemd: Detected virtualization kvm.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Detected architecture x86-64.
Oct 10 07:34:06 ip-10-10-1-80 systemd: Set hostname to <ip-10-10-1-80.ec2.internal>.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Create list of required static device nodes for the current kernel.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Remount Root and Kernel File Systems.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Apply Kernel Variables.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Read and set NIS domainname from /etc/sysconfig/network.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting udev Coldplug all Devices...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Configure read-only root support...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Create Static Device Nodes in /dev...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Flush Journal to Persistent Storage...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started udev Coldplug all Devices.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Flush Journal to Persistent Storage.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Create Static Device Nodes in /dev.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting udev Kernel Device Manager...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Reached target Local File Systems (Pre).
Oct 10 07:34:07 ip-10-10-1-80 systemd-udevd: starting version 219
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Setup Virtual Console.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Configure read-only root support.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Load/Save Random Seed...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Reached target Local File Systems.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Preprocess NFS configuration...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Import network configuration from initramfs...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Load/Save Random Seed.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started udev Kernel Device Manager.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Preprocess NFS configuration.
Oct 10 07:34:07 ip-10-10-1-80 kernel: input: PC Speaker as /devices/platform/pcspkr/input/input4
Oct 10 07:34:07 ip-10-10-1-80 kernel: cryptd: max_cpu_qlen set to 1000
Oct 10 07:34:07 ip-10-10-1-80 kernel: piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 255
Oct 10 07:34:07 ip-10-10-1-80 systemd: Found device /dev/ttyS0.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Import network configuration from initramfs.
Oct 10 07:34:07 ip-10-10-1-80 kernel: parport_pc 00:03: reported by Plug and Play ACPI
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Create Volatile Files and Directories...
Oct 10 07:34:07 ip-10-10-1-80 kernel: AVX2 version of gcm_enc/dec engaged.
Oct 10 07:34:07 ip-10-10-1-80 kernel: AES CTR mode by8 optimization enabled
Oct 10 07:34:07 ip-10-10-1-80 kernel: alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Create Volatile Files and Directories.
Oct 10 07:34:07 ip-10-10-1-80 kernel: alg: No test for __generic-gcm-aes-aesni (__driver-generic-gcm-aes-aesni)
Oct 10 07:34:07 ip-10-10-1-80 kernel: ppdev: user-space parallel port driver
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Security Auditing Service...
Oct 10 07:34:07 ip-10-10-1-80 auditd[501]: Started dispatcher: /sbin/audispd pid: 503
Oct 10 07:34:07 ip-10-10-1-80 audispd: No plugins found, exiting
Oct 10 07:34:07 ip-10-10-1-80 auditd[501]: Init complete, auditd 2.8.5 listening for events (startup state enable)
Oct 10 07:34:07 ip-10-10-1-80 kernel: Decoding supported only on Scalable MCA processors.
Oct 10 07:34:07 ip-10-10-1-80 kernel: type=1305 audit(1602315247.537:3): audit_pid=501 old=0 auid=4294967295 ses=4294967295 res=1
Oct 10 07:34:07 ip-10-10-1-80 kernel: Decoding supported only on Scalable MCA processors.
Oct 10 07:34:07 ip-10-10-1-80 augenrules: /sbin/augenrules: No change
Oct 10 07:34:07 ip-10-10-1-80 augenrules: No rules
Oct 10 07:34:07 ip-10-10-1-80 augenrules: enabled 1
Oct 10 07:34:07 ip-10-10-1-80 augenrules: failure 1
Oct 10 07:34:07 ip-10-10-1-80 augenrules: pid 501
Oct 10 07:34:07 ip-10-10-1-80 augenrules: rate_limit 0
Oct 10 07:34:07 ip-10-10-1-80 augenrules: backlog_limit 8192
Oct 10 07:34:07 ip-10-10-1-80 augenrules: lost 0
Oct 10 07:34:07 ip-10-10-1-80 augenrules: backlog 1
Oct 10 07:34:07 ip-10-10-1-80 augenrules: enabled 1
Oct 10 07:34:07 ip-10-10-1-80 augenrules: failure 1
Oct 10 07:34:07 ip-10-10-1-80 augenrules: pid 501
Oct 10 07:34:07 ip-10-10-1-80 augenrules: rate_limit 0
Oct 10 07:34:07 ip-10-10-1-80 augenrules: backlog_limit 8192
Oct 10 07:34:07 ip-10-10-1-80 augenrules: lost 0
Oct 10 07:34:07 ip-10-10-1-80 augenrules: backlog 1
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Security Auditing Service.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Update UTMP about System Boot/Shutdown...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Update UTMP about System Boot/Shutdown.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Reached target System Initialization.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Listening on RPCbind Server Activation Socket.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting RPC bind service...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started Daily Cleanup of Temporary Directories.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Reached target Timers.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Listening on D-Bus System Message Bus Socket.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Initial cloud-init job (pre-networking)...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Reached target Sockets.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Reached target Basic System.
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Dump dmesg to /var/log/dmesg...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Starting Login Service...
Oct 10 07:34:07 ip-10-10-1-80 systemd: Started D-Bus System Message Bus.
Oct 10 07:34:08 ip-10-10-1-80 dbus[536]: [system] Successfully activated service 'org.freedesktop.systemd1'
Oct 10 07:34:08 ip-10-10-1-80 systemd: Starting Authorization Manager...
Oct 10 07:34:08 ip-10-10-1-80 systemd: Starting GSSAPI Proxy Daemon...
Oct 10 07:34:08 ip-10-10-1-80 systemd: Started irqbalance daemon.
Oct 10 07:34:08 ip-10-10-1-80 systemd: Starting NTP client/server...
Oct 10 07:34:08 ip-10-10-1-80 systemd: Started RPC bind service.
Oct 10 07:34:08 ip-10-10-1-80 systemd: Started Dump dmesg to /var/log/dmesg.
Oct 10 07:34:08 ip-10-10-1-80 chronyd[545]: chronyd version 3.4 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SIGND +ASYNCDNS +SECHASH +IPV6 +DEBUG)
Oct 10 07:34:08 ip-10-10-1-80 systemd-logind: Watching system buttons on /dev/input/event0 (Power Button)
Oct 10 07:34:08 ip-10-10-1-80 systemd-logind: Watching system buttons on /dev/input/event1 (Sleep Button)
Oct 10 07:34:08 ip-10-10-1-80 systemd-logind: New seat seat0.
Oct 10 07:34:08 ip-10-10-1-80 systemd: Started Login Service.
Oct 10 07:34:08 ip-10-10-1-80 chronyd[545]: Frequency 140.867 +/- 2.066 ppm read from /var/lib/chrony/drift
Oct 10 07:34:08 ip-10-10-1-80 systemd: Started NTP client/server.
Oct 10 07:34:08 ip-10-10-1-80 systemd: Started GSSAPI Proxy Daemon.
Oct 10 07:34:08 ip-10-10-1-80 polkitd[538]: Started polkitd version 0.112
Oct 10 07:34:08 ip-10-10-1-80 systemd: Reached target NFS client services.
Oct 10 07:34:08 ip-10-10-1-80 systemd: Reached target Remote File Systems (Pre).
Oct 10 07:34:08 ip-10-10-1-80 systemd: Reached target Remote File Systems.
Oct 10 07:34:08 ip-10-10-1-80 systemd: Started Authorization Manager.
Oct 10 07:34:08 ip-10-10-1-80 cloud-init: Cloud-init v. 18.5 running 'init-local' at Sat, 10 Oct 2020 07:34:08 +0000. Up 5.60 seconds.
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: Internet Systems Consortium DHCP Client 4.2.5
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: Copyright 2004-2013 Internet Systems Consortium.
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: All rights reserved.
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: For info, please visit https://www.isc.org/software/dhcp/
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]:
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: Listening on LPF/ens5/02:8a:f9:f1:bb:7f
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: Sending on LPF/ens5/02:8a:f9:f1:bb:7f
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: Sending on Socket/fallback
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: DHCPDISCOVER on ens5 to 255.255.255.255 port 67 interval 7 (xid=0x3c5eb164)
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: DHCPREQUEST on ens5 to 255.255.255.255 port 67 (xid=0x3c5eb164)
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: DHCPOFFER from 10.10.1.1
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: DHCPACK from 10.10.1.1 (xid=0x3c5eb164)
Oct 10 07:34:08 ip-10-10-1-80 dhclient[588]: bound to 10.10.1.80 -- renewal in 1713 seconds.
Oct 10 07:34:09 ip-10-10-1-80 systemd: Started Initial cloud-init job (pre-networking).
Oct 10 07:34:09 ip-10-10-1-80 systemd: Reached target Network (Pre).
Oct 10 07:34:09 ip-10-10-1-80 systemd: Starting LSB: Bring up/down networking...
Oct 10 07:34:09 ip-10-10-1-80 network: Bringing up loopback interface: [ OK ]
Oct 10 07:34:09 ip-10-10-1-80 network: Bringing up interface ens5:
Oct 10 07:34:09 ip-10-10-1-80 kernel: IPv6: ADDRCONF(NETDEV_UP): ens5: link is not ready
Oct 10 07:34:09 ip-10-10-1-80 dhclient[735]: DHCPREQUEST on ens5 to 255.255.255.255 port 67 (xid=0x72fd9d14)
Oct 10 07:34:09 ip-10-10-1-80 dhclient[735]: DHCPACK from 10.10.1.1 (xid=0x72fd9d14)
Oct 10 07:34:09 ip-10-10-1-80 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens5: link becomes ready
Oct 10 07:34:10 ip-10-10-1-80 kernel: tsc: Refined TSC clocksource calibration: 2199.998 MHz
Oct 10 07:34:11 ip-10-10-1-80 NET[784]: /usr/sbin/dhclient-script : updated /etc/resolv.conf
Oct 10 07:34:11 ip-10-10-1-80 dhclient[735]: bound to 10.10.1.80 -- renewal in 1631 seconds.
Oct 10 07:34:11 ip-10-10-1-80 network: Determining IP information for ens5... done.
Oct 10 07:34:11 ip-10-10-1-80 network: [ OK ]
Oct 10 07:34:11 ip-10-10-1-80 network: Bringing up interface eth0: ERROR : [/etc/sysconfig/network-scripts/ifup-eth] Device eth0 does not seem to be present, delaying initialization.
Oct 10 07:34:11 ip-10-10-1-80 /etc/sysconfig/network-scripts/ifup-eth: Device eth0 does not seem to be present, delaying initialization.
Oct 10 07:34:11 ip-10-10-1-80 network: [FAILED]
Oct 10 07:34:11 ip-10-10-1-80 systemd: network.service: control process exited, code=exited status=1
Oct 10 07:34:11 ip-10-10-1-80 systemd: Failed to start LSB: Bring up/down networking.
Oct 10 07:34:11 ip-10-10-1-80 systemd: Unit network.service entered failed state.
Oct 10 07:34:11 ip-10-10-1-80 systemd: network.service failed.
Oct 10 07:34:11 ip-10-10-1-80 systemd: Reached target Network.
Oct 10 07:34:11 ip-10-10-1-80 systemd: Starting Dynamic System Tuning Daemon...
Oct 10 07:34:11 ip-10-10-1-80 systemd: Starting The Apache HTTP Server...
Oct 10 07:34:11 ip-10-10-1-80 systemd: Starting MariaDB database server...
Oct 10 07:34:11 ip-10-10-1-80 systemd: Starting Postfix Mail Transport Agent...
Oct 10 07:34:11 ip-10-10-1-80 systemd: Starting Initial cloud-init job (metadata service crawler)...
Oct 10 07:34:11 ip-10-10-1-80 mariadb-prepare-db-dir: Database MariaDB is probably initialized in /var/lib/mysql already, nothing is done.
Oct 10 07:34:11 ip-10-10-1-80 mariadb-prepare-db-dir: If this is not the case, make sure the /var/lib/mysql is empty before running mariadb-prepare-db-dir.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started The Apache HTTP Server.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started Dynamic System Tuning Daemon.
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: Cloud-init v. 18.5 running 'init' at Sat, 10 Oct 2020 07:34:12 +0000. Up 9.27 seconds.
Oct 10 07:34:12 ip-10-10-1-80 mysqld_safe: 201010 07:34:12 mysqld_safe Logging to '/var/log/mariadb/mariadb.log'.
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: ++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | ens5 | True | 10.10.1.80 | 255.255.255.0 | global | 02:8a:f9:f1:bb:7f |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | ens5 | True | fe80::8a:f9ff:fef1:bb7f/64 | . | link | 02:8a:f9:f1:bb:7f |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | host | . |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | lo | True | ::1/128 | . | host | . |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: ++++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +-------+-------------+-----------+---------------+-----------+-------+
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +-------+-------------+-----------+---------------+-----------+-------+
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | 0 | 0.0.0.0 | 10.10.1.1 | 0.0.0.0 | ens5 | UG |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | 1 | 10.10.1.0 | 0.0.0.0 | 255.255.255.0 | ens5 | U |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +-------+-------------+-----------+---------------+-----------+-------+
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +-------+-------------+---------+-----------+-------+
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | Route | Destination | Gateway | Interface | Flags |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +-------+-------------+---------+-----------+-------+
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | 9 | fe80::/64 | :: | ens5 | U |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: | 13 | ff00::/8 | :: | ens5 | U |
Oct 10 07:34:12 ip-10-10-1-80 cloud-init: ci-info: +-------+-------------+---------+-----------+-------+
Oct 10 07:34:12 ip-10-10-1-80 mysqld_safe: 201010 07:34:12 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started Postfix Mail Transport Agent.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started Initial cloud-init job (metadata service crawler).
Oct 10 07:34:12 ip-10-10-1-80 systemd: Reached target Network is Online.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Starting System Logging Service...
Oct 10 07:34:12 ip-10-10-1-80 systemd: Starting Crash recovery kernel arming...
Oct 10 07:34:12 ip-10-10-1-80 systemd: Starting Notify NFS peers of a restart...
Oct 10 07:34:12 ip-10-10-1-80 sm-notify[1229]: Version 1.3.0 starting
Oct 10 07:34:12 ip-10-10-1-80 systemd: Starting OpenSSH server daemon...
Oct 10 07:34:12 ip-10-10-1-80 systemd: Reached target Cloud-config availability.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Starting Apply the settings specified in cloud-config...
Oct 10 07:34:12 ip-10-10-1-80 systemd: Starting Permit User Sessions...
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started Notify NFS peers of a restart.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started Permit User Sessions.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started Serial Getty on ttyS0.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started Command Scheduler.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started Getty on tty1.
Oct 10 07:34:12 ip-10-10-1-80 kdumpctl: No memory reserved for crash kernel
Oct 10 07:34:12 ip-10-10-1-80 kdumpctl: Starting kdump: [FAILED]
Oct 10 07:34:12 ip-10-10-1-80 rsyslogd: [origin software="rsyslogd" swVersion="8.24.0-52.el7_8.2" x-pid="1227" x-info="http://www.rsyslog.com"] start
Oct 10 07:34:12 ip-10-10-1-80 systemd: Reached target Login Prompts.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started OpenSSH server daemon.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Started System Logging Service.
Oct 10 07:34:12 ip-10-10-1-80 systemd: kdump.service: main process exited, code=exited, status=1/FAILURE
Oct 10 07:34:12 ip-10-10-1-80 systemd: Failed to start Crash recovery kernel arming.
Oct 10 07:34:12 ip-10-10-1-80 systemd: Unit kdump.service entered failed state.
Oct 10 07:34:12 ip-10-10-1-80 systemd: kdump.service failed.
Oct 10 07:34:13 ip-10-10-1-80 cloud-init: Cloud-init v. 18.5 running 'modules:config' at Sat, 10 Oct 2020 07:34:13 +0000. Up 10.01 seconds.
Oct 10 07:34:13 ip-10-10-1-80 systemd: Started Apply the settings specified in cloud-config.
Oct 10 07:34:13 ip-10-10-1-80 systemd: Starting Execute cloud user/final scripts...
Oct 10 07:34:13 ip-10-10-1-80 cloud-init: Cloud-init v. 18.5 running 'modules:final' at Sat, 10 Oct 2020 07:34:13 +0000. Up 10.32 seconds.
Oct 10 07:34:13 ip-10-10-1-80 cloud-init: Cloud-init v. 18.5 finished at Sat, 10 Oct 2020 07:34:13 +0000. Datasource DataSourceEc2Local. Up 10.39 seconds
Oct 10 07:34:13 ip-10-10-1-80 systemd: Started Execute cloud user/final scripts.
Oct 10 07:34:13 ip-10-10-1-80 kernel: random: crng init done
Oct 10 07:34:14 ip-10-10-1-80 systemd: Started MariaDB database server.
Oct 10 07:34:14 ip-10-10-1-80 systemd: Reached target Multi-User System.
Oct 10 07:34:14 ip-10-10-1-80 systemd: Reached target Cloud-init target.
Oct 10 07:34:14 ip-10-10-1-80 systemd: Starting Update UTMP about System Runlevel Changes...
Oct 10 07:34:14 ip-10-10-1-80 systemd: Started Update UTMP about System Runlevel Changes.
Oct 10 07:34:14 ip-10-10-1-80 systemd: Startup finished in 1.530s (kernel) + 1.849s (initrd) + 7.662s (userspace) = 11.041s.
Oct 10 07:34:42 ip-10-10-1-80 chronyd[545]: Selected source 204.17.205.24
Oct 10 07:34:42 ip-10-10-1-80 chronyd[545]: System clock wrong by 1.190336 seconds, adjustment started
Oct 10 07:34:42 ip-10-10-1-80 systemd: Time has been changed
Oct 10 07:34:42 ip-10-10-1-80 chronyd[545]: System clock was stepped by 1.190336 seconds
Oct 10 07:37:20 ip-10-10-1-80 systemd: Created slice User Slice of centos.
Oct 10 07:37:20 ip-10-10-1-80 systemd: Started Session 1 of user centos.
Oct 10 07:37:20 ip-10-10-1-80 systemd-logind: New session 1 of user centos.
Oct 10 07:37:24 ip-10-10-1-80 systemd-logind: Removed session 1.
Oct 10 07:37:24 ip-10-10-1-80 systemd: Removed slice User Slice of centos.
Oct 10 07:37:35 ip-10-10-1-80 systemd: Created slice User Slice of centos.
Oct 10 07:37:35 ip-10-10-1-80 systemd: Started Session 2 of user centos.
Oct 10 07:37:35 ip-10-10-1-80 systemd-logind: New session 2 of user centos.
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys cpuset
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys cpu
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys cpuacct
Oct 10 07:38:25 ip-10-10-1-80 kernel: Linux version 3.10.0-1127.19.1.el7.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ) #1 SMP Tue Aug 25 17:23:54 UTC 2020
Oct 10 07:38:25 ip-10-10-1-80 kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-3.10.0-1127.19.1.el7.x86_64 root=UUID=388a99ed-9486-4a46-aeb6-06eaf6c47675 ro console=tty0 console=ttyS0,115200n8 crashkernel=auto console=ttyS0,115200 LANG=en_US.UTF-8
Oct 10 07:38:25 ip-10-10-1-80 kernel: e820: BIOS-provided physical RAM map:
Oct 10 07:38:25 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Oct 10 07:38:25 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Oct 10 07:38:25 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Oct 10 07:38:25 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003e7f9fff] usable
Oct 10 07:38:25 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x000000003e7fa000-0x000000003fffffff] reserved
Oct 10 07:38:25 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000e03fffff] reserved
Oct 10 07:38:25 ip-10-10-1-80 kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
Oct 10 07:38:25 ip-10-10-1-80 kernel: NX (Execute Disable) protection: active
Oct 10 07:38:25 ip-10-10-1-80 kernel: SMBIOS 2.7 present.
Oct 10 07:38:25 ip-10-10-1-80 kernel: DMI: Amazon EC2 t3a.micro/, BIOS 1.0 10/16/2017
Oct 10 07:38:25 ip-10-10-1-80 kernel: Hypervisor detected: KVM
Oct 10 07:38:25 ip-10-10-1-80 kernel: e820: last_pfn = 0x3e7fa max_arch_pfn = 0x400000000
Oct 10 07:38:25 ip-10-10-1-80 kernel: PAT configuration [0-7]: WB WC UC- UC WB WP UC- UC
Oct 10 07:38:25 ip-10-10-1-80 kernel: Using GB pages for direct mapping
Oct 10 07:38:25 ip-10-10-1-80 kernel: RAMDISK: [mem 0x327e9000-0x353ecfff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: Early table checksum verification disabled
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: RSDP 00000000000f8f90 00014 (v00 AMAZON)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: RSDT 000000003e7fe360 0003C (v01 AMAZON AMZNRSDT 00000001 AMZN 00000001)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: FACP 000000003e7fff80 00074 (v01 AMAZON AMZNFACP 00000001 AMZN 00000001)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: DSDT 000000003e7fe3a0 010E9 (v01 AMAZON AMZNDSDT 00000001 AMZN 00000001)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: FACS 000000003e7fff40 00040
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: SSDT 000000003e7ff6c0 0087A (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: APIC 000000003e7ff5d0 00076 (v01 AMAZON AMZNAPIC 00000001 AMZN 00000001)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: SRAT 000000003e7ff530 000A0 (v01 AMAZON AMZNSRAT 00000001 AMZN 00000001)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: SLIT 000000003e7ff4c0 0006C (v01 AMAZON AMZNSLIT 00000001 AMZN 00000001)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: WAET 000000003e7ff490 00028 (v01 AMAZON AMZNWAET 00000001 AMZN 00000001)
Oct 10 07:38:25 ip-10-10-1-80 kernel: SRAT: PXM 0 -> APIC 0x00 -> Node 0
Oct 10 07:38:25 ip-10-10-1-80 kernel: SRAT: PXM 0 -> APIC 0x01 -> Node 0
Oct 10 07:38:25 ip-10-10-1-80 kernel: SRAT: Node 0 PXM 0 [mem 0x00000000-0x3fffffff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: NODE_DATA(0) allocated [mem 0x3e7d2000-0x3e7f8fff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: crashkernel=auto resulted in zero bytes of reserved memory.
Oct 10 07:38:25 ip-10-10-1-80 kernel: kvm-clock: cpu 0, msr 0:3e781001, primary cpu clock
Oct 10 07:38:25 ip-10-10-1-80 kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00
Oct 10 07:38:25 ip-10-10-1-80 kernel: kvm-clock: using sched offset of 8402459042 cycles
Oct 10 07:38:25 ip-10-10-1-80 kernel: Zone ranges:
Oct 10 07:38:25 ip-10-10-1-80 kernel: DMA [mem 0x00001000-0x00ffffff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: DMA32 [mem 0x01000000-0xffffffff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: Normal empty
Oct 10 07:38:25 ip-10-10-1-80 kernel: Movable zone start for each node
Oct 10 07:38:25 ip-10-10-1-80 kernel: Early memory node ranges
Oct 10 07:38:25 ip-10-10-1-80 kernel: node 0: [mem 0x00001000-0x0009efff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: node 0: [mem 0x00100000-0x3e7f9fff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initmem setup node 0 [mem 0x00001000-0x3e7f9fff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: PM-Timer IO Port: 0xb008
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
Oct 10 07:38:25 ip-10-10-1-80 kernel: IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Using ACPI (MADT) for SMP configuration information
Oct 10 07:38:25 ip-10-10-1-80 kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
Oct 10 07:38:25 ip-10-10-1-80 kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: e820: [mem 0x40000000-0xdfffffff] available for PCI devices
Oct 10 07:38:25 ip-10-10-1-80 kernel: Booting paravirtualized kernel on KVM
Oct 10 07:38:25 ip-10-10-1-80 kernel: setup_percpu: NR_CPUS:5120 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
Oct 10 07:38:25 ip-10-10-1-80 kernel: percpu: Embedded 38 pages/cpu s118784 r8192 d28672 u1048576
Oct 10 07:38:25 ip-10-10-1-80 kernel: KVM setup async PF for cpu 0
Oct 10 07:38:25 ip-10-10-1-80 kernel: kvm-stealtime: cpu 0, msr 3e41c040
Oct 10 07:38:25 ip-10-10-1-80 kernel: PV qspinlock hash table entries: 256 (order: 0, 4096 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 251875
Oct 10 07:38:25 ip-10-10-1-80 kernel: Policy zone: DMA32
Oct 10 07:38:25 ip-10-10-1-80 kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.10.0-1127.19.1.el7.x86_64 root=UUID=388a99ed-9486-4a46-aeb6-06eaf6c47675 ro console=tty0 console=ttyS0,115200n8 crashkernel=auto console=ttyS0,115200 LANG=en_US.UTF-8
Oct 10 07:38:25 ip-10-10-1-80 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
Oct 10 07:38:25 ip-10-10-1-80 kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
Oct 10 07:38:25 ip-10-10-1-80 kernel: Memory: 942060k/1023976k available (7784k kernel code, 392k absent, 81524k reserved, 5958k data, 1980k init)
Oct 10 07:38:25 ip-10-10-1-80 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Oct 10 07:38:25 ip-10-10-1-80 kernel: Hierarchical RCU implementation.
Oct 10 07:38:25 ip-10-10-1-80 kernel: #011RCU restricting CPUs from NR_CPUS=5120 to nr_cpu_ids=2.
Oct 10 07:38:25 ip-10-10-1-80 kernel: NR_IRQS:327936 nr_irqs:440 0
Oct 10 07:38:25 ip-10-10-1-80 kernel: Console: colour VGA+ 80x25
Oct 10 07:38:25 ip-10-10-1-80 kernel: console [tty0] enabled
Oct 10 07:38:25 ip-10-10-1-80 kernel: console [ttyS0] enabled
Oct 10 07:38:25 ip-10-10-1-80 kernel: allocated 4194304 bytes of page_cgroup
Oct 10 07:38:25 ip-10-10-1-80 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
Oct 10 07:38:25 ip-10-10-1-80 kernel: tsc: Detected 2199.664 MHz processor
Oct 10 07:38:25 ip-10-10-1-80 kernel: Calibrating delay loop (skipped) preset value.. 4399.32 BogoMIPS (lpj=2199664)
Oct 10 07:38:25 ip-10-10-1-80 kernel: pid_max: default: 32768 minimum: 301
Oct 10 07:38:25 ip-10-10-1-80 kernel: Security Framework initialized
Oct 10 07:38:25 ip-10-10-1-80 kernel: SELinux: Initializing.
Oct 10 07:38:25 ip-10-10-1-80 kernel: Yama: becoming mindful.
Oct 10 07:38:25 ip-10-10-1-80 kernel: Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys memory
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys devices
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys freezer
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys net_cls
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys blkio
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys perf_event
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys hugetlb
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys pids
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing cgroup subsys net_prio
Oct 10 07:38:25 ip-10-10-1-80 kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Oct 10 07:38:25 ip-10-10-1-80 kernel: Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768
Oct 10 07:38:25 ip-10-10-1-80 kernel: tlb_flushall_shift: 6
Oct 10 07:38:25 ip-10-10-1-80 kernel: FEATURE SPEC_CTRL Not Present
Oct 10 07:38:25 ip-10-10-1-80 kernel: FEATURE IBPB_SUPPORT Not Present
Oct 10 07:38:25 ip-10-10-1-80 kernel: Spectre V1 : Mitigation: Load fences, usercopy/swapgs barriers and __user pointer sanitization
Oct 10 07:38:25 ip-10-10-1-80 kernel: Spectre V2 : Vulnerable: Retpoline without IBPB
Oct 10 07:38:25 ip-10-10-1-80 kernel: Speculative Store Bypass: Vulnerable
Oct 10 07:38:25 ip-10-10-1-80 kernel: Freeing SMP alternatives: 28k freed
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Core revision 20130517
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: All ACPI Tables successfully acquired
Oct 10 07:38:25 ip-10-10-1-80 kernel: ftrace: allocating 29619 entries in 116 pages
Oct 10 07:38:25 ip-10-10-1-80 kernel: ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
Oct 10 07:38:25 ip-10-10-1-80 kernel: smpboot: CPU0: AMD EPYC 7571 (fam: 17, model: 01, stepping: 02)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Performance Events: PMU not available due to virtualization, using software events only.
Oct 10 07:38:25 ip-10-10-1-80 kernel: KVM setup paravirtual spinlock
Oct 10 07:38:25 ip-10-10-1-80 kernel: smpboot: Booting Node 0, Processors #1 OK
Oct 10 07:38:25 ip-10-10-1-80 kernel: kvm-clock: cpu 1, msr 0:3e781041, secondary cpu clock
Oct 10 07:38:25 ip-10-10-1-80 kernel: KVM setup async PF for cpu 1
Oct 10 07:38:25 ip-10-10-1-80 kernel: kvm-stealtime: cpu 1, msr 3e51c040
Oct 10 07:38:25 ip-10-10-1-80 kernel: Brought up 2 CPUs
Oct 10 07:38:25 ip-10-10-1-80 kernel: smpboot: Max logical packages: 1
Oct 10 07:38:25 ip-10-10-1-80 kernel: smpboot: Total of 2 processors activated (8798.65 BogoMIPS)
Oct 10 07:38:25 ip-10-10-1-80 kernel: devtmpfs: initialized
Oct 10 07:38:25 ip-10-10-1-80 kernel: x86/mm: Memory block size: 128MB
Oct 10 07:38:25 ip-10-10-1-80 kernel: EVM: security.selinux
Oct 10 07:38:25 ip-10-10-1-80 kernel: EVM: security.ima
Oct 10 07:38:25 ip-10-10-1-80 kernel: EVM: security.capability
Oct 10 07:38:25 ip-10-10-1-80 kernel: atomic64 test passed for x86-64 platform with CX8 and with SSE
Oct 10 07:38:25 ip-10-10-1-80 kernel: pinctrl core: initialized pinctrl subsystem
Oct 10 07:38:25 ip-10-10-1-80 kernel: RTC time: 7:38:23, date: 10/10/20
Oct 10 07:38:25 ip-10-10-1-80 kernel: NET: Registered protocol family 16
Oct 10 07:38:25 ip-10-10-1-80 kernel: cpuidle: using governor haltpoll
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: bus type PCI registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Oct 10 07:38:25 ip-10-10-1-80 kernel: PCI: Using configuration type 1 for base access
Oct 10 07:38:25 ip-10-10-1-80 kernel: PCI: Using configuration type 1 for extended access
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Added _OSI(Module Device)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Added _OSI(Processor Device)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Added _OSI(Linux-Dell-Video)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Interpreter enabled
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: (supports S0 S4 S5)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Using IOAPIC for interrupt routing
Oct 10 07:38:25 ip-10-10-1-80 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Enabled 16 GPEs in block 00 to 0F
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [3] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [4] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [5] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [6] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [7] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [8] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [9] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [10] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [11] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [12] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [13] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [14] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [15] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [16] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [17] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [18] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [19] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [20] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [21] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [22] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [23] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [24] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [25] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [26] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [27] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [28] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [29] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [30] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: acpiphp: Slot [31] registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: PCI host bridge to bus 0000:00
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window]
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPI
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres E PIO at fff0-ffff
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres F MMIO at ffc00000-ffffffff
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres G PIO at fff0-ffff
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres H MMIO at ffc00000-ffffffff
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres I PIO at fff0-ffff
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:01.3: PIIX4 devres J PIO at fff0-ffff
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
Oct 10 07:38:25 ip-10-10-1-80 kernel: vgaarb: device added: PCI:0000:00:03.0,decodes=io+mem,owns=io+mem,locks=none
Oct 10 07:38:25 ip-10-10-1-80 kernel: vgaarb: loaded
Oct 10 07:38:25 ip-10-10-1-80 kernel: vgaarb: bridge control possible 0000:00:03.0
Oct 10 07:38:25 ip-10-10-1-80 kernel: SCSI subsystem initialized
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: bus type USB registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: usbcore: registered new interface driver usbfs
Oct 10 07:38:25 ip-10-10-1-80 kernel: usbcore: registered new interface driver hub
Oct 10 07:38:25 ip-10-10-1-80 kernel: usbcore: registered new device driver usb
Oct 10 07:38:25 ip-10-10-1-80 kernel: EDAC MC: Ver: 3.0.0
Oct 10 07:38:25 ip-10-10-1-80 kernel: PCI: Using ACPI for IRQ routing
Oct 10 07:38:25 ip-10-10-1-80 kernel: NetLabel: Initializing
Oct 10 07:38:25 ip-10-10-1-80 kernel: NetLabel: domain hash size = 128
Oct 10 07:38:25 ip-10-10-1-80 kernel: NetLabel: protocols = UNLABELED CIPSOv4
Oct 10 07:38:25 ip-10-10-1-80 kernel: NetLabel: unlabeled traffic allowed by default
Oct 10 07:38:25 ip-10-10-1-80 kernel: amd_nb: Cannot enumerate AMD northbridges
Oct 10 07:38:25 ip-10-10-1-80 kernel: Switched to clocksource kvm-clock
Oct 10 07:38:25 ip-10-10-1-80 kernel: pnp: PnP ACPI init
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: bus type PNP registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: pnp: PnP ACPI: found 5 devices
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: bus type PNP unregistered
Oct 10 07:38:25 ip-10-10-1-80 kernel: NET: Registered protocol family 2
Oct 10 07:38:25 ip-10-10-1-80 kernel: TCP established hash table entries: 8192 (order: 4, 65536 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: TCP: Hash tables configured (established 8192 bind 8192)
Oct 10 07:38:25 ip-10-10-1-80 kernel: TCP: reno registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: NET: Registered protocol family 1
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci 0000:00:01.0: Activating ISA DMA hang workarounds
Oct 10 07:38:25 ip-10-10-1-80 kernel: Unpacking initramfs...
Oct 10 07:38:25 ip-10-10-1-80 kernel: Freeing initrd memory: 45072k freed
Oct 10 07:38:25 ip-10-10-1-80 kernel: sha1_ssse3: Using SHA-NI optimized SHA-1 implementation
Oct 10 07:38:25 ip-10-10-1-80 kernel: sha256_ssse3: Using SHA-256-NI optimized SHA-256 implementation
Oct 10 07:38:25 ip-10-10-1-80 kernel: futex hash table entries: 512 (order: 3, 32768 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initialise system trusted keyring
Oct 10 07:38:25 ip-10-10-1-80 kernel: audit: initializing netlink socket (disabled)
Oct 10 07:38:25 ip-10-10-1-80 kernel: type=2000 audit(1602315503.657:1): initialized
Oct 10 07:38:25 ip-10-10-1-80 kernel: HugeTLB registered 1 GB page size, pre-allocated 0 pages
Oct 10 07:38:25 ip-10-10-1-80 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Oct 10 07:38:25 ip-10-10-1-80 kernel: zpool: loaded
Oct 10 07:38:25 ip-10-10-1-80 kernel: zbud: loaded
Oct 10 07:38:25 ip-10-10-1-80 kernel: VFS: Disk quotas dquot_6.5.2
Oct 10 07:38:25 ip-10-10-1-80 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Key type big_key registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: NET: Registered protocol family 38
Oct 10 07:38:25 ip-10-10-1-80 kernel: Key type asymmetric registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: Asymmetric key parser 'x509' registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
Oct 10 07:38:25 ip-10-10-1-80 kernel: io scheduler noop registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: io scheduler deadline registered (default)
Oct 10 07:38:25 ip-10-10-1-80 kernel: io scheduler cfq registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: io scheduler mq-deadline registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: io scheduler kyber registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 10 07:38:25 ip-10-10-1-80 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Oct 10 07:38:25 ip-10-10-1-80 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 10 07:38:25 ip-10-10-1-80 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Power Button [PWRF]
Oct 10 07:38:25 ip-10-10-1-80 kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
Oct 10 07:38:25 ip-10-10-1-80 kernel: ACPI: Sleep Button [SLPF]
Oct 10 07:38:25 ip-10-10-1-80 kernel: GHES: HEST is not enabled!
Oct 10 07:38:25 ip-10-10-1-80 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Oct 10 07:38:25 ip-10-10-1-80 kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Oct 10 07:38:25 ip-10-10-1-80 kernel: Non-volatile memory driver v1.3
Oct 10 07:38:25 ip-10-10-1-80 kernel: Linux agpgart interface v0.103
Oct 10 07:38:25 ip-10-10-1-80 kernel: crash memory driver: version 1.1
Oct 10 07:38:25 ip-10-10-1-80 kernel: rdac: device handler registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: hp_sw: device handler registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: emc: device handler registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: alua: device handler registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: libphy: Fixed MDIO Bus: probed
Oct 10 07:38:25 ip-10-10-1-80 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 10 07:38:25 ip-10-10-1-80 kernel: ehci-pci: EHCI PCI platform driver
Oct 10 07:38:25 ip-10-10-1-80 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Oct 10 07:38:25 ip-10-10-1-80 kernel: ohci-pci: OHCI PCI platform driver
Oct 10 07:38:25 ip-10-10-1-80 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Oct 10 07:38:25 ip-10-10-1-80 kernel: usbcore: registered new interface driver usbserial_generic
Oct 10 07:38:25 ip-10-10-1-80 kernel: usbserial: USB Serial support registered for generic
Oct 10 07:38:25 ip-10-10-1-80 kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Oct 10 07:38:25 ip-10-10-1-80 kernel: i8042: Warning: Keylock active
Oct 10 07:38:25 ip-10-10-1-80 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 10 07:38:25 ip-10-10-1-80 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 10 07:38:25 ip-10-10-1-80 kernel: mousedev: PS/2 mouse device common for all mice
Oct 10 07:38:25 ip-10-10-1-80 kernel: rtc_cmos 00:00: RTC can wake from S4
Oct 10 07:38:25 ip-10-10-1-80 kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
Oct 10 07:38:25 ip-10-10-1-80 kernel: rtc_cmos 00:00: alarms up to one day, 114 bytes nvram
Oct 10 07:38:25 ip-10-10-1-80 kernel: hidraw: raw HID events driver (C) Jiri Kosina
Oct 10 07:38:25 ip-10-10-1-80 kernel: usbcore: registered new interface driver usbhid
Oct 10 07:38:25 ip-10-10-1-80 kernel: usbhid: USB HID core driver
Oct 10 07:38:25 ip-10-10-1-80 kernel: drop_monitor: Initializing network drop monitor service
Oct 10 07:38:25 ip-10-10-1-80 kernel: TCP: cubic registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: Initializing XFRM netlink socket
Oct 10 07:38:25 ip-10-10-1-80 kernel: NET: Registered protocol family 10
Oct 10 07:38:25 ip-10-10-1-80 kernel: NET: Registered protocol family 17
Oct 10 07:38:25 ip-10-10-1-80 kernel: mpls_gso: MPLS GSO support
Oct 10 07:38:25 ip-10-10-1-80 kernel: mce: Using 32 MCE banks
Oct 10 07:38:25 ip-10-10-1-80 kernel: Loading compiled-in X.509 certificates
Oct 10 07:38:25 ip-10-10-1-80 kernel: Loaded X.509 cert 'CentOS Linux kpatch signing key: ea0413152cde1d98ebdca3fe6f0230904c9ef717'
Oct 10 07:38:25 ip-10-10-1-80 kernel: Loaded X.509 cert 'CentOS Linux Driver update signing key: 7f421ee0ab69461574bb358861dbe77762a4201b'
Oct 10 07:38:25 ip-10-10-1-80 kernel: Loaded X.509 cert 'CentOS Linux kernel signing key: b16a91cac9d651464acb7ad9b8ded557cf1aca27'
Oct 10 07:38:25 ip-10-10-1-80 kernel: registered taskstats version 1
Oct 10 07:38:25 ip-10-10-1-80 kernel: Key type trusted registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: Key type encrypted registered
Oct 10 07:38:25 ip-10-10-1-80 kernel: IMA: No TPM chip found, activating TPM-bypass! (rc=-19)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Magic number: 8:98:622
Oct 10 07:38:25 ip-10-10-1-80 kernel: rtc_cmos 00:00: setting system clock to 2020-10-10 07:38:25 UTC (1602315505)
Oct 10 07:38:25 ip-10-10-1-80 kernel: Freeing unused kernel memory: 1980k freed
Oct 10 07:38:25 ip-10-10-1-80 kernel: Write protecting the kernel read-only data: 12288k
Oct 10 07:38:25 ip-10-10-1-80 kernel: Freeing unused kernel memory: 396k freed
Oct 10 07:38:25 ip-10-10-1-80 kernel: Freeing unused kernel memory: 540k freed
Oct 10 07:38:25 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:38:25 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:38:25 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)
Oct 10 07:38:25 ip-10-10-1-80 systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Oct 10 07:38:25 ip-10-10-1-80 systemd[1]: Detected virtualization kvm.
Oct 10 07:38:25 ip-10-10-1-80 systemd[1]: Detected architecture x86-64.
Oct 10 07:38:25 ip-10-10-1-80 systemd[1]: Running in initial RAM disk.
Oct 10 07:38:25 ip-10-10-1-80 systemd[1]: No hostname configured.
Oct 10 07:38:25 ip-10-10-1-80 systemd[1]: Set hostname to <localhost>.
Oct 10 07:38:25 ip-10-10-1-80 systemd[1]: Initializing machine ID from KVM UUID.
Oct 10 07:38:25 ip-10-10-1-80 kernel: random: systemd: uninitialized urandom read (16 bytes read)