-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsudo systemctl stop nginx
More file actions
1637 lines (1637 loc) · 156 KB
/
Copy pathsudo systemctl stop nginx
File metadata and controls
1637 lines (1637 loc) · 156 KB
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
-- Logs begin at Sun 2023-02-05 20:21:58 UTC, end at Thu 2023-06-29 09:10:01 UTC. --
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 402232 Jun 29 06:57 usr/lib64/libpcre.so.1.2.0
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 140864 Jun 29 06:57 usr/lib64/libpthread-2.26.so
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 18 Jun 29 06:57 usr/lib64/libpthread.so.0 -> libpthread-2.26.so
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 20 Jun 29 06:57 usr/lib64/libqrencode.so.3 -> libqrencode.so.3.4.1
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 53608 Jun 29 06:57 usr/lib64/libqrencode.so.3.4.1
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 42400 Jun 29 06:57 usr/lib64/librt-2.26.so
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 13 Jun 29 06:57 usr/lib64/librt.so.1 -> librt-2.26.so
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 155680 Jun 29 06:57 usr/lib64/libselinux.so.1
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 21 Jun 29 06:57 usr/lib64/libsmartcols.so.1 -> libsmartcols.so.1.1.0
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 189096 Jun 29 06:57 usr/lib64/libsmartcols.so.1.1.0
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 15 Jun 29 06:57 usr/lib64/libtinfo.so.6 -> libtinfo.so.6.0
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 179320 Jun 29 06:57 usr/lib64/libtinfo.so.6.0
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 16 Jun 29 06:57 usr/lib64/libudev.so.1 -> libudev.so.1.6.2
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 82720 Jun 29 06:57 usr/lib64/libudev.so.1.6.2
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 16 Jun 29 06:57 usr/lib64/libuuid.so.1 -> libuuid.so.1.3.0
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 20056 Jun 29 06:57 usr/lib64/libuuid.so.1.3.0
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 13 Jun 29 06:57 usr/lib64/libz.so.1 -> libz.so.1.2.7
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 85976 Jun 29 06:57 usr/lib64/libz.so.1.2.7
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: drwxr-xr-x 2 root root 0 Jun 29 06:57 usr/lib64/mysql
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: drwxr-xr-x 2 root root 0 Jun 29 06:57 usr/sbin
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 88240 Jun 29 06:57 usr/sbin/blkid
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 33160 Jun 29 06:57 usr/sbin/chroot
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 45792 Jun 29 06:57 usr/sbin/fsck
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 16 Jun 29 06:57 usr/sbin/halt -> ../bin/systemctl
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 22 Jun 29 06:57 usr/sbin/init -> ../lib/systemd/systemd
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 1208 May 18 2022 usr/sbin/initqueue
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 584 Sep 12 2013 usr/sbin/loginit
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 79768 Jun 29 06:57 usr/sbin/losetup
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 11 Jun 29 06:57 usr/sbin/modprobe -> ../bin/kmod
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 11288 Jun 29 06:57 usr/sbin/nologin
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 16 Jun 29 06:57 usr/sbin/poweroff -> ../bin/systemctl
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 942 May 18 2022 usr/sbin/rdsosreport
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 16 Jun 29 06:57 usr/sbin/reboot -> ../bin/systemctl
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 11 Jun 29 06:57 usr/sbin/rmmod -> ../bin/kmod
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 20064 Jun 29 06:57 usr/sbin/swapoff
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: -rwxr-xr-x 1 root root 6052 May 18 2022 usr/sbin/tracekomem
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 14 Jun 29 06:57 usr/sbin/udevadm -> ../bin/udevadm
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: drwxr-xr-x 2 root root 0 Jun 29 06:57 var
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 11 Jun 29 06:57 var/lock -> ../run/lock
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: lrwxrwxrwx 1 root root 6 Jun 29 06:57 var/run -> ../run
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: ========================================================================
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal dracut[30923]: *** Creating initramfs image file '/boot/initramfs-5.10.184-174.730.amzn2.x86_64.img' done ***
Jun 29 06:57:17 ip-172-31-42-240.eu-west-2.compute.internal systemd-udevd[26910]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Jun 29 06:57:19 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Stopped Dynamically Generate Message Of The Day.
-- Subject: Unit update-motd.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit update-motd.service has finished shutting down.
Jun 29 06:57:19 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Stopping Dynamically Generate Message Of The Day...
-- Subject: Unit update-motd.service has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit update-motd.service has begun shutting down.
Jun 29 06:57:19 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting Dynamically Generate Message Of The Day...
-- Subject: Unit update-motd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit update-motd.service has begun starting up.
Jun 29 06:57:21 ip-172-31-42-240.eu-west-2.compute.internal sudo[26810]: pam_unix(sudo:session): session closed for user root
Jun 29 06:57:32 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Dynamically Generate Message Of The Day.
-- Subject: Unit update-motd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit update-motd.service has finished starting up.
--
-- The start-up result is done.
Jun 29 06:58:24 ip-172-31-42-240.eu-west-2.compute.internal sshd[1148]: Invalid user admin from 59.23.199.98 port 62906
Jun 29 06:58:24 ip-172-31-42-240.eu-west-2.compute.internal sshd[1148]: input_userauth_request: invalid user admin [preauth]
Jun 29 06:58:28 ip-172-31-42-240.eu-west-2.compute.internal sshd[1148]: Connection reset by 59.23.199.98 port 62906 [preauth]
Jun 29 06:59:01 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 108790ms.
Jun 29 07:00:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 07:00:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24555 of user root.
-- Subject: Unit session-24555.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24555.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 07:00:02 ip-172-31-42-240.eu-west-2.compute.internal CROND[1152]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 07:00:02 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 07:00:50 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 119210ms.
Jun 29 07:01:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 07:01:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24556 of user root.
-- Subject: Unit session-24556.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24556.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 07:01:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[1159]: (root) CMD (run-parts /etc/cron.hourly)
Jun 29 07:01:01 ip-172-31-42-240.eu-west-2.compute.internal run-parts(/etc/cron.hourly)[1162]: [1;39mstarting 0anacron[0m
Jun 29 07:01:01 ip-172-31-42-240.eu-west-2.compute.internal run-parts(/etc/cron.hourly)[1168]: [1;39mfinished 0anacron[0m
Jun 29 07:01:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 07:01:37 ip-172-31-42-240.eu-west-2.compute.internal sudo[1172]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/systemctl is-enabled httpd[0m
Jun 29 07:01:37 ip-172-31-42-240.eu-west-2.compute.internal sudo[1172]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:01:37 ip-172-31-42-240.eu-west-2.compute.internal sudo[1172]: pam_unix(sudo:session): session closed for user root
Jun 29 07:02:26 ip-172-31-42-240.eu-west-2.compute.internal sudo[1175]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/systemctl start httpd[0m
Jun 29 07:02:26 ip-172-31-42-240.eu-west-2.compute.internal sudo[1175]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:02:26 ip-172-31-42-240.eu-west-2.compute.internal sudo[1175]: pam_unix(sudo:session): session closed for user root
Jun 29 07:02:39 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: DHCPREQUEST on eth0 to 172.31.32.1 port 67 (xid=0x20d16b11)
Jun 29 07:02:39 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: DHCPACK from 172.31.32.1 (xid=0x20d16b11)
Jun 29 07:02:39 ip-172-31-42-240.eu-west-2.compute.internal NET[1199]: [1;39mdhclient: Locked /run/dhclient/resolv.lock[0m
Jun 29 07:02:39 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: bound to 172.31.42.240 -- renewal in 1470 seconds.
Jun 29 07:02:39 ip-172-31-42-240.eu-west-2.compute.internal ec2net[1218]: [1;39m[get_meta] Querying IMDS for meta-data/network/interfaces/macs/0a:bb:e3:ce:0e:0c/local-ipv4s[0m
Jun 29 07:02:39 ip-172-31-42-240.eu-west-2.compute.internal ec2net[1219]: [1;39m[get_meta] Getting token for IMDSv2.[0m
Jun 29 07:02:39 ip-172-31-42-240.eu-west-2.compute.internal ec2net[1222]: [1;39m[get_meta] Trying to get http://169.254.169.254/latest/meta-data/network/interfaces/macs/0a:bb:e3:ce:0e:0c/local-ipv4s[0m
Jun 29 07:02:39 ip-172-31-42-240.eu-west-2.compute.internal ec2net[1227]: [1;39m[remove_aliases] Removing aliases of eth0[0m
Jun 29 07:02:50 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 111770ms.
Jun 29 07:03:00 ip-172-31-42-240.eu-west-2.compute.internal sudo[1229]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/yum install -y mod_ssl[0m
Jun 29 07:03:00 ip-172-31-42-240.eu-west-2.compute.internal sudo[1229]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: apr-1.7.2-1.amzn2.x86_64
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: apr-util-1.6.3-1.amzn2.0.1.x86_64
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: apr-util-bdb-1.6.3-1.amzn2.0.1.x86_64
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal groupadd[1244]: group added to /etc/group: name=apache, GID=48
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal groupadd[1244]: group added to /etc/gshadow: name=apache
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal groupadd[1244]: new group: name=apache, GID=48
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal useradd[1249]: new user: name=apache, UID=48, GID=48, home=/usr/share/httpd, shell=/sbin/nologin
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: httpd-filesystem-2.4.57-1.amzn2.noarch
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: httpd-tools-2.4.57-1.amzn2.x86_64
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: generic-logos-httpd-18.0.0-4.amzn2.noarch
Jun 29 07:03:05 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: mailcap-2.1.41-2.amzn2.noarch
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: mod_http2-1.15.19-1.amzn2.0.1.x86_64
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Reloading.
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: httpd-2.4.57-1.amzn2.x86_64
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: libtalloc-2.1.16-1.amzn2.x86_64
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: sscg-2.3.3-2.amzn2.0.1.x86_64
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Reloading.
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal yum[1230]: Installed: 1:mod_ssl-2.4.57-1.amzn2.x86_64
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Stopped Dynamically Generate Message Of The Day.
-- Subject: Unit update-motd.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit update-motd.service has finished shutting down.
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Stopping Dynamically Generate Message Of The Day...
-- Subject: Unit update-motd.service has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit update-motd.service has begun shutting down.
Jun 29 07:03:06 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting Dynamically Generate Message Of The Day...
-- Subject: Unit update-motd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit update-motd.service has begun starting up.
Jun 29 07:03:07 ip-172-31-42-240.eu-west-2.compute.internal sudo[1229]: pam_unix(sudo:session): session closed for user root
Jun 29 07:03:17 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Dynamically Generate Message Of The Day.
-- Subject: Unit update-motd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit update-motd.service has finished starting up.
--
-- The start-up result is done.
Jun 29 07:04:41 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 124470ms.
Jun 29 07:06:46 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 111650ms.
Jun 29 07:06:51 ip-172-31-42-240.eu-west-2.compute.internal sudo[1334]: [1;39mec2-user : TTY=pts/0 ; PWD=/etc/pki/tls/certs ; USER=root ; COMMAND=/bin/systemctl restart httpd[0m
Jun 29 07:06:51 ip-172-31-42-240.eu-west-2.compute.internal sudo[1334]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:06:51 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting One-time temporary TLS key generation for httpd.service...
-- Subject: Unit httpd-init.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd-init.service has begun starting up.
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started One-time temporary TLS key generation for httpd.service.
-- Subject: Unit httpd-init.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd-init.service has finished starting up.
--
-- The start-up result is done.
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting The Apache HTTP Server...
-- Subject: Unit httpd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has begun starting up.
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal httpd[1343]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal httpd[1343]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal httpd[1343]: no listening sockets available, shutting down
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal httpd[1343]: AH00015: Unable to open logs
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service: main process exited, code=exited, status=1/FAILURE[0m
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;31mFailed to start The Apache HTTP Server.[0m
-- Subject: Unit httpd.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has failed.
--
-- The result is failed.
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal sudo[1334]: pam_unix(sudo:session): session closed for user root
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mUnit httpd.service entered failed state.[0m
Jun 29 07:06:52 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service failed.[0m
Jun 29 07:07:40 ip-172-31-42-240.eu-west-2.compute.internal sudo[1349]: [1;39mec2-user : TTY=pts/0 ; PWD=/etc/pki/tls/certs ; USER=root ; COMMAND=/bin/systemctl is-enabled httpd[0m
Jun 29 07:07:40 ip-172-31-42-240.eu-west-2.compute.internal sudo[1349]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:07:40 ip-172-31-42-240.eu-west-2.compute.internal sudo[1349]: pam_unix(sudo:session): session closed for user root
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal sudo[1351]: [1;39mec2-user : TTY=pts/0 ; PWD=/etc/pki/tls/certs ; USER=root ; COMMAND=/bin/systemctl start httpd[0m
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal sudo[1351]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting The Apache HTTP Server...
-- Subject: Unit httpd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has begun starting up.
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal httpd[1355]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal httpd[1355]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal httpd[1355]: no listening sockets available, shutting down
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal httpd[1355]: AH00015: Unable to open logs
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service: main process exited, code=exited, status=1/FAILURE[0m
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;31mFailed to start The Apache HTTP Server.[0m
-- Subject: Unit httpd.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has failed.
--
-- The result is failed.
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mUnit httpd.service entered failed state.[0m
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service failed.[0m
Jun 29 07:08:09 ip-172-31-42-240.eu-west-2.compute.internal sudo[1351]: pam_unix(sudo:session): session closed for user root
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal sudo[1360]: [1;39mec2-user : TTY=pts/0 ; PWD=/etc/pki/tls/certs ; USER=root ; COMMAND=/bin/systemctl start httpd[0m
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal sudo[1360]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting The Apache HTTP Server...
-- Subject: Unit httpd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has begun starting up.
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal httpd[1364]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal httpd[1364]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal httpd[1364]: no listening sockets available, shutting down
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal httpd[1364]: AH00015: Unable to open logs
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service: main process exited, code=exited, status=1/FAILURE[0m
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;31mFailed to start The Apache HTTP Server.[0m
-- Subject: Unit httpd.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has failed.
--
-- The result is failed.
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mUnit httpd.service entered failed state.[0m
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service failed.[0m
Jun 29 07:08:34 ip-172-31-42-240.eu-west-2.compute.internal sudo[1360]: pam_unix(sudo:session): session closed for user root
Jun 29 07:08:38 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 112340ms.
Jun 29 07:10:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 07:10:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24557 of user root.
-- Subject: Unit session-24557.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24557.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 07:10:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[1375]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 07:10:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 07:10:30 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 111240ms.
Jun 29 07:11:50 ip-172-31-42-240.eu-west-2.compute.internal sudo[1383]: [1;39mec2-user : TTY=pts/0 ; PWD=/etc/pki/tls/certs ; USER=root ; COMMAND=/bin/systemctl stop[0m
Jun 29 07:11:50 ip-172-31-42-240.eu-west-2.compute.internal sudo[1383]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:11:50 ip-172-31-42-240.eu-west-2.compute.internal sudo[1383]: pam_unix(sudo:session): session closed for user root
Jun 29 07:12:07 ip-172-31-42-240.eu-west-2.compute.internal sudo[1385]: [1;39mec2-user : TTY=pts/0 ; PWD=/etc/pki/tls/certs ; USER=root ; COMMAND=/bin/systemctl start httpd[0m
Jun 29 07:12:07 ip-172-31-42-240.eu-west-2.compute.internal sudo[1385]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:12:07 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting The Apache HTTP Server...
-- Subject: Unit httpd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has begun starting up.
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal httpd[1389]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal httpd[1389]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal httpd[1389]: no listening sockets available, shutting down
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal httpd[1389]: AH00015: Unable to open logs
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service: main process exited, code=exited, status=1/FAILURE[0m
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;31mFailed to start The Apache HTTP Server.[0m
-- Subject: Unit httpd.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has failed.
--
-- The result is failed.
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mUnit httpd.service entered failed state.[0m
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service failed.[0m
Jun 29 07:12:08 ip-172-31-42-240.eu-west-2.compute.internal sudo[1385]: pam_unix(sudo:session): session closed for user root
Jun 29 07:12:21 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 126040ms.
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal sudo[1395]: [1;39mec2-user : TTY=pts/0 ; PWD=/etc/pki/tls/certs ; USER=root ; COMMAND=/sbin/service httpd start[0m
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal sudo[1395]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting The Apache HTTP Server...
-- Subject: Unit httpd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has begun starting up.
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal httpd[1409]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal httpd[1409]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal httpd[1409]: no listening sockets available, shutting down
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal httpd[1409]: AH00015: Unable to open logs
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service: main process exited, code=exited, status=1/FAILURE[0m
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;31mFailed to start The Apache HTTP Server.[0m
-- Subject: Unit httpd.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has failed.
--
-- The result is failed.
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mUnit httpd.service entered failed state.[0m
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service failed.[0m
Jun 29 07:13:48 ip-172-31-42-240.eu-west-2.compute.internal sudo[1395]: pam_unix(sudo:session): session closed for user root
Jun 29 07:14:27 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 127090ms.
Jun 29 07:16:32 ip-172-31-42-240.eu-west-2.compute.internal sshd[26583]: Received disconnect from 175.140.128.54 port 57612:11: disconnected by user
Jun 29 07:16:32 ip-172-31-42-240.eu-west-2.compute.internal sshd[26583]: Disconnected from 175.140.128.54 port 57612
Jun 29 07:16:32 ip-172-31-42-240.eu-west-2.compute.internal systemd-logind[2614]: Removed session 24554.
-- Subject: Session 24554 has been terminated
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
--
-- A session with the ID 24554 has been terminated.
Jun 29 07:16:32 ip-172-31-42-240.eu-west-2.compute.internal sshd[26549]: pam_unix(sshd:session): session closed for user ec2-user
Jun 29 07:16:34 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 131650ms.
Jun 29 07:18:46 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 123280ms.
Jun 29 07:19:37 ip-172-31-42-240.eu-west-2.compute.internal sshd[1423]: Accepted publickey for ec2-user from 175.140.128.54 port 58521 ssh2: ED25519 SHA256:PA1wTcY1LRa5Y2msBckVy1DD+Q4zqCfF1P2fdLuqASA
Jun 29 07:19:37 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24558 of user ec2-user.
-- Subject: Unit session-24558.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24558.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 07:19:37 ip-172-31-42-240.eu-west-2.compute.internal sshd[1423]: pam_unix(sshd:session): session opened for user ec2-user by (uid=0)
Jun 29 07:19:37 ip-172-31-42-240.eu-west-2.compute.internal systemd-logind[2614]: New session 24558 of user ec2-user.
-- Subject: A new session 24558 has been created for user ec2-user
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
--
-- A new session with the ID 24558 has been created for the user ec2-user.
--
-- The leading process of the session is 1423.
Jun 29 07:20:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 07:20:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24559 of user root.
-- Subject: Unit session-24559.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24559.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 07:20:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[1688]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 07:20:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 07:20:49 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 109460ms.
Jun 29 07:20:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[1457]: Received disconnect from 175.140.128.54 port 58521:11: disconnected by user
Jun 29 07:20:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[1457]: Disconnected from 175.140.128.54 port 58521
Jun 29 07:20:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[1423]: pam_unix(sshd:session): session closed for user ec2-user
Jun 29 07:20:54 ip-172-31-42-240.eu-west-2.compute.internal su[1686]: [1;31mpam_unix(su-l:auth): conversation failed[0m
Jun 29 07:20:54 ip-172-31-42-240.eu-west-2.compute.internal systemd-logind[2614]: Removed session 24558.
-- Subject: Session 24558 has been terminated
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
--
-- A session with the ID 24558 has been terminated.
Jun 29 07:20:54 ip-172-31-42-240.eu-west-2.compute.internal su[1686]: [1;31mpam_unix(su-l:auth): auth could not identify password for [root][0m
Jun 29 07:20:54 ip-172-31-42-240.eu-west-2.compute.internal su[1686]: [1;39mFAILED SU (to root) ec2-user on none[0m
Jun 29 07:21:15 ip-172-31-42-240.eu-west-2.compute.internal sshd[1697]: Accepted publickey for ec2-user from 175.140.128.54 port 58548 ssh2: ED25519 SHA256:PA1wTcY1LRa5Y2msBckVy1DD+Q4zqCfF1P2fdLuqASA
Jun 29 07:21:15 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24560 of user ec2-user.
-- Subject: Unit session-24560.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24560.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 07:21:15 ip-172-31-42-240.eu-west-2.compute.internal systemd-logind[2614]: New session 24560 of user ec2-user.
-- Subject: A new session 24560 has been created for user ec2-user
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
--
-- A new session with the ID 24560 has been created for the user ec2-user.
--
-- The leading process of the session is 1697.
Jun 29 07:21:15 ip-172-31-42-240.eu-west-2.compute.internal sshd[1697]: pam_unix(sshd:session): session opened for user ec2-user by (uid=0)
Jun 29 07:21:37 ip-172-31-42-240.eu-west-2.compute.internal su[1970]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:21:38 ip-172-31-42-240.eu-west-2.compute.internal su[1970]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:21:57 ip-172-31-42-240.eu-west-2.compute.internal su[1972]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:21:59 ip-172-31-42-240.eu-west-2.compute.internal su[1972]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:22:39 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 127790ms.
Jun 29 07:23:06 ip-172-31-42-240.eu-west-2.compute.internal su[1973]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:23:08 ip-172-31-42-240.eu-west-2.compute.internal su[1973]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:23:33 ip-172-31-42-240.eu-west-2.compute.internal su[1975]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:23:35 ip-172-31-42-240.eu-west-2.compute.internal su[1975]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:23:43 ip-172-31-42-240.eu-west-2.compute.internal su[1977]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:23:45 ip-172-31-42-240.eu-west-2.compute.internal su[1977]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:24:47 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 119520ms.
Jun 29 07:26:46 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 121830ms.
Jun 29 07:27:09 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: DHCPREQUEST on eth0 to 172.31.32.1 port 67 (xid=0x20d16b11)
Jun 29 07:27:09 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: DHCPACK from 172.31.32.1 (xid=0x20d16b11)
Jun 29 07:27:09 ip-172-31-42-240.eu-west-2.compute.internal NET[2002]: [1;39mdhclient: Locked /run/dhclient/resolv.lock[0m
Jun 29 07:27:09 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: bound to 172.31.42.240 -- renewal in 1733 seconds.
Jun 29 07:27:09 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2021]: [1;39m[get_meta] Querying IMDS for meta-data/network/interfaces/macs/0a:bb:e3:ce:0e:0c/local-ipv4s[0m
Jun 29 07:27:09 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2022]: [1;39m[get_meta] Getting token for IMDSv2.[0m
Jun 29 07:27:09 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2025]: [1;39m[get_meta] Trying to get http://169.254.169.254/latest/meta-data/network/interfaces/macs/0a:bb:e3:ce:0e:0c/local-ipv4s[0m
Jun 29 07:27:09 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2030]: [1;39m[remove_aliases] Removing aliases of eth0[0m
Jun 29 07:27:55 ip-172-31-42-240.eu-west-2.compute.internal su[1978]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:27:56 ip-172-31-42-240.eu-west-2.compute.internal su[1978]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:28:08 ip-172-31-42-240.eu-west-2.compute.internal su[2034]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:28:11 ip-172-31-42-240.eu-west-2.compute.internal su[2034]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:28:28 ip-172-31-42-240.eu-west-2.compute.internal su[2035]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:28:30 ip-172-31-42-240.eu-west-2.compute.internal su[2035]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:28:43 ip-172-31-42-240.eu-west-2.compute.internal su[2036]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:28:46 ip-172-31-42-240.eu-west-2.compute.internal su[2036]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:28:48 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 123080ms.
Jun 29 07:30:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 07:30:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24561 of user root.
-- Subject: Unit session-24561.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24561.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 07:30:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[2041]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 07:30:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 07:30:51 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 110470ms.
Jun 29 07:32:42 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 119210ms.
Jun 29 07:33:48 ip-172-31-42-240.eu-west-2.compute.internal su[2050]: [1;39mpam_unix(su-l:auth): authentication failure; logname=ec2-user uid=1000 euid=0 tty=pts/0 ruser=ec2-user rhost= user=root[0m
Jun 29 07:33:50 ip-172-31-42-240.eu-west-2.compute.internal su[2050]: [1;39mFAILED SU (to root) ec2-user on pts/0[0m
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal sudo[2051]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/systemctl start httpd[0m
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal sudo[2051]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting The Apache HTTP Server...
-- Subject: Unit httpd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has begun starting up.
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal httpd[2055]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal httpd[2055]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal httpd[2055]: no listening sockets available, shutting down
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal httpd[2055]: AH00015: Unable to open logs
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service: main process exited, code=exited, status=1/FAILURE[0m
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal sudo[2051]: pam_unix(sudo:session): session closed for user root
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;31mFailed to start The Apache HTTP Server.[0m
-- Subject: Unit httpd.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has failed.
--
-- The result is failed.
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mUnit httpd.service entered failed state.[0m
Jun 29 07:34:31 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mhttpd.service failed.[0m
Jun 29 07:34:41 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 125490ms.
Jun 29 07:36:47 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 119440ms.
Jun 29 07:38:46 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 129060ms.
Jun 29 07:40:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 07:40:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24562 of user root.
-- Subject: Unit session-24562.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24562.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 07:40:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[2073]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 07:40:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 07:40:55 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 130670ms.
Jun 29 07:43:06 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 113910ms.
Jun 29 07:43:26 ip-172-31-42-240.eu-west-2.compute.internal sshd[2082]: Invalid user supervisor from 210.6.27.170 port 60258
Jun 29 07:43:26 ip-172-31-42-240.eu-west-2.compute.internal sshd[2082]: input_userauth_request: invalid user supervisor [preauth]
Jun 29 07:43:27 ip-172-31-42-240.eu-west-2.compute.internal sshd[2082]: Connection closed by 210.6.27.170 port 60258 [preauth]
Jun 29 07:45:00 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 123950ms.
Jun 29 07:47:04 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 122470ms.
Jun 29 07:49:07 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 110560ms.
Jun 29 07:50:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 07:50:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24563 of user root.
-- Subject: Unit session-24563.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24563.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 07:50:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[2093]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 07:50:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 07:50:57 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 111780ms.
Jun 29 07:51:09 ip-172-31-42-240.eu-west-2.compute.internal sudo[2100]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/sbin/apachectl stop[0m
Jun 29 07:51:09 ip-172-31-42-240.eu-west-2.compute.internal sudo[2100]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:51:09 ip-172-31-42-240.eu-west-2.compute.internal sudo[2100]: pam_unix(sudo:session): session closed for user root
Jun 29 07:52:08 ip-172-31-42-240.eu-west-2.compute.internal sudo[2105]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/sbin/apachectl start[0m
Jun 29 07:52:08 ip-172-31-42-240.eu-west-2.compute.internal sudo[2105]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:52:08 ip-172-31-42-240.eu-west-2.compute.internal sudo[2105]: pam_unix(sudo:session): session closed for user root
Jun 29 07:52:49 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 112160ms.
Jun 29 07:54:24 ip-172-31-42-240.eu-west-2.compute.internal sudo[2111]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/netstat -ltnp[0m
Jun 29 07:54:24 ip-172-31-42-240.eu-west-2.compute.internal sudo[2111]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:54:24 ip-172-31-42-240.eu-west-2.compute.internal sudo[2111]: pam_unix(sudo:session): session closed for user root
Jun 29 07:54:41 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 113530ms.
Jun 29 07:54:59 ip-172-31-42-240.eu-west-2.compute.internal sudo[2114]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/kill 1500[0m
Jun 29 07:54:59 ip-172-31-42-240.eu-west-2.compute.internal sudo[2114]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:54:59 ip-172-31-42-240.eu-west-2.compute.internal sudo[2114]: pam_unix(sudo:session): session closed for user root
Jun 29 07:55:09 ip-172-31-42-240.eu-west-2.compute.internal sudo[2117]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/kill 27822[0m
Jun 29 07:55:09 ip-172-31-42-240.eu-west-2.compute.internal sudo[2117]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:55:09 ip-172-31-42-240.eu-west-2.compute.internal sudo[2117]: pam_unix(sudo:session): session closed for user root
Jun 29 07:55:22 ip-172-31-42-240.eu-west-2.compute.internal sudo[2122]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/sbin/service apache2 restart[0m
Jun 29 07:55:22 ip-172-31-42-240.eu-west-2.compute.internal sudo[2122]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:55:22 ip-172-31-42-240.eu-west-2.compute.internal sudo[2122]: pam_unix(sudo:session): session closed for user root
Jun 29 07:56:02 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: DHCPREQUEST on eth0 to 172.31.32.1 port 67 (xid=0x20d16b11)
Jun 29 07:56:02 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: DHCPACK from 172.31.32.1 (xid=0x20d16b11)
Jun 29 07:56:02 ip-172-31-42-240.eu-west-2.compute.internal NET[2156]: [1;39mdhclient: Locked /run/dhclient/resolv.lock[0m
Jun 29 07:56:02 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: bound to 172.31.42.240 -- renewal in 1426 seconds.
Jun 29 07:56:02 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2175]: [1;39m[get_meta] Querying IMDS for meta-data/network/interfaces/macs/0a:bb:e3:ce:0e:0c/local-ipv4s[0m
Jun 29 07:56:02 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2176]: [1;39m[get_meta] Getting token for IMDSv2.[0m
Jun 29 07:56:02 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2179]: [1;39m[get_meta] Trying to get http://169.254.169.254/latest/meta-data/network/interfaces/macs/0a:bb:e3:ce:0e:0c/local-ipv4s[0m
Jun 29 07:56:02 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2184]: [1;39m[remove_aliases] Removing aliases of eth0[0m
Jun 29 07:56:35 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 130180ms.
Jun 29 07:58:45 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 109320ms.
Jun 29 07:58:46 ip-172-31-42-240.eu-west-2.compute.internal sudo[2190]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm[0m
Jun 29 07:58:46 ip-172-31-42-240.eu-west-2.compute.internal sudo[2190]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:58:47 ip-172-31-42-240.eu-west-2.compute.internal sudo[2190]: pam_unix(sudo:session): session closed for user root
Jun 29 07:59:28 ip-172-31-42-240.eu-west-2.compute.internal sudo[2196]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/yum-config-manager --enable epel[0m
Jun 29 07:59:28 ip-172-31-42-240.eu-west-2.compute.internal sudo[2196]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 07:59:29 ip-172-31-42-240.eu-west-2.compute.internal sudo[2196]: pam_unix(sudo:session): session closed for user root
Jun 29 08:00:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 08:00:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24564 of user root.
-- Subject: Unit session-24564.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24564.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 08:00:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[2200]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 08:00:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 08:00:34 ip-172-31-42-240.eu-west-2.compute.internal sudo[2206]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/yum install certbot python2-certbot-nginx -y[0m
Jun 29 08:00:34 ip-172-31-42-240.eu-west-2.compute.internal sudo[2206]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 08:00:34 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 121900ms.
Jun 29 08:00:39 ip-172-31-42-240.eu-west-2.compute.internal sudo[2206]: pam_unix(sudo:session): session closed for user root
Jun 29 08:00:51 ip-172-31-42-240.eu-west-2.compute.internal sudo[2212]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/certbot --nginx[0m
Jun 29 08:00:51 ip-172-31-42-240.eu-west-2.compute.internal sudo[2212]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 08:01:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 08:01:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24565 of user root.
-- Subject: Unit session-24565.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24565.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 08:01:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[2221]: (root) CMD (run-parts /etc/cron.hourly)
Jun 29 08:01:01 ip-172-31-42-240.eu-west-2.compute.internal run-parts(/etc/cron.hourly)[2224]: [1;39mstarting 0anacron[0m
Jun 29 08:01:01 ip-172-31-42-240.eu-west-2.compute.internal run-parts(/etc/cron.hourly)[2230]: [1;39mfinished 0anacron[0m
Jun 29 08:01:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 08:01:12 ip-172-31-42-240.eu-west-2.compute.internal sudo[2212]: pam_unix(sudo:session): session closed for user root
Jun 29 08:01:28 ip-172-31-42-240.eu-west-2.compute.internal crontab[2245]: (ec2-user) BEGIN EDIT (ec2-user)
Jun 29 08:02:36 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 127480ms.
Jun 29 08:04:03 ip-172-31-42-240.eu-west-2.compute.internal sshd[1740]: Received disconnect from 175.140.128.54 port 58548:11: disconnected by user
Jun 29 08:04:03 ip-172-31-42-240.eu-west-2.compute.internal sshd[1740]: Disconnected from 175.140.128.54 port 58548
Jun 29 08:04:03 ip-172-31-42-240.eu-west-2.compute.internal sshd[1697]: pam_unix(sshd:session): session closed for user ec2-user
Jun 29 08:04:44 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 121950ms.
Jun 29 08:06:46 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 120670ms.
Jun 29 08:08:47 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 125980ms.
Jun 29 08:10:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 08:10:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24566 of user root.
-- Subject: Unit session-24566.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24566.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 08:10:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[2258]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 08:10:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 08:10:53 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 129100ms.
Jun 29 08:13:02 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 125910ms.
Jun 29 08:15:08 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 121310ms.
Jun 29 08:17:09 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 119880ms.
Jun 29 08:19:09 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 113410ms.
Jun 29 08:19:48 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: DHCPREQUEST on eth0 to 172.31.32.1 port 67 (xid=0x20d16b11)
Jun 29 08:19:48 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: DHCPACK from 172.31.32.1 (xid=0x20d16b11)
Jun 29 08:19:48 ip-172-31-42-240.eu-west-2.compute.internal NET[2294]: [1;39mdhclient: Locked /run/dhclient/resolv.lock[0m
Jun 29 08:19:48 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2875]: bound to 172.31.42.240 -- renewal in 1459 seconds.
Jun 29 08:19:48 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2313]: [1;39m[get_meta] Querying IMDS for meta-data/network/interfaces/macs/0a:bb:e3:ce:0e:0c/local-ipv4s[0m
Jun 29 08:19:48 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2314]: [1;39m[get_meta] Getting token for IMDSv2.[0m
Jun 29 08:19:48 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2317]: [1;39m[get_meta] Trying to get http://169.254.169.254/latest/meta-data/network/interfaces/macs/0a:bb:e3:ce:0e:0c/local-ipv4s[0m
Jun 29 08:19:48 ip-172-31-42-240.eu-west-2.compute.internal ec2net[2322]: [1;39m[remove_aliases] Removing aliases of eth0[0m
Jun 29 08:20:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 08:20:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24567 of user root.
-- Subject: Unit session-24567.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24567.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 08:20:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[2325]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 08:20:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 08:21:02 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 121460ms.
Jun 29 08:22:46 ip-172-31-42-240.eu-west-2.compute.internal sshd[2334]: Did not receive identification string from 122.144.10.66 port 59916
Jun 29 08:23:04 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 110320ms.
Jun 29 08:23:17 ip-172-31-42-240.eu-west-2.compute.internal sshd[2335]: Accepted publickey for ec2-user from 175.140.128.54 port 61886 ssh2: ED25519 SHA256:PA1wTcY1LRa5Y2msBckVy1DD+Q4zqCfF1P2fdLuqASA
Jun 29 08:23:17 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24568 of user ec2-user.
-- Subject: Unit session-24568.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24568.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 08:23:17 ip-172-31-42-240.eu-west-2.compute.internal systemd-logind[2614]: New session 24568 of user ec2-user.
-- Subject: A new session 24568 has been created for user ec2-user
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
--
-- A new session with the ID 24568 has been created for the user ec2-user.
--
-- The leading process of the session is 2335.
Jun 29 08:23:17 ip-172-31-42-240.eu-west-2.compute.internal sshd[2335]: pam_unix(sshd:session): session opened for user ec2-user by (uid=0)
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal sudo[2603]: [1;39mec2-user : TTY=pts/0 ; PWD=/home/ec2-user ; USER=root ; COMMAND=/bin/systemctl restart nginx[0m
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal sudo[2603]: pam_unix(sudo:session): session opened for user root by ec2-user(uid=0)
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Starting The nginx HTTP and reverse proxy server...
-- Subject: Unit nginx.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit nginx.service has begun starting up.
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal nginx[2608]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal nginx[2608]: nginx: configuration file /etc/nginx/nginx.conf test is successful
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal kernel: [1;39mxfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff)[0m
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Jun 29 08:24:14 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
Jun 29 08:24:15 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
Jun 29 08:24:15 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Jun 29 08:24:15 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
Jun 29 08:24:15 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
Jun 29 08:24:15 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Jun 29 08:24:15 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
Jun 29 08:24:16 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
Jun 29 08:24:16 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Jun 29 08:24:16 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
Jun 29 08:24:16 ip-172-31-42-240.eu-west-2.compute.internal nginx[2612]: nginx: [emerg] still could not bind()
Jun 29 08:24:16 ip-172-31-42-240.eu-west-2.compute.internal sudo[2603]: pam_unix(sudo:session): session closed for user root
Jun 29 08:24:16 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mnginx.service: control process exited, code=exited status=1[0m
Jun 29 08:24:16 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;31mFailed to start The nginx HTTP and reverse proxy server.[0m
-- Subject: Unit nginx.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit nginx.service has failed.
--
-- The result is failed.
Jun 29 08:24:16 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mUnit nginx.service entered failed state.[0m
Jun 29 08:24:16 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: [1;39mnginx.service failed.[0m
Jun 29 08:24:54 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 116750ms.
Jun 29 08:26:31 ip-172-31-42-240.eu-west-2.compute.internal sshd[2623]: Accepted publickey for ec2-user from 175.140.128.54 port 61928 ssh2: ED25519 SHA256:PA1wTcY1LRa5Y2msBckVy1DD+Q4zqCfF1P2fdLuqASA
Jun 29 08:26:31 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24569 of user ec2-user.
-- Subject: Unit session-24569.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24569.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 08:26:31 ip-172-31-42-240.eu-west-2.compute.internal systemd-logind[2614]: New session 24569 of user ec2-user.
-- Subject: A new session 24569 has been created for user ec2-user
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
--
-- A new session with the ID 24569 has been created for the user ec2-user.
--
-- The leading process of the session is 2623.
Jun 29 08:26:31 ip-172-31-42-240.eu-west-2.compute.internal sshd[2623]: pam_unix(sshd:session): session opened for user ec2-user by (uid=0)
Jun 29 08:26:51 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 121230ms.
Jun 29 08:28:52 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 111190ms.
Jun 29 08:29:57 ip-172-31-42-240.eu-west-2.compute.internal sshd[2907]: Invalid user orangepi from 8.222.169.20 port 46096
Jun 29 08:29:57 ip-172-31-42-240.eu-west-2.compute.internal sshd[2907]: input_userauth_request: invalid user orangepi [preauth]
Jun 29 08:29:57 ip-172-31-42-240.eu-west-2.compute.internal sshd[2907]: Connection closed by 8.222.169.20 port 46096 [preauth]
Jun 29 08:30:00 ip-172-31-42-240.eu-west-2.compute.internal sshd[2909]: Invalid user libuuid from 8.222.169.20 port 36270
Jun 29 08:30:00 ip-172-31-42-240.eu-west-2.compute.internal sshd[2909]: input_userauth_request: invalid user libuuid [preauth]
Jun 29 08:30:00 ip-172-31-42-240.eu-west-2.compute.internal sshd[2909]: Connection closed by 8.222.169.20 port 36270 [preauth]
Jun 29 08:30:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished starting up.
--
-- The start-up result is done.
Jun 29 08:30:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Started Session 24570 of user root.
-- Subject: Unit session-24570.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit session-24570.scope has finished starting up.
--
-- The start-up result is done.
Jun 29 08:30:01 ip-172-31-42-240.eu-west-2.compute.internal CROND[2912]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Jun 29 08:30:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Removed slice User Slice of root.
-- Subject: Unit user-0.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit user-0.slice has finished shutting down.
Jun 29 08:30:13 ip-172-31-42-240.eu-west-2.compute.internal sshd[2917]: Invalid user mysql_admin from 8.222.169.20 port 37598
Jun 29 08:30:13 ip-172-31-42-240.eu-west-2.compute.internal sshd[2917]: input_userauth_request: invalid user mysql_admin [preauth]
Jun 29 08:30:14 ip-172-31-42-240.eu-west-2.compute.internal sshd[2917]: Connection closed by 8.222.169.20 port 37598 [preauth]
Jun 29 08:30:44 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 112070ms.
Jun 29 08:32:31 ip-172-31-42-240.eu-west-2.compute.internal sshd[2943]: Invalid user sysadmin from 202.125.94.212 port 55189
Jun 29 08:32:31 ip-172-31-42-240.eu-west-2.compute.internal sshd[2943]: input_userauth_request: invalid user sysadmin [preauth]
Jun 29 08:32:31 ip-172-31-42-240.eu-west-2.compute.internal sshd[2943]: Received disconnect from 202.125.94.212 port 55189:11: Bye Bye [preauth]
Jun 29 08:32:31 ip-172-31-42-240.eu-west-2.compute.internal sshd[2943]: Disconnected from 202.125.94.212 port 55189 [preauth]
Jun 29 08:32:36 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 130260ms.
Jun 29 08:34:28 ip-172-31-42-240.eu-west-2.compute.internal sshd[2947]: Invalid user cent from 207.154.254.232 port 40336
Jun 29 08:34:28 ip-172-31-42-240.eu-west-2.compute.internal sshd[2947]: input_userauth_request: invalid user cent [preauth]
Jun 29 08:34:28 ip-172-31-42-240.eu-west-2.compute.internal sshd[2947]: Received disconnect from 207.154.254.232 port 40336:11: Bye Bye [preauth]
Jun 29 08:34:28 ip-172-31-42-240.eu-west-2.compute.internal sshd[2947]: Disconnected from 207.154.254.232 port 40336 [preauth]
Jun 29 08:34:29 ip-172-31-42-240.eu-west-2.compute.internal sshd[2949]: Did not receive identification string from 203.150.107.222 port 39760
Jun 29 08:34:31 ip-172-31-42-240.eu-west-2.compute.internal sshd[2950]: Connection closed by 203.150.107.222 port 41410 [preauth]
Jun 29 08:34:46 ip-172-31-42-240.eu-west-2.compute.internal sshd[2955]: Invalid user fa from 203.150.107.222 port 59520
Jun 29 08:34:46 ip-172-31-42-240.eu-west-2.compute.internal sshd[2955]: input_userauth_request: invalid user fa [preauth]
Jun 29 08:34:46 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 110080ms.
Jun 29 08:34:46 ip-172-31-42-240.eu-west-2.compute.internal sshd[2955]: Connection closed by 203.150.107.222 port 59520 [preauth]
Jun 29 08:34:47 ip-172-31-42-240.eu-west-2.compute.internal sshd[2957]: Invalid user resetroot from 203.150.107.222 port 38162
Jun 29 08:34:47 ip-172-31-42-240.eu-west-2.compute.internal sshd[2957]: input_userauth_request: invalid user resetroot [preauth]
Jun 29 08:34:48 ip-172-31-42-240.eu-west-2.compute.internal sshd[2957]: Connection closed by 203.150.107.222 port 38162 [preauth]
Jun 29 08:34:51 ip-172-31-42-240.eu-west-2.compute.internal sshd[2959]: Invalid user resetcraft from 203.150.107.222 port 55036
Jun 29 08:34:51 ip-172-31-42-240.eu-west-2.compute.internal sshd[2959]: input_userauth_request: invalid user resetcraft [preauth]
Jun 29 08:34:51 ip-172-31-42-240.eu-west-2.compute.internal sshd[2959]: Connection closed by 203.150.107.222 port 55036 [preauth]
Jun 29 08:34:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[2961]: Invalid user resetadmin from 203.150.107.222 port 46218
Jun 29 08:34:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[2961]: input_userauth_request: invalid user resetadmin [preauth]
Jun 29 08:34:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[2961]: Connection closed by 203.150.107.222 port 46218 [preauth]
Jun 29 08:34:58 ip-172-31-42-240.eu-west-2.compute.internal sshd[2963]: Invalid user craft from 203.150.107.222 port 36002
Jun 29 08:34:58 ip-172-31-42-240.eu-west-2.compute.internal sshd[2963]: input_userauth_request: invalid user craft [preauth]
Jun 29 08:34:59 ip-172-31-42-240.eu-west-2.compute.internal sshd[2963]: Connection closed by 203.150.107.222 port 36002 [preauth]
Jun 29 08:35:04 ip-172-31-42-240.eu-west-2.compute.internal sshd[2966]: Invalid user debug from 203.150.107.222 port 42704
Jun 29 08:35:04 ip-172-31-42-240.eu-west-2.compute.internal sshd[2966]: input_userauth_request: invalid user debug [preauth]
Jun 29 08:35:04 ip-172-31-42-240.eu-west-2.compute.internal sshd[2966]: Connection closed by 203.150.107.222 port 42704 [preauth]
Jun 29 08:35:07 ip-172-31-42-240.eu-west-2.compute.internal sshd[2968]: Invalid user mysql from 203.150.107.222 port 56540
Jun 29 08:35:07 ip-172-31-42-240.eu-west-2.compute.internal sshd[2968]: input_userauth_request: invalid user mysql [preauth]
Jun 29 08:35:07 ip-172-31-42-240.eu-west-2.compute.internal sshd[2968]: Connection closed by 203.150.107.222 port 56540 [preauth]
Jun 29 08:35:10 ip-172-31-42-240.eu-west-2.compute.internal sshd[2970]: Invalid user orangepi from 203.150.107.222 port 46398
Jun 29 08:35:10 ip-172-31-42-240.eu-west-2.compute.internal sshd[2970]: input_userauth_request: invalid user orangepi [preauth]
Jun 29 08:35:11 ip-172-31-42-240.eu-west-2.compute.internal sshd[2970]: Connection closed by 203.150.107.222 port 46398 [preauth]
Jun 29 08:35:14 ip-172-31-42-240.eu-west-2.compute.internal sshd[2972]: Invalid user postgres from 203.150.107.222 port 47776
Jun 29 08:35:14 ip-172-31-42-240.eu-west-2.compute.internal sshd[2972]: input_userauth_request: invalid user postgres [preauth]
Jun 29 08:35:15 ip-172-31-42-240.eu-west-2.compute.internal sshd[2972]: Connection closed by 203.150.107.222 port 47776 [preauth]
Jun 29 08:35:17 ip-172-31-42-240.eu-west-2.compute.internal sshd[2974]: Invalid user appuser from 203.150.107.222 port 39390
Jun 29 08:35:17 ip-172-31-42-240.eu-west-2.compute.internal sshd[2974]: input_userauth_request: invalid user appuser [preauth]
Jun 29 08:35:18 ip-172-31-42-240.eu-west-2.compute.internal sshd[2974]: Connection closed by 203.150.107.222 port 39390 [preauth]
Jun 29 08:35:21 ip-172-31-42-240.eu-west-2.compute.internal sshd[2978]: reverse mapping checking getaddrinfo for 201-248-90-19.estatic.cantv.net [201.248.90.19] failed - POSSIBLE BREAK-IN ATTEMPT!
Jun 29 08:35:21 ip-172-31-42-240.eu-west-2.compute.internal sshd[2978]: Invalid user full from 201.248.90.19 port 58042
Jun 29 08:35:21 ip-172-31-42-240.eu-west-2.compute.internal sshd[2978]: input_userauth_request: invalid user full [preauth]
Jun 29 08:35:21 ip-172-31-42-240.eu-west-2.compute.internal sshd[2976]: Invalid user ubuntu from 203.150.107.222 port 59718
Jun 29 08:35:21 ip-172-31-42-240.eu-west-2.compute.internal sshd[2976]: input_userauth_request: invalid user ubuntu [preauth]
Jun 29 08:35:21 ip-172-31-42-240.eu-west-2.compute.internal sshd[2978]: Received disconnect from 201.248.90.19 port 58042:11: Bye Bye [preauth]
Jun 29 08:35:21 ip-172-31-42-240.eu-west-2.compute.internal sshd[2978]: Disconnected from 201.248.90.19 port 58042 [preauth]
Jun 29 08:35:21 ip-172-31-42-240.eu-west-2.compute.internal sshd[2976]: Connection closed by 203.150.107.222 port 59718 [preauth]
Jun 29 08:35:24 ip-172-31-42-240.eu-west-2.compute.internal sshd[2980]: Invalid user libuuid from 203.150.107.222 port 57038
Jun 29 08:35:24 ip-172-31-42-240.eu-west-2.compute.internal sshd[2980]: input_userauth_request: invalid user libuuid [preauth]
Jun 29 08:35:24 ip-172-31-42-240.eu-west-2.compute.internal sshd[2980]: Connection closed by 203.150.107.222 port 57038 [preauth]
Jun 29 08:35:26 ip-172-31-42-240.eu-west-2.compute.internal sshd[2982]: Invalid user systemx from 203.150.107.222 port 50680
Jun 29 08:35:26 ip-172-31-42-240.eu-west-2.compute.internal sshd[2982]: input_userauth_request: invalid user systemx [preauth]
Jun 29 08:35:26 ip-172-31-42-240.eu-west-2.compute.internal sshd[2982]: Connection closed by 203.150.107.222 port 50680 [preauth]
Jun 29 08:35:46 ip-172-31-42-240.eu-west-2.compute.internal sshd[2987]: Invalid user user1 from 203.150.107.222 port 42412
Jun 29 08:35:46 ip-172-31-42-240.eu-west-2.compute.internal sshd[2987]: input_userauth_request: invalid user user1 [preauth]
Jun 29 08:35:47 ip-172-31-42-240.eu-west-2.compute.internal sshd[2987]: Connection closed by 203.150.107.222 port 42412 [preauth]
Jun 29 08:35:53 ip-172-31-42-240.eu-west-2.compute.internal sshd[2991]: Invalid user amanda from 203.150.107.222 port 52566
Jun 29 08:35:53 ip-172-31-42-240.eu-west-2.compute.internal sshd[2991]: input_userauth_request: invalid user amanda [preauth]
Jun 29 08:35:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[2991]: Connection closed by 203.150.107.222 port 52566 [preauth]
Jun 29 08:35:55 ip-172-31-42-240.eu-west-2.compute.internal sshd[2984]: Invalid user systemd from 203.150.107.222 port 40830
Jun 29 08:35:55 ip-172-31-42-240.eu-west-2.compute.internal sshd[2984]: input_userauth_request: invalid user systemd [preauth]
Jun 29 08:35:55 ip-172-31-42-240.eu-west-2.compute.internal sshd[2984]: Connection closed by 203.150.107.222 port 40830 [preauth]
Jun 29 08:35:56 ip-172-31-42-240.eu-west-2.compute.internal sshd[2993]: Connection closed by 203.150.107.222 port 41204 [preauth]
Jun 29 08:35:57 ip-172-31-42-240.eu-west-2.compute.internal sshd[2996]: Invalid user liubin from 157.230.55.156 port 42536
Jun 29 08:35:57 ip-172-31-42-240.eu-west-2.compute.internal sshd[2996]: input_userauth_request: invalid user liubin [preauth]
Jun 29 08:35:57 ip-172-31-42-240.eu-west-2.compute.internal sshd[2996]: Received disconnect from 157.230.55.156 port 42536:11: Bye Bye [preauth]
Jun 29 08:35:57 ip-172-31-42-240.eu-west-2.compute.internal sshd[2996]: Disconnected from 157.230.55.156 port 42536 [preauth]
Jun 29 08:36:00 ip-172-31-42-240.eu-west-2.compute.internal sshd[2995]: Invalid user junkbust from 203.150.107.222 port 53966
Jun 29 08:36:00 ip-172-31-42-240.eu-west-2.compute.internal sshd[2995]: input_userauth_request: invalid user junkbust [preauth]
Jun 29 08:36:00 ip-172-31-42-240.eu-west-2.compute.internal sshd[2995]: Connection closed by 203.150.107.222 port 53966 [preauth]
Jun 29 08:36:01 ip-172-31-42-240.eu-west-2.compute.internal sshd[3001]: Invalid user bitwarden from 209.38.225.232 port 47812
Jun 29 08:36:01 ip-172-31-42-240.eu-west-2.compute.internal sshd[3001]: input_userauth_request: invalid user bitwarden [preauth]
Jun 29 08:36:01 ip-172-31-42-240.eu-west-2.compute.internal sshd[3001]: Received disconnect from 209.38.225.232 port 47812:11: Bye Bye [preauth]
Jun 29 08:36:01 ip-172-31-42-240.eu-west-2.compute.internal sshd[3001]: Disconnected from 209.38.225.232 port 47812 [preauth]
Jun 29 08:36:02 ip-172-31-42-240.eu-west-2.compute.internal sshd[2999]: Invalid user lighthouse from 203.150.107.222 port 57318
Jun 29 08:36:02 ip-172-31-42-240.eu-west-2.compute.internal sshd[2999]: input_userauth_request: invalid user lighthouse [preauth]
Jun 29 08:36:03 ip-172-31-42-240.eu-west-2.compute.internal sshd[2999]: Connection closed by 203.150.107.222 port 57318 [preauth]
Jun 29 08:36:11 ip-172-31-42-240.eu-west-2.compute.internal sshd[3005]: Invalid user test from 203.150.107.222 port 58476
Jun 29 08:36:11 ip-172-31-42-240.eu-west-2.compute.internal sshd[3005]: input_userauth_request: invalid user test [preauth]
Jun 29 08:36:12 ip-172-31-42-240.eu-west-2.compute.internal sshd[2989]: Connection closed by 203.150.107.222 port 40058 [preauth]
Jun 29 08:36:29 ip-172-31-42-240.eu-west-2.compute.internal sshd[3005]: Connection closed by 203.150.107.222 port 58476 [preauth]
Jun 29 08:36:30 ip-172-31-42-240.eu-west-2.compute.internal sshd[3003]: Connection closed by 203.150.107.222 port 48434 [preauth]
Jun 29 08:36:34 ip-172-31-42-240.eu-west-2.compute.internal sshd[3007]: Invalid user sshadmin from 203.150.107.222 port 52232
Jun 29 08:36:34 ip-172-31-42-240.eu-west-2.compute.internal sshd[3007]: input_userauth_request: invalid user sshadmin [preauth]
Jun 29 08:36:35 ip-172-31-42-240.eu-west-2.compute.internal sshd[3007]: Connection closed by 203.150.107.222 port 52232 [preauth]
Jun 29 08:36:36 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 128390ms.
Jun 29 08:36:46 ip-172-31-42-240.eu-west-2.compute.internal sshd[3009]: Connection closed by 203.150.107.222 port 50738 [preauth]
Jun 29 08:37:14 ip-172-31-42-240.eu-west-2.compute.internal sshd[3012]: Invalid user mysql_admin from 203.150.107.222 port 45542
Jun 29 08:37:14 ip-172-31-42-240.eu-west-2.compute.internal sshd[3012]: input_userauth_request: invalid user mysql_admin [preauth]
Jun 29 08:37:14 ip-172-31-42-240.eu-west-2.compute.internal sshd[3012]: Connection closed by 203.150.107.222 port 45542 [preauth]
Jun 29 08:37:44 ip-172-31-42-240.eu-west-2.compute.internal sshd[3060]: reverse mapping checking getaddrinfo for 138-204-188-51.dynamic.wstelecom.net [138.204.188.51] failed - POSSIBLE BREAK-IN ATTEMPT!
Jun 29 08:37:44 ip-172-31-42-240.eu-west-2.compute.internal sshd[3060]: Invalid user cent from 138.204.188.51 port 45708
Jun 29 08:37:44 ip-172-31-42-240.eu-west-2.compute.internal sshd[3060]: input_userauth_request: invalid user cent [preauth]
Jun 29 08:37:44 ip-172-31-42-240.eu-west-2.compute.internal sshd[3060]: Received disconnect from 138.204.188.51 port 45708:11: Bye Bye [preauth]
Jun 29 08:37:44 ip-172-31-42-240.eu-west-2.compute.internal sshd[3060]: Disconnected from 138.204.188.51 port 45708 [preauth]
Jun 29 08:37:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[3063]: Address 68.183.145.59 maps to bluediamond.dcclients.com, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
Jun 29 08:37:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[3063]: Received disconnect from 68.183.145.59 port 43842:11: Bye Bye [preauth]
Jun 29 08:37:54 ip-172-31-42-240.eu-west-2.compute.internal sshd[3063]: Disconnected from 68.183.145.59 port 43842 [preauth]
Jun 29 08:38:25 ip-172-31-42-240.eu-west-2.compute.internal sshd[2667]: Received disconnect from 175.140.128.54 port 61928:11: disconnected by user
Jun 29 08:38:25 ip-172-31-42-240.eu-west-2.compute.internal sshd[2667]: Disconnected from 175.140.128.54 port 61928
Jun 29 08:38:25 ip-172-31-42-240.eu-west-2.compute.internal sshd[2623]: pam_unix(sshd:session): session closed for user ec2-user
Jun 29 08:38:25 ip-172-31-42-240.eu-west-2.compute.internal systemd-logind[2614]: Removed session 24569.
-- Subject: Session 24569 has been terminated
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
--
-- A session with the ID 24569 has been terminated.
Jun 29 08:38:45 ip-172-31-42-240.eu-west-2.compute.internal dhclient[2924]: XMT: Solicit on eth0, interval 125550ms.
Jun 29 08:38:53 ip-172-31-42-240.eu-west-2.compute.internal sshd[3067]: Invalid user dev from 202.125.94.212 port 57413
Jun 29 08:38:53 ip-172-31-42-240.eu-west-2.compute.internal sshd[3067]: input_userauth_request: invalid user dev [preauth]
Jun 29 08:38:53 ip-172-31-42-240.eu-west-2.compute.internal sshd[3067]: Received disconnect from 202.125.94.212 port 57413:11: Bye Bye [preauth]
Jun 29 08:38:53 ip-172-31-42-240.eu-west-2.compute.internal sshd[3067]: Disconnected from 202.125.94.212 port 57413 [preauth]
Jun 29 08:39:02 ip-172-31-42-240.eu-west-2.compute.internal sshd[3069]: Invalid user nikolas from 142.93.243.85 port 34226
Jun 29 08:39:02 ip-172-31-42-240.eu-west-2.compute.internal sshd[3069]: input_userauth_request: invalid user nikolas [preauth]
Jun 29 08:39:02 ip-172-31-42-240.eu-west-2.compute.internal sshd[3069]: Received disconnect from 142.93.243.85 port 34226:11: Bye Bye [preauth]
Jun 29 08:39:02 ip-172-31-42-240.eu-west-2.compute.internal sshd[3069]: Disconnected from 142.93.243.85 port 34226 [preauth]
Jun 29 08:39:32 ip-172-31-42-240.eu-west-2.compute.internal sshd[3073]: reverse mapping checking getaddrinfo for 201-248-90-19.estatic.cantv.net [201.248.90.19] failed - POSSIBLE BREAK-IN ATTEMPT!
Jun 29 08:39:32 ip-172-31-42-240.eu-west-2.compute.internal sshd[3073]: Invalid user mysql from 201.248.90.19 port 58048
Jun 29 08:39:32 ip-172-31-42-240.eu-west-2.compute.internal sshd[3073]: input_userauth_request: invalid user mysql [preauth]
Jun 29 08:39:32 ip-172-31-42-240.eu-west-2.compute.internal sshd[3073]: Received disconnect from 201.248.90.19 port 58048:11: Bye Bye [preauth]
Jun 29 08:39:32 ip-172-31-42-240.eu-west-2.compute.internal sshd[3073]: Disconnected from 201.248.90.19 port 58048 [preauth]
Jun 29 08:40:01 ip-172-31-42-240.eu-west-2.compute.internal systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd