rentaiming
2024-07-08 8e6989e09a2cc4046fd6985b18f715f98f45e1c7
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
09:00:35.565 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:00:38.487 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0
09:00:38.696 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 129 ms to scan 1 urls, producing 3 keys and 6 values 
09:00:38.809 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 42 ms to scan 1 urls, producing 4 keys and 9 values 
09:00:38.853 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 3 keys and 10 values 
09:00:38.933 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 72 ms to scan 14 urls, producing 0 keys and 0 values 
09:00:38.971 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 34 ms to scan 1 urls, producing 1 keys and 5 values 
09:00:39.019 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 37 ms to scan 1 urls, producing 1 keys and 7 values 
09:00:39.070 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 1 urls, producing 2 keys and 8 values 
09:00:39.165 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 80 ms to scan 14 urls, producing 0 keys and 0 values 
09:00:39.168 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:00:39.171 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1485179287
09:00:39.173 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/136011184
09:00:39.175 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:00:39.179 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:00:39.207 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:00:44.520 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:00:47.538 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:00:50.545 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:00:50.547 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:00:50.548 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1832101486
09:00:52.156 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:00:56.696 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:00:59.322 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:00:59.495 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:00:59.523 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:00:59.940 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:00.643 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0
09:01:00.643 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:01:00.643 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1485179287
09:01:00.644 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/136011184
09:01:00.644 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:01:00.645 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:01:00.645 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:01:03.261 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:03.652 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:01:06.663 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:01:06.679 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:09.672 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:01:09.672 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:01:09.673 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1832101486
09:01:10.208 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:10.584 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:01:13.145 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718326869477_192.168.110.235_51251
09:01:13.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Notify connected event to listeners.
09:01:15.858 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:16.880 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:01:18.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Server healthy check fail, currentConnection = 1718326869477_192.168.110.235_51251
09:01:18.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:01:19.127 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:20.380 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8a213771-a6e6-4156-a3c9-8f90cfa6561f
09:01:20.381 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] RpcClient init label, labels = {module=naming, source=sdk}
09:01:20.386 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:01:20.387 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:01:20.389 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:01:20.389 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:01:22.464 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:22.622 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718326879110_192.168.110.235_51351
09:01:22.623 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718326869477_192.168.110.235_51251
09:01:22.624 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718326869477_192.168.110.235_51251
09:01:22.624 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Notify disconnected event to listeners
09:01:22.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Notify connected event to listeners.
09:01:23.404 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:01:25.918 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:26.413 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:01:29.425 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:01:29.425 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:01:29.429 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1832101486
09:01:29.442 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:29.766 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:01:30.936 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:01:30.938 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:01:30.971 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:01:30.971 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:01:30.972 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:01:33.068 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:34.174 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:01:34.175 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:01:34.176 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:01:34.540 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:01:35.570 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:36.016 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Server healthy check fail, currentConnection = 1718326879110_192.168.110.235_51351
09:01:36.016 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:01:36.879 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:38.798 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:40.716 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:42.144 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:42.210 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:44.642 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:45.473 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:45.571 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:48.653 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:48.794 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:49.089 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:52.222 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:52.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:52.772 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:55.764 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:56.439 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:01:56.543 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718326913873_192.168.110.235_51587
09:01:56.543 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718326879110_192.168.110.235_51351
09:01:56.543 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718326879110_192.168.110.235_51351
09:01:56.544 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Notify disconnected event to listeners
09:01:56.560 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Notify connected event to listeners.
09:01:57.011 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:02:00.278 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:02:01.405 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:02:04.493 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:02:04.604 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Server healthy check fail, currentConnection = 1718326913873_192.168.110.235_51587
09:02:04.604 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:02:05.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718326922086_192.168.110.235_51658
09:02:05.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718326913873_192.168.110.235_51587
09:02:05.272 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718326913873_192.168.110.235_51587
09:02:05.277 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Notify disconnected event to listeners
09:02:05.306 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5ed74ce-25e2-418a-a0d8-ec41fcb6dd7a_config-0] Notify connected event to listeners.
09:02:05.840 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:02:08.829 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:02:09.068 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718326925828_192.168.110.235_51681
09:02:09.069 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a1bd01d-e709-4607-8c58-93d4deae88ac_config-0] Notify connected event to listeners.
09:02:10.138 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Success to connect a server [192.168.110.235:8848], connectionId = 1718326927407_192.168.110.235_51705
09:02:10.138 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Notify connected event to listeners.
09:02:12.553 [nacos-grpc-client-executor-20] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Receive server push request, request = NotifySubscriberRequest, requestId = 3
09:02:12.593 [nacos-grpc-client-executor-20] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a213771-a6e6-4156-a3c9-8f90cfa6561f] Ack server push request, request = NotifySubscriberRequest, requestId = 3
09:02:16.637 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:02:17.688 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
09:02:22.726 [timeoutChecker_1_1] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x23a49b40, L:/192.168.110.235:51814 - R:/192.168.110.188:8091]
09:02:22.742 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 1575 ms, version:1.7.0,role:TMROLE,channel:[id: 0x23a49b40, L:/192.168.110.235:51814 - R:/192.168.110.188:8091]
09:02:25.278 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:02:25.889 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
09:07:17.160 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:07:19.007 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1945e575-01de-4c50-b29d-23f3a03f7b96_config-0
09:07:19.145 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 88 ms to scan 1 urls, producing 3 keys and 6 values 
09:07:19.244 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 44 ms to scan 1 urls, producing 4 keys and 9 values 
09:07:19.279 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 3 keys and 10 values 
09:07:19.336 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 49 ms to scan 14 urls, producing 0 keys and 0 values 
09:07:19.359 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 1 keys and 5 values 
09:07:19.390 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 1 urls, producing 1 keys and 7 values 
09:07:19.422 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 1 urls, producing 2 keys and 8 values 
09:07:19.491 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 63 ms to scan 14 urls, producing 0 keys and 0 values 
09:07:19.494 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:07:19.495 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1069571746
09:07:19.496 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2089360295
09:07:19.499 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:07:19.501 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:07:19.522 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:07:22.779 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718327239967_192.168.110.235_53100
09:07:22.780 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify connected event to listeners.
09:07:22.781 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:07:22.782 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/238612663
09:07:22.973 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:07:27.964 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:07:28.130 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:07:28.146 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:07:28.351 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9005cd71-6af9-4a8b-9c64-068c00d11163_config-0
09:07:28.352 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:07:28.352 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1069571746
09:07:28.353 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2089360295
09:07:28.353 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:07:28.353 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:07:28.354 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:07:28.492 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718327245831_192.168.110.235_53111
09:07:28.492 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify connected event to listeners.
09:07:28.492 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:07:28.493 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/238612663
09:07:28.689 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:07:29.112 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:07:29.349 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a670bc67-ce1c-4af2-b70d-d9c046439818
09:07:29.349 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] RpcClient init label, labels = {module=naming, source=sdk}
09:07:29.352 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:07:29.353 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:07:29.354 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:07:29.354 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:07:29.476 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718327246818_192.168.110.235_53116
09:07:29.476 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify connected event to listeners.
09:07:29.476 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:07:29.476 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/238612663
09:07:29.529 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:07:30.037 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Receive server push request, request = NotifySubscriberRequest, requestId = 9
09:07:30.042 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Ack server push request, request = NotifySubscriberRequest, requestId = 9
09:07:30.085 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
09:07:31.280 [main] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x5bdd3a62, L:/192.168.110.235:53124 - R:/192.168.110.188:8091]
09:07:31.294 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 135 ms, version:1.7.0,role:TMROLE,channel:[id: 0x5bdd3a62, L:/192.168.110.235:53124 - R:/192.168.110.188:8091]
09:07:31.296 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:07:31.390 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:07:31.391 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:07:31.412 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:07:31.412 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:07:31.412 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:07:33.059 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:07:33.059 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:07:33.060 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:07:33.325 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:07:34.251 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:07:34.253 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:07:34.253 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:07:43.216 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:07:46.795 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:07:46.971 [redisson-netty-4-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:07:47.126 [redisson-netty-4-18] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:07:49.711 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 89a65553-55fd-43e7-abc3-1239d20b7ae3
09:07:49.712 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] RpcClient init label, labels = {module=naming, source=sdk}
09:07:49.713 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:07:49.713 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:07:49.713 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:07:49.714 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:07:49.828 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718327267176_192.168.110.235_53459
09:07:49.828 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Notify connected event to listeners.
09:07:49.828 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:07:49.829 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/238612663
09:07:49.841 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:07:49.882 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:07:50.348 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Receive server push request, request = NotifySubscriberRequest, requestId = 12
09:07:50.352 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Ack server push request, request = NotifySubscriberRequest, requestId = 12
09:07:51.409 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 36.512 seconds (JVM running for 40.581)
09:07:51.449 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:07:51.480 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:07:51.493 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:07:53.593 [RMI TCP Connection(5)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:08:31.420 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:08:31.422 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
09:08:31.432 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x146d9b62, L:/192.168.110.235:53539 - R:/192.168.110.188:8091]
09:08:31.432 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 7 ms, version:1.7.0,role:RMROLE,channel:[id: 0x146d9b62, L:/192.168.110.235:53539 - R:/192.168.110.188:8091]
09:17:08.694 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Server healthy check fail, currentConnection = 1718327245831_192.168.110.235_53111
09:17:08.695 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:17:08.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718327826160_192.168.110.235_53750
09:17:08.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718327245831_192.168.110.235_53111
09:17:08.816 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718327245831_192.168.110.235_53111
09:17:08.828 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify disconnected event to listeners
09:17:08.859 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify connected event to listeners.
09:51:51.186 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_giS_JHJUVPR0a3zi5pHep8lWNrTXfp3X_e0bbpIZIxjU0jSpTCN2SPYkbzbkLZ9rOiDeigVl-EF9hU88RD3alUXXy5q6mDts6NlRiRbmm0Tzq5jyaUVde0Xjrv4CFSfAIASVI","expires_in":7200}
09:51:52.896 [nacos-grpc-client-executor-542] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Receive server push request, request = NotifySubscriberRequest, requestId = 34
09:51:52.896 [nacos-grpc-client-executor-542] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Ack server push request, request = NotifySubscriberRequest, requestId = 34
09:55:23.184 [http-nio-9205-exec-5] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=L7axjS5s4TWQB7AAVJUzF+27+3/ff0TmpLZTl1+RkUypGuUUVwdm2NB2sakXDCVBs3gzIq/0hwa9HcPrjD4h/6rJV/1ojBSxhCf2Y8wHmWIv9bJtS7yx7I/iQToLJgbJMq6ezLXIFjS43ps7fB2lltT9EHxeT7eBlC5zYmx9vzsnxE62+hfrhKvB5RAyxwGm5x3AovLY2wmb+sESgkA3VzyvRzNNE72iWEMRNuYxV+le7gm9kLwo02MFgHbPScloutyG40me3PxUlsKJRcBBI51N5QKUq0pkCWHHPgF3sVrxHfzAeHZH//IsOmLFwHkOkFXB2FLzfk4ncu++Ic0ksA==&version=1.0&app_id=2021004150664294&sign_type=RSA2&timestamp=2024-06-14 09:55:22^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=85e05b1e62354708a348b82cc42cRX20^_^41ms,463ms,54ms^_^trace_id:0b22834317183301230103054e2dea
11:54:35.172 [lettuce-nioEventLoop-7-1] INFO  i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380)
    at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:259)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run(Thread.java:748)
11:54:35.337 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
11:54:35.545 [lettuce-nioEventLoop-7-3] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
12:20:37.371 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Server healthy check fail, currentConnection = 1718327826160_192.168.110.235_53750
12:20:37.371 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:20:37.457 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Server healthy check fail, currentConnection = 1718327239967_192.168.110.235_53100
12:20:37.457 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:20:37.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718338834947_192.168.110.235_64110
12:20:37.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718338834981_192.168.110.235_64111
12:20:37.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718327239967_192.168.110.235_53100
12:20:37.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718327826160_192.168.110.235_53750
12:20:37.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718327239967_192.168.110.235_53100
12:20:37.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718327826160_192.168.110.235_53750
12:20:37.674 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify disconnected event to listeners
12:20:37.827 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify disconnected event to listeners
12:20:37.838 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify connected event to listeners.
12:20:37.881 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify connected event to listeners.
12:50:12.612 [nacos-grpc-client-executor-2787] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Receive server push request, request = NotifySubscriberRequest, requestId = 166
12:50:12.645 [nacos-grpc-client-executor-2787] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Ack server push request, request = NotifySubscriberRequest, requestId = 166
12:50:15.660 [nacos-grpc-client-executor-2788] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Receive server push request, request = NotifySubscriberRequest, requestId = 172
12:50:15.664 [nacos-grpc-client-executor-2788] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Ack server push request, request = NotifySubscriberRequest, requestId = 172
14:41:16.388 [lettuce-nioEventLoop-7-3] INFO  i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380)
    at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:259)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run(Thread.java:748)
14:41:16.435 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
14:41:16.513 [lettuce-nioEventLoop-7-4] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
14:50:44.490 [lettuce-nioEventLoop-7-4] INFO  i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380)
    at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:259)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run(Thread.java:748)
14:50:44.559 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
14:50:44.559 [lettuce-nioEventLoop-7-2] INFO  i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380)
    at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:259)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run(Thread.java:748)
14:50:46.253 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
14:50:48.484 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x146d9b62, L:/192.168.110.235:53539 - R:/192.168.110.188:8091]
14:50:48.484 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x5bdd3a62, L:/192.168.110.235:53124 - R:/192.168.110.188:8091]
14:50:48.485 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Server healthy check fail, currentConnection = 1718327267176_192.168.110.235_53459
14:50:48.485 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Try to reconnect to a new server, server is  not appointed, will choose a random server.
14:50:48.711 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,480] - remove exception rm channel:[id: 0x146d9b62, L:/192.168.110.235:53539 - R:/192.168.110.188:8091]
14:50:48.714 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,480] - remove exception rm channel:[id: 0x5bdd3a62, L:/192.168.110.235:53124 - R:/192.168.110.188:8091]
14:50:48.714 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x146d9b62, L:/192.168.110.235:53539 ! R:/192.168.110.188:8091]
14:50:48.714 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x146d9b62, L:/192.168.110.235:53539 ! R:/192.168.110.188:8091]
14:50:48.714 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x5bdd3a62, L:/192.168.110.235:53124 ! R:/192.168.110.188:8091]
14:50:48.714 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x146d9b62, L:/192.168.110.235:53539 ! R:/192.168.110.188:8091]
14:50:48.714 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x5bdd3a62, L:/192.168.110.235:53124 ! R:/192.168.110.188:8091]
14:50:48.715 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x5bdd3a62, L:/192.168.110.235:53124 ! R:/192.168.110.188:8091]
14:50:48.855 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x146d9b62, L:/192.168.110.235:53539 ! R:/192.168.110.188:8091]) will closed
14:50:48.855 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5bdd3a62, L:/192.168.110.235:53124 ! R:/192.168.110.188:8091]) will closed
14:50:48.857 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5bdd3a62, L:/192.168.110.235:53124 ! R:/192.168.110.188:8091]) will closed
14:50:48.857 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x146d9b62, L:/192.168.110.235:53539 ! R:/192.168.110.188:8091]) will closed
14:50:49.152 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:50:49.198 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:50:51.088 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Server healthy check fail, currentConnection = 1718338834981_192.168.110.235_64111
14:50:51.089 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
14:50:51.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Server healthy check fail, currentConnection = 1718338834947_192.168.110.235_64110
14:50:51.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
14:50:51.414 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:50:51.435 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x146d9b62, L:/192.168.110.235:53539 ! R:/192.168.110.188:8091]
14:50:51.464 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x146d9b62, L:/192.168.110.235:53539 ! R:/192.168.110.188:8091]
14:50:51.469 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:50:51.727 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Server healthy check fail, currentConnection = 1718327246818_192.168.110.235_53116
14:50:51.728 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Try to reconnect to a new server, server is  not appointed, will choose a random server.
14:50:54.938 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:50:56.334 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:50:57.219 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:50:57.234 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:50:57.325 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:50:57.851 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:50:58.169 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:50:59.233 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:50:59.233 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:50:59.256 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x26d2ac1e]) will closed
14:51:00.428 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:00.539 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:01.067 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:01.477 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0665904a]) will closed
14:51:01.479 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:01.479 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:01.495 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:03.739 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:03.861 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:04.379 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:04.908 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:06.435 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:07.154 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:07.277 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:07.330 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:07.794 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:08.429 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:09.236 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaf1af3fd]) will closed
14:51:09.237 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:09.238 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:10.684 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:10.808 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:11.322 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:11.493 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x27e37c6c]) will closed
14:51:11.494 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:11.494 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:12.051 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:14.294 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:14.419 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:14.928 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:15.768 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:16.533 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:17.438 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:18.012 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:18.127 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:18.633 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:19.243 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x83230aef]) will closed
14:51:19.245 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:19.245 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:19.586 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:21.503 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe4c712e3]) will closed
14:51:21.504 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:21.504 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:21.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:21.945 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:22.460 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:23.504 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:25.733 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:25.859 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:26.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:26.631 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:27.529 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:27.534 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:29.258 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa1e5c5fd]) will closed
14:51:29.262 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:29.262 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:29.752 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:29.877 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:30.424 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:31.513 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x263bb1b6]) will closed
14:51:31.514 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:31.514 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:31.654 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:33.858 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:33.997 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:34.548 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:35.873 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:36.735 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:37.629 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:38.068 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:38.208 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:38.782 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:39.269 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc8d24a5c]) will closed
14:51:39.270 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:39.270 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:40.188 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:41.523 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x458d1085]) will closed
14:51:41.524 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:41.524 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:42.383 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:42.525 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:43.104 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:44.612 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:46.811 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:46.834 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:46.942 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:47.515 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:47.740 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:49.138 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:49.273 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4c767942]) will closed
14:51:49.275 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:49.275 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:51.332 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:51.473 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:51.527 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1c4fda0a]) will closed
14:51:51.527 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:51.527 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:51:52.034 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:53.753 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:55.954 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:56.094 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:56.653 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:57.030 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:57.935 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:51:58.465 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:51:59.288 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe1c3d417]) will closed
14:51:59.290 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:51:59.290 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:00.660 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:00.818 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:01.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:01.530 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2307b634]) will closed
14:52:01.531 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:01.532 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:03.286 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:05.482 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:05.635 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:06.190 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:07.330 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:08.211 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:08.229 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:09.297 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc96d1bac]) will closed
14:52:09.298 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:09.298 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:10.397 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:10.553 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:11.113 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:11.533 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x293ae60e]) will closed
14:52:11.535 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:11.537 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:13.219 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:15.431 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:15.567 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:16.127 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:17.931 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:18.331 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:18.829 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:19.306 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xcdc272d1]) will closed
14:52:19.308 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:19.308 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:20.558 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:20.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:21.245 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:21.544 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9798839e]) will closed
14:52:21.545 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:21.545 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:23.547 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:25.782 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:25.924 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:26.470 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:28.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:29.034 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:29.316 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x338e1203]) will closed
14:52:29.319 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:29.319 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:29.932 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:31.104 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:31.230 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:31.556 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc5029352]) will closed
14:52:31.557 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:31.558 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:31.791 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:34.289 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:36.519 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:36.644 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:37.204 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:39.327 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe120485c]) will closed
14:52:39.329 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:39.329 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:39.808 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:41.132 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:41.571 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ef8a212]) will closed
14:52:41.572 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:41.572 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:42.029 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:42.040 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:42.166 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:42.727 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:43.379 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x50da4b7c]) will closed
14:52:43.650 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd3104c7b]) will closed
14:52:44.472 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:46.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:46.901 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:47.438 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:47.837 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:48.234 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:49.095 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:49.096 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:49.211 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:51.143 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2686c067]) will closed
14:52:51.422 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:51.423 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:52:51.473 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:51.694 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:52.199 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:53.478 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9aa71db9]) will closed
14:52:55.029 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:57.292 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:57.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:58.023 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:52:58.133 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:58.530 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:52:59.099 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:52:59.100 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:00.940 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 29 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:01.420 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:01.420 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:03.219 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:03.438 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:03.957 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 29 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:06.967 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 30 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:09.111 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa3eb830b]) will closed
14:53:09.112 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:09.113 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:09.239 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:09.455 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:09.981 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 30 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:11.436 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xce120cfb]) will closed
14:53:11.437 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:11.438 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:13.084 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 31 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:15.351 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:15.575 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:16.100 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 31 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:19.120 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9880337d]) will closed
14:53:19.121 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:19.121 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:19.307 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 32 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:21.440 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6788826c]) will closed
14:53:21.442 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:21.442 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:21.567 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:21.783 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:22.315 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 32 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:24.529 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:53:24.930 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:53:25.621 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 33 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:27.886 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:28.107 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:28.635 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 33 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:29.131 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xecadb4f9]) will closed
14:53:29.133 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:29.133 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:31.453 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdde5482e]) will closed
14:53:31.454 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:31.454 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:32.034 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 34 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:34.312 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:34.531 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:35.064 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 34 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:38.558 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 35 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:39.140 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8675004a]) will closed
14:53:39.143 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:39.143 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:40.834 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:41.053 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:41.459 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1f77eff4]) will closed
14:53:41.460 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:41.460 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:41.588 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 35 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:45.172 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 36 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:47.444 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 36 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:47.662 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 36 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:48.205 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 36 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:49.154 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ed68cdd]) will closed
14:53:49.158 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:49.158 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:51.462 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x196ac8bd]) will closed
14:53:51.463 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:51.463 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:53:51.901 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 37 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:54.160 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 37 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:54.377 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 37 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:54.926 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 37 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:58.717 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 38 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:53:59.162 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5fdc4b8a]) will closed
14:53:59.164 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:53:59.164 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:00.980 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 38 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:01.199 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 38 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:01.479 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1497b966]) will closed
14:54:01.481 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:01.481 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:01.741 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 38 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:04.629 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:54:05.032 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:54:05.638 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 39 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:07.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 39 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:08.126 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 39 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:08.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 39 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:09.165 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:09.166 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:09.166 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xde025816]) will closed
14:54:11.491 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd1fa6739]) will closed
14:54:11.492 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:11.494 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:12.659 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 40 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:14.923 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 40 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:15.136 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 40 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:15.666 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 40 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:19.174 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2b9e69a2]) will closed
14:54:19.178 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:19.178 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:19.780 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 41 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:21.499 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe728b2e6]) will closed
14:54:21.500 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:21.500 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:22.042 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 41 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:22.244 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 41 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:22.889 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 41 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:27.003 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 42 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:29.182 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6865c505]) will closed
14:54:29.183 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:29.183 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:29.260 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 42 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:29.465 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 42 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:30.098 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 42 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:31.509 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xae683723]) will closed
14:54:31.509 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:31.509 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:34.318 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 43 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:36.582 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 43 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:36.782 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 43 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:37.423 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 43 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:39.192 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x00a4bd18]) will closed
14:54:39.194 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:39.195 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:41.519 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x93dddb74]) will closed
14:54:41.520 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:41.520 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:41.737 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 44 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:43.995 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 44 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:44.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 44 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:44.731 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:54:44.736 [lettuce-nioEventLoop-7-5] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
14:54:44.840 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 44 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:45.132 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
14:54:45.138 [lettuce-nioEventLoop-7-6] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
14:54:49.210 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x27fda405]) will closed
14:54:49.211 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:49.212 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:49.258 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 45 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:51.512 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 45 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:51.527 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0ae54225]) will closed
14:54:51.528 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:51.528 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:51.718 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 45 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:52.360 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 45 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:56.871 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 46 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:59.132 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 46 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:59.226 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbcd4ccb1]) will closed
14:54:59.226 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:54:59.226 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:54:59.337 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 46 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:54:59.974 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 46 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:01.538 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x565e8cf2]) will closed
14:55:01.539 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:01.539 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:04.591 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 47 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:06.854 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 47 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:07.053 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 47 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:07.696 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 47 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:09.227 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x624c6eb0]) will closed
14:55:09.228 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:09.228 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:11.555 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x979b26a8]) will closed
14:55:11.556 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:11.556 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:12.415 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 48 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:14.675 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 48 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:14.873 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 48 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:15.515 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 48 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:19.229 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:19.229 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:19.230 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x186e8778]) will closed
14:55:20.335 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 49 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:21.568 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8ef88d40]) will closed
14:55:21.569 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:21.569 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:22.592 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 49 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:22.796 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 49 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:23.447 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 49 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:28.359 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 50 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:29.244 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x96aa2f21]) will closed
14:55:29.245 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:29.245 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:30.615 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 50 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:30.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 50 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:31.458 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 50 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:31.583 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xae592622]) will closed
14:55:31.583 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:31.584 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:36.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 51 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:38.642 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 51 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:38.831 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 51 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:39.247 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5b1ff0d2]) will closed
14:55:39.249 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:39.249 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:39.480 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 51 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:41.587 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb77a6423]) will closed
14:55:41.591 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:41.592 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:44.398 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 52 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:46.652 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 52 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:46.851 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 52 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:47.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 52 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:49.251 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a9b3b31]) will closed
14:55:49.251 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:49.251 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:51.606 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4a96f8e6]) will closed
14:55:51.606 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:51.607 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:55:52.421 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 53 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:54.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 53 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:54.859 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 53 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:55.530 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 53 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:55:59.259 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9b48b876]) will closed
14:55:59.260 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:55:59.260 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:00.453 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 54 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:01.608 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x315fd0cd]) will closed
14:56:01.610 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:01.610 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:02.695 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 54 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:02.884 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 54 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:03.538 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 54 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:08.458 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 55 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:09.265 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xee90a630]) will closed
14:56:09.266 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:09.267 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:10.713 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 55 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:10.904 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 55 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:11.551 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 55 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:11.623 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8857a486]) will closed
14:56:11.624 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:11.626 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:16.473 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 56 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:18.730 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 56 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:18.915 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 56 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:19.282 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4cc8191f]) will closed
14:56:19.282 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:19.283 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:19.562 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 56 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:21.628 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x94b3c014]) will closed
14:56:21.629 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:21.629 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:24.490 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 57 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:26.747 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 57 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:26.935 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 57 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:27.573 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 57 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:29.297 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1635c4aa]) will closed
14:56:29.298 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:29.298 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:31.643 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdc6c6222]) will closed
14:56:31.644 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:31.645 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:32.516 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 58 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:34.762 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 58 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:34.967 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 58 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:35.589 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 58 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:39.307 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3ea63432]) will closed
14:56:39.308 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:39.309 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:40.533 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 59 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:41.657 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa0ee1183]) will closed
14:56:41.658 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:41.658 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:42.784 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 59 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:42.989 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 59 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:43.606 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 59 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:48.546 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 60 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:49.311 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe23eb992]) will closed
14:56:49.312 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:49.312 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:50.804 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 60 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:51.021 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 60 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:51.636 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 60 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:51.666 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x862f062a]) will closed
14:56:51.667 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:51.667 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:56.570 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 61 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:58.828 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 61 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:59.050 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 61 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:56:59.317 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdd1ac89b]) will closed
14:56:59.318 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:56:59.318 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:56:59.663 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 61 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:01.680 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0c2f2683]) will closed
14:57:01.681 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:01.681 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:04.581 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 62 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:06.841 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 62 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:07.061 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 62 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:07.684 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 62 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:09.328 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4554715c]) will closed
14:57:09.332 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:09.332 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:11.696 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6af6418c]) will closed
14:57:11.699 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:11.699 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:12.605 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 63 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:14.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 63 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:15.086 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 63 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:15.718 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 63 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:19.345 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x78051d9f]) will closed
14:57:19.346 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:19.346 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:20.631 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 64 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:21.703 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3613897e]) will closed
14:57:21.706 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:21.706 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:22.885 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 64 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:23.108 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 64 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:23.725 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 64 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:28.637 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 65 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:29.357 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8e593d1c]) will closed
14:57:29.359 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:29.359 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:30.904 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 65 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:31.121 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 65 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:31.718 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x93137b45]) will closed
14:57:31.718 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:31.718 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:31.748 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 65 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:36.665 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 66 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:38.915 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 66 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:39.137 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 66 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:39.368 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1f3f532d]) will closed
14:57:39.370 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:39.370 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:39.774 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 66 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:41.719 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdafccbdd]) will closed
14:57:41.720 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:41.720 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:44.679 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 67 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:46.930 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 67 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:47.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 67 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:47.797 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 67 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:49.373 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x112956f7]) will closed
14:57:49.374 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:49.374 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:51.730 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2e90c10a]) will closed
14:57:51.730 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:51.730 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:57:52.703 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 68 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:54.951 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 68 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:55.169 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 68 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:55.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 68 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:57:59.375 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x38be86a1]) will closed
14:57:59.376 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:57:59.376 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:00.724 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 69 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:01.745 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x888c9417]) will closed
14:58:01.745 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:01.745 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:02.967 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 69 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:03.187 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 69 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:03.829 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 69 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:08.744 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 70 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:09.380 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdb2bbd0c]) will closed
14:58:09.382 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:09.382 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:10.993 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 70 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:11.209 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 70 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:11.754 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd3f77afa]) will closed
14:58:11.755 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:11.756 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:11.833 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 70 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:16.751 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 71 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:19.013 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 71 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:19.231 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 71 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:19.387 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x47e8d30e]) will closed
14:58:19.387 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:19.387 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:19.860 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 71 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:21.758 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x756dbb0c]) will closed
14:58:21.760 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:21.760 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:24.761 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 72 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:27.024 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 72 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:27.256 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 72 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:27.884 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 72 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:29.400 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x54e19cec]) will closed
14:58:29.401 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:29.401 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:31.763 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3a410b18]) will closed
14:58:31.766 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:31.767 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:32.782 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 73 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:35.030 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 73 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:35.278 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 73 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:35.894 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 73 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:39.411 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x21c98ef4]) will closed
14:58:39.412 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:39.412 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:40.792 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 74 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:41.779 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x85f65c56]) will closed
14:58:41.780 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:41.781 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:43.032 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 74 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:43.297 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 74 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:43.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 74 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:48.811 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 75 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:49.423 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x580ef0f0]) will closed
14:58:49.426 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:49.428 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:51.057 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 75 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:51.319 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 75 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:51.791 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8b1c2097]) will closed
14:58:51.792 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:51.793 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:51.932 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 75 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:56.828 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 76 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:59.087 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 76 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:59.340 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 76 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:58:59.434 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a8c1e7c]) will closed
14:58:59.435 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:58:59.436 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:58:59.945 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 76 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:01.801 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9d60830b]) will closed
14:59:01.802 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:01.802 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:04.839 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 77 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:07.095 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 77 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:07.352 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 77 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:07.955 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 77 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:09.437 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x05712cb3]) will closed
14:59:09.441 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:09.442 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:11.813 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9867c461]) will closed
14:59:11.813 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:11.814 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:12.850 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 78 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:15.117 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 78 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:15.366 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 78 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:15.973 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 78 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:19.450 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x31c12c10]) will closed
14:59:19.451 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:19.451 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:20.868 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 79 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:21.815 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1f395090]) will closed
14:59:21.816 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:21.816 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:23.128 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 79 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:23.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 79 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:23.987 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 79 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:28.881 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 80 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:29.452 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x45e65474]) will closed
14:59:29.453 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:29.454 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:31.142 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 80 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:31.408 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 80 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:31.830 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3627f3eb]) will closed
14:59:31.831 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:31.831 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:32.006 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 80 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:36.892 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 81 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:39.164 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 81 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:39.431 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 81 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:39.460 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x77abc929]) will closed
14:59:39.461 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:39.461 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:40.023 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 81 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:41.844 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5ca23489]) will closed
14:59:41.844 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:41.845 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:44.921 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 82 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:47.187 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 82 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:47.451 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 82 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:48.026 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 82 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:49.468 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe87633e8]) will closed
14:59:49.488 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:49.488 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:51.855 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5acaf1dd]) will closed
14:59:51.856 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:51.856 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
14:59:52.942 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 83 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:55.218 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 83 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:55.455 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 83 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:56.045 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 83 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
14:59:59.498 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd2de5c76]) will closed
14:59:59.501 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:59:59.501 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:00.957 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 84 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:01.863 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x78fbcd86]) will closed
15:00:01.864 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:01.864 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:03.247 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 84 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:03.481 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 84 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:04.059 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 84 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:08.974 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 85 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:09.512 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x53949fcd]) will closed
15:00:09.513 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:09.513 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:11.255 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 85 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:11.491 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 85 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:11.879 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xcf378210]) will closed
15:00:11.881 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:11.882 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:12.072 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 85 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:17.004 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 86 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:19.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 86 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:19.510 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 86 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:19.524 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6a5e59f1]) will closed
15:00:19.525 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:19.526 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:20.093 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 86 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:21.890 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe9901286]) will closed
15:00:21.892 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:21.892 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:25.027 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 87 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:27.296 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 87 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:27.528 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 87 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:28.108 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 87 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:29.527 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7153a1db]) will closed
15:00:29.527 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:29.527 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:31.901 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdbb51a76]) will closed
15:00:31.902 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:31.902 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:33.040 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 88 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:35.320 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 88 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:35.539 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 88 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:36.126 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 88 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:39.528 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9cba23c7]) will closed
15:00:39.528 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:39.529 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:41.059 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 89 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:41.904 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1742507c]) will closed
15:00:41.905 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:41.905 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:43.337 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 89 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:43.557 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 89 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:44.130 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 89 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:49.072 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 90 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:49.530 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2b41b325]) will closed
15:00:49.530 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:49.530 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:51.353 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 90 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:51.572 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 90 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:51.911 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5e2686c4]) will closed
15:00:51.913 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:51.913 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:52.149 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 90 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:57.097 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 91 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:59.370 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 91 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:00:59.541 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc49dc4f0]) will closed
15:00:59.541 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:00:59.542 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:00:59.588 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 91 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:00.162 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 91 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:01.928 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6748a287]) will closed
15:01:01.929 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:01.929 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:05.122 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 92 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:07.384 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 92 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:07.600 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 92 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:08.182 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 92 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:09.550 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6c110241]) will closed
15:01:09.552 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:09.552 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:11.944 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x15750eeb]) will closed
15:01:11.945 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:11.946 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:13.128 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 93 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:15.412 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 93 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:15.626 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 93 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:16.195 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 93 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:19.553 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0a49d232]) will closed
15:01:19.553 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:19.553 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:21.138 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 94 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:21.949 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:21.949 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:21.950 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9af0baa7]) will closed
15:01:23.435 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 94 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:23.637 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 94 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:24.203 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 94 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:29.151 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 95 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:29.565 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc7635ef6]) will closed
15:01:29.566 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:29.566 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:31.446 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 95 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:31.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 95 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:31.963 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6c435208]) will closed
15:01:31.964 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:31.964 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:32.217 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 95 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:37.165 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 96 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:39.452 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 96 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:39.581 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf2287a11]) will closed
15:01:39.582 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:39.583 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:39.654 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 96 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:40.238 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 96 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:41.968 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2dfa0fab]) will closed
15:01:41.969 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:41.969 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:45.198 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 97 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:47.473 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 97 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:47.677 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 97 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:48.250 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 97 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:49.584 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x81787f70]) will closed
15:01:49.587 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:49.588 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:51.975 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:51.976 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:01:51.987 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe7b632ac]) will closed
15:01:53.225 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 98 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:55.503 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 98 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:55.689 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 98 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:56.270 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 98 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:01:59.601 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0942dd47]) will closed
15:01:59.602 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:01:59.602 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:01.236 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 99 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:01.984 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:01.984 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:01.998 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc0925a05]) will closed
15:02:03.531 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 99 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:03.717 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 99 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:04.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 99 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:09.251 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 100 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:09.614 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1a118d8a]) will closed
15:02:09.616 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:09.616 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:11.547 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 100 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:11.729 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 100 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:11.997 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x934e308d]) will closed
15:02:11.998 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:12.000 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:12.310 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 100 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:17.262 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 101 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:19.555 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 101 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:19.627 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x87fdca9d]) will closed
15:02:19.629 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:19.629 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:19.738 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 101 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:20.329 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 101 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:22.001 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe89aae2a]) will closed
15:02:22.002 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:22.003 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:25.282 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 102 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:27.575 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 102 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:27.755 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 102 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:28.358 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 102 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:29.634 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x448cd9dd]) will closed
15:02:29.635 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:29.635 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:32.010 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ac9d71b]) will closed
15:02:32.011 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:32.011 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:33.298 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 103 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:35.598 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 103 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:35.766 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 103 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:36.381 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 103 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:39.637 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbee76626]) will closed
15:02:39.638 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:39.638 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:41.323 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 104 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:42.019 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x48d3c1a6]) will closed
15:02:42.019 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:42.019 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:43.619 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 104 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:43.794 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 104 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:44.387 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 104 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:49.325 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 105 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:49.640 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfed5197a]) will closed
15:02:49.641 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:49.641 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:51.635 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 105 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:51.808 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 105 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:52.028 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x880ff2f2]) will closed
15:02:52.029 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:52.029 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:52.402 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 105 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:57.349 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 106 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:59.655 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7078390d]) will closed
15:02:59.656 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:02:59.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 106 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:02:59.656 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:02:59.826 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 106 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:00.422 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 106 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:02.029 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:02.030 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:02.030 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x46ab612f]) will closed
15:03:05.358 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 107 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:07.671 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 107 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:07.829 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 107 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:08.444 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 107 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:09.658 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:09.660 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:09.661 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3c0c0fa3]) will closed
15:03:12.031 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x383959a4]) will closed
15:03:12.032 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:12.032 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:13.375 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 108 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:15.690 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 108 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:15.858 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 108 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:16.472 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 108 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:19.666 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4875becd]) will closed
15:03:19.668 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:19.668 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:21.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 109 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:22.047 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x16818e1e]) will closed
15:03:22.048 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:22.049 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:23.702 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 109 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:23.875 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 109 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:24.497 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 109 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:29.407 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 110 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:29.673 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa0c7435f]) will closed
15:03:29.674 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:29.675 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:31.719 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 110 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:31.904 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 110 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:32.054 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x108e548d]) will closed
15:03:32.055 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:32.055 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:32.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 110 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:37.425 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 111 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:39.690 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfca92e06]) will closed
15:03:39.691 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:39.691 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:39.739 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 111 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:39.920 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 111 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:40.537 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 111 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:42.065 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9ce613b5]) will closed
15:03:42.065 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:42.065 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:45.427 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 112 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:47.756 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 112 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:47.941 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 112 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:48.556 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 112 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:49.696 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc1383255]) will closed
15:03:49.697 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:49.698 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:52.073 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd9840457]) will closed
15:03:52.076 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:52.077 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:03:53.429 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 113 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:55.772 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 113 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:55.960 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 113 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:56.566 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 113 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:03:59.703 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x47cc1f79]) will closed
15:03:59.705 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:03:59.705 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:01.450 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 114 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:02.079 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3a69da2b]) will closed
15:04:02.081 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:02.081 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:03.795 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 114 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:03.966 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 114 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:04.580 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 114 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:09.458 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 115 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:09.721 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd7fbdffe]) will closed
15:04:09.725 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:09.725 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:11.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 115 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:11.980 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 115 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:12.090 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x560a787b]) will closed
15:04:12.093 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:12.097 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:12.590 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 115 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:17.478 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 116 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:19.729 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:19.729 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:19.730 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x514377a7]) will closed
15:04:19.840 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 116 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:19.992 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 116 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:20.613 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 116 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:22.110 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x174712e7]) will closed
15:04:22.110 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:22.111 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:25.501 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 117 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:27.851 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 117 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:28.005 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 117 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:28.631 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 117 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:29.730 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x569f78f9]) will closed
15:04:29.730 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:29.730 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:32.119 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf45bea0d]) will closed
15:04:32.119 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:32.119 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:33.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 118 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:35.853 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 118 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:36.012 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 118 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:36.648 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 118 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:39.739 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc32ba317]) will closed
15:04:39.740 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:39.740 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:41.527 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 119 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:42.128 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x89ef88da]) will closed
15:04:42.129 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:42.130 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:43.882 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 119 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:44.027 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 119 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:44.665 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 119 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:49.545 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 120 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:49.749 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8b971612]) will closed
15:04:49.807 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:49.807 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:51.901 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 120 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:52.052 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 120 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:52.131 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbc26d558]) will closed
15:04:52.132 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:52.133 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:52.685 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 120 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:57.563 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 121 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:04:59.823 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5e17665a]) will closed
15:04:59.824 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:04:59.824 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:04:59.918 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 121 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:00.059 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 121 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:00.707 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 121 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:02.148 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x943bc43b]) will closed
15:05:02.150 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:02.150 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:05.581 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 122 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:07.938 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 122 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:08.075 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 122 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:08.724 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 122 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:09.828 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x23d62db4]) will closed
15:05:09.830 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:09.830 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:12.152 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf162be5f]) will closed
15:05:12.153 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:12.153 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:13.597 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 123 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:15.947 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 123 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:16.089 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 123 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:16.744 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 123 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:19.832 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x33b1aa7f]) will closed
15:05:19.834 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:19.834 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:21.612 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 124 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:22.158 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb2108daa]) will closed
15:05:22.160 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:22.160 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:23.959 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 124 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:24.102 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 124 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:24.758 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 124 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:29.637 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 125 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:29.841 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x682ff4de]) will closed
15:05:29.842 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:29.842 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:30.572 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 125 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:30.572 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 125 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:30.572 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 125 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:32.176 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd8c2b852]) will closed
15:05:32.178 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:32.178 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:34.668 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 126 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:38.592 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 126 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:38.592 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 126 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:38.594 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 126 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:39.855 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb19fb9fa]) will closed
15:05:39.857 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:39.857 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:42.189 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x80a2ea56]) will closed
15:05:42.190 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:42.190 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:42.700 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 127 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:44.801 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 127 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:44.807 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 127 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:44.811 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 127 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:47.732 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 128 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:49.830 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 128 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:49.830 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 128 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:49.833 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 128 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:49.860 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x312e1a03]) will closed
15:05:49.862 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:49.862 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:52.203 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xea694ab7]) will closed
15:05:52.204 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:52.204 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:52.747 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 129 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:54.850 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 129 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:54.885 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 129 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:54.888 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 129 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:57.761 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 130 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:05:59.865 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x719f4b7b]) will closed
15:05:59.867 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:05:59.868 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:05:59.913 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 130 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:06:00.070 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 130 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:06:00.087 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 130 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:06:02.209 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9e826b1d]) will closed
15:06:02.210 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:02.210 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:02.855 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 131 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:06:04.928 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 131 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:06:05.102 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 131 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:06:05.114 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 131 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
15:06:07.975 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Success to connect a server [192.168.110.235:8848], connectionId = 1718348765271_192.168.110.235_63831
15:06:07.975 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718327267176_192.168.110.235_53459
15:06:07.975 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718327267176_192.168.110.235_53459
15:06:08.014 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Notify disconnected event to listeners
15:06:08.016 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Notify connected event to listeners.
15:06:09.879 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x73d8532e]) will closed
15:06:09.881 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:09.881 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:10.064 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718348767349_192.168.110.235_63846
15:06:10.064 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718338834981_192.168.110.235_64111
15:06:10.065 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718338834981_192.168.110.235_64111
15:06:10.066 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:06:10.067 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify disconnected event to listeners
15:06:10.083 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify connected event to listeners.
15:06:10.187 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718348767477_192.168.110.235_63849
15:06:10.187 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718348767349_192.168.110.235_63846
15:06:10.188 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718348767349_192.168.110.235_63846
15:06:10.230 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify disconnected event to listeners
15:06:10.230 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify connected event to listeners.
15:06:10.237 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718348767526_192.168.110.235_63852
15:06:10.237 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718338834947_192.168.110.235_64110
15:06:10.237 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718338834947_192.168.110.235_64110
15:06:10.238 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify disconnected event to listeners
15:06:10.239 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:06:10.266 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify connected event to listeners.
15:06:10.342 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Success to connect a server [192.168.110.235:8848], connectionId = 1718348767537_192.168.110.235_63854
15:06:10.343 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718327246818_192.168.110.235_53116
15:06:10.343 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718327246818_192.168.110.235_53116
15:06:10.344 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:06:10.438 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify disconnected event to listeners
15:06:10.458 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify connected event to listeners.
15:06:10.466 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718348767646_192.168.110.235_63866
15:06:10.466 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718348767526_192.168.110.235_63852
15:06:10.466 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718348767526_192.168.110.235_63852
15:06:10.466 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify disconnected event to listeners
15:06:10.466 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify connected event to listeners.
15:06:10.479 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Success to connect a server [192.168.110.235:8848], connectionId = 1718348767761_192.168.110.235_63871
15:06:10.479 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718348767537_192.168.110.235_63854
15:06:10.479 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718348767537_192.168.110.235_63854
15:06:10.479 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify disconnected event to listeners
15:06:10.480 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify connected event to listeners.
15:06:10.704 [nacos-grpc-client-executor-4453] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Receive server push request, request = NotifySubscriberRequest, requestId = 1
15:06:10.704 [nacos-grpc-client-executor-4453] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Ack server push request, request = NotifySubscriberRequest, requestId = 1
15:06:10.706 [nacos-grpc-client-executor-4454] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Receive server push request, request = NotifySubscriberRequest, requestId = 2
15:06:10.725 [nacos-grpc-client-executor-4454] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Ack server push request, request = NotifySubscriberRequest, requestId = 2
15:06:11.098 [nacos-grpc-client-executor-4455] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Receive server push request, request = NotifySubscriberRequest, requestId = 6
15:06:11.101 [nacos-grpc-client-executor-4455] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Ack server push request, request = NotifySubscriberRequest, requestId = 6
15:06:12.220 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7059c234]) will closed
15:06:12.221 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:12.224 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:13.655 [nacos-grpc-client-executor-4285] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Receive server push request, request = NotifySubscriberRequest, requestId = 21
15:06:13.659 [nacos-grpc-client-executor-4285] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Ack server push request, request = NotifySubscriberRequest, requestId = 21
15:06:19.885 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6c2439d6]) will closed
15:06:19.886 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:19.886 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:22.231 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0289af97]) will closed
15:06:22.232 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:22.232 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:29.924 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf59ef984]) will closed
15:06:30.017 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:30.018 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:32.242 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x539b8d2b]) will closed
15:06:32.244 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:32.245 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:40.020 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7f1c51dd]) will closed
15:06:40.031 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:40.032 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:42.252 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x90cd7419]) will closed
15:06:42.465 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:42.465 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:45.182 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO  i.s.d.r.n.NacosRegistryServiceImpl - [lambda$lookup$6,184] - receive empty server list,cluster:default
15:06:50.038 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc2e4c6b1]) will closed
15:06:50.041 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:50.042 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:06:52.480 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3e63cd41]) will closed
15:06:52.481 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:06:52.481 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:07:00.045 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xde083a1d]) will closed
15:07:00.046 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:07:00.046 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:07:02.497 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x952ab45d]) will closed
15:07:02.497 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:07:02.497 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:07:10.059 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc8886276]) will closed
15:07:10.061 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:07:10.061 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:07:12.503 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf114826e]) will closed
15:07:12.503 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:07:12.503 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:07:20.075 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2266e752]) will closed
15:07:20.076 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:07:20.076 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:07:22.507 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6e6cf183]) will closed
15:07:22.507 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:07:22.507 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
15:07:24.453 [nacos-grpc-client-executor-4299] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Receive server push request, request = NotifySubscriberRequest, requestId = 25
15:07:24.457 [nacos-grpc-client-executor-4299] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Ack server push request, request = NotifySubscriberRequest, requestId = 25
15:07:28.356 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x65b0c4f7, L:/192.168.110.235:64019 - R:/192.168.110.188:8091]
15:07:28.356 [timeoutChecker_1_1] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0xd7144ea9, L:/192.168.110.235:64014 - R:/192.168.110.188:8091]
15:07:28.356 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 4837 ms, version:1.7.0,role:RMROLE,channel:[id: 0x65b0c4f7, L:/192.168.110.235:64019 - R:/192.168.110.188:8091]
15:07:28.356 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 1250 ms, version:1.7.0,role:TMROLE,channel:[id: 0xd7144ea9, L:/192.168.110.235:64014 - R:/192.168.110.188:8091]
15:16:29.509 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_wBk-oVcQ0kA8M-pY9LIDGnUdOOMqBXEeBKJOKQQByBXU63UXL2uY2lfxMz1esbPt0KtLldJGOFZ80zvBxLSUXf-i7TocgmKqc4wu93f00yppd7QXgbcfuJEAYfAYSHbABAUOD","expires_in":7200}
16:05:06.070 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Server healthy check fail, currentConnection = 1718348767477_192.168.110.235_63849
16:05:06.076 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Server healthy check fail, currentConnection = 1718348767761_192.168.110.235_63871
16:05:06.239 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:05:06.239 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:05:08.057 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xd7144ea9, L:/192.168.110.235:64014 - R:/192.168.110.188:8091] read idle.
16:05:08.306 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd7144ea9, L:/192.168.110.235:64014 - R:/192.168.110.188:8091]
16:05:08.325 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd7144ea9, L:/192.168.110.235:64014 - R:/192.168.110.188:8091]) will closed
16:05:08.347 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]) will closed
16:05:08.371 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]
16:05:08.371 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]
16:05:08.380 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]
16:05:08.381 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]) will closed
16:05:08.381 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]) will closed
16:05:08.460 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]
16:05:08.556 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]
16:05:08.557 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]
16:05:08.557 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]) will closed
16:05:08.557 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd7144ea9, L:/192.168.110.235:64014 ! R:/192.168.110.188:8091]) will closed
16:05:09.093 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:05:09.143 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
16:05:09.196 [timeoutChecker_1_1] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0xe49fc971, L:/192.168.110.235:50187 - R:/192.168.110.188:8091]
16:05:09.220 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 76 ms, version:1.7.0,role:TMROLE,channel:[id: 0xe49fc971, L:/192.168.110.235:50187 - R:/192.168.110.188:8091]
16:05:09.715 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Server healthy check fail, currentConnection = 1718348767646_192.168.110.235_63866
16:05:09.715 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:05:11.188 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718352307727_192.168.110.235_50189
16:05:11.189 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718348767646_192.168.110.235_63866
16:05:11.190 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718348767646_192.168.110.235_63866
16:05:11.277 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify disconnected event to listeners
16:05:11.526 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify connected event to listeners.
16:05:12.526 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Success to connect a server [192.168.110.235:8848], connectionId = 1718352307727_192.168.110.235_50191
16:05:12.526 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718348767761_192.168.110.235_63871
16:05:12.526 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718348767761_192.168.110.235_63871
16:05:12.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718352307727_192.168.110.235_50192
16:05:12.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718348767477_192.168.110.235_63849
16:05:12.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718348767477_192.168.110.235_63849
16:05:12.597 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify disconnected event to listeners
16:05:12.719 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify connected event to listeners.
16:05:12.730 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify disconnected event to listeners
16:05:12.742 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify connected event to listeners.
16:05:16.085 [nacos-grpc-client-executor-4998] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Receive server push request, request = NotifySubscriberRequest, requestId = 79
16:05:16.085 [nacos-grpc-client-executor-4998] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Ack server push request, request = NotifySubscriberRequest, requestId = 79
17:02:30.278 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Server healthy check fail, currentConnection = 1718352307727_192.168.110.235_50189
17:02:30.279 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:30.287 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Server healthy check fail, currentConnection = 1718348765271_192.168.110.235_63831
17:02:30.287 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:30.790 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Server healthy check fail, currentConnection = 1718352307727_192.168.110.235_50191
17:02:30.790 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:35.274 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Success to connect a server [192.168.110.235:8848], connectionId = 1718355752337_192.168.110.235_52455
17:02:35.274 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718352307727_192.168.110.235_50191
17:02:35.274 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718352307727_192.168.110.235_50191
17:02:35.275 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify disconnected event to listeners
17:02:35.277 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify connected event to listeners.
17:02:36.411 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:36.483 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:36.735 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Success to connect a server [192.168.110.235:8848], connectionId = 1718355754032_192.168.110.235_52474
17:02:36.735 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718348765271_192.168.110.235_63831
17:02:36.735 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718348765271_192.168.110.235_63831
17:02:36.736 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Notify disconnected event to listeners
17:02:36.737 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Notify connected event to listeners.
17:02:39.702 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:40.695 [nacos-grpc-client-executor-5691] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Receive server push request, request = NotifySubscriberRequest, requestId = 108
17:02:40.695 [nacos-grpc-client-executor-5691] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Ack server push request, request = NotifySubscriberRequest, requestId = 108
17:02:41.176 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x65b0c4f7, L:/192.168.110.235:64019 - R:/192.168.110.188:8091] read idle.
17:02:41.177 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x65b0c4f7, L:/192.168.110.235:64019 - R:/192.168.110.188:8091]
17:02:41.177 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x65b0c4f7, L:/192.168.110.235:64019 - R:/192.168.110.188:8091]) will closed
17:02:41.178 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]) will closed
17:02:41.178 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]
17:02:41.178 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]
17:02:41.179 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]
17:02:41.179 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]) will closed
17:02:41.179 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]) will closed
17:02:41.179 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]
17:02:41.179 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]
17:02:41.179 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]
17:02:41.180 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]) will closed
17:02:41.180 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x65b0c4f7, L:/192.168.110.235:64019 ! R:/192.168.110.188:8091]) will closed
17:02:41.411 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:02:41.417 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
17:02:43.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:46.074 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:46.461 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:49.978 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:50.988 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Server healthy check fail, currentConnection = 1718352307727_192.168.110.235_50192
17:02:50.989 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:51.428 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5ecc4e6f]) will closed
17:02:51.449 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:02:51.449 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-member', transactionServiceGroup='ruoyi-member-group'} >
17:02:52.209 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:53.298 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Server healthy check fail, currentConnection = 1718355752337_192.168.110.235_52455
17:02:53.298 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:53.592 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:55.417 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:57.126 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:57.311 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:58.476 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x5ca2b1ad, L:/192.168.110.235:52662 - R:/192.168.110.188:8091]
17:02:58.477 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 4 ms, version:1.7.0,role:RMROLE,channel:[id: 0x5ca2b1ad, L:/192.168.110.235:52662 - R:/192.168.110.188:8091]
17:02:58.728 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:02:59.428 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:00.344 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:01.131 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:02.140 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:02.645 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:03.654 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:05.049 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:05.658 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:05.966 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:07.061 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:08.050 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718355785010_192.168.110.235_52953
17:03:08.050 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718352307727_192.168.110.235_50192
17:03:08.051 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718352307727_192.168.110.235_50192
17:03:08.051 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify disconnected event to listeners
17:03:08.063 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1945e575-01de-4c50-b29d-23f3a03f7b96_config-0] Notify connected event to listeners.
17:03:08.276 [nacos-grpc-client-executor-5725] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 124
17:03:08.314 [nacos-grpc-client-executor-5725] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 124
17:03:08.401 [nacos-grpc-client-executor-5725] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718352307727_192.168.110.235_50189]Ignore complete event,isRunning:false,isAbandon=false
17:03:09.064 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:09.295 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:09.386 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
17:03:10.070 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Success to connect a server [192.168.110.235:8848], connectionId = 1718355787351_192.168.110.235_53041
17:03:10.070 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718355752337_192.168.110.235_52455
17:03:10.070 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718355752337_192.168.110.235_52455
17:03:10.070 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify disconnected event to listeners
17:03:10.072 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Notify connected event to listeners.
17:03:10.073 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Server check success, currentServer is 192.168.110.235:8848
17:03:10.130 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Success to connect a server [192.168.110.235:8848], connectionId = 1718355787428_192.168.110.235_53043
17:03:10.130 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718355754032_192.168.110.235_52474
17:03:10.130 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718355754032_192.168.110.235_52474
17:03:10.130 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Notify disconnected event to listeners
17:03:10.131 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Notify connected event to listeners.
17:03:10.345 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718355787597_192.168.110.235_53044
17:03:10.345 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718352307727_192.168.110.235_50189
17:03:10.345 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718352307727_192.168.110.235_50189
17:03:10.346 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify disconnected event to listeners
17:03:10.362 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9005cd71-6af9-4a8b-9c64-068c00d11163_config-0] Notify connected event to listeners.
17:03:10.589 [nacos-grpc-client-executor-5954] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Receive server push request, request = NotifySubscriberRequest, requestId = 160
17:03:10.590 [nacos-grpc-client-executor-5954] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Ack server push request, request = NotifySubscriberRequest, requestId = 160
17:03:10.695 [nacos-grpc-client-executor-5955] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Receive server push request, request = NotifySubscriberRequest, requestId = 165
17:03:10.695 [nacos-grpc-client-executor-5955] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [89a65553-55fd-43e7-abc3-1239d20b7ae3] Ack server push request, request = NotifySubscriberRequest, requestId = 165
17:03:12.012 [nacos-grpc-client-executor-5706] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Receive server push request, request = NotifySubscriberRequest, requestId = 167
17:03:12.013 [nacos-grpc-client-executor-5706] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a670bc67-ce1c-4af2-b70d-d9c046439818] Ack server push request, request = NotifySubscriberRequest, requestId = 167
17:41:25.157 [lettuce-nioEventLoop-7-5] INFO  i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380)
    at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:259)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run(Thread.java:748)
17:41:25.229 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
17:41:25.256 [lettuce-nioEventLoop-7-7] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
18:53:48.340 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
18:53:48.493 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
18:53:48.954 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
18:53:48.955 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6a37c9c2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
18:53:48.955 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718355787428_192.168.110.235_53043
18:53:48.956 [SpringContextShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@aea2065[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 7323]
18:53:51.400 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
18:53:51.511 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
18:53:51.559 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
18:53:51.559 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
18:53:51.728 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xe49fc971, L:/192.168.110.235:50187 ! R:/192.168.110.188:8091]
18:53:51.729 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xe49fc971, L:/192.168.110.235:50187 ! R:/192.168.110.188:8091]
18:53:51.729 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xe49fc971, L:/192.168.110.235:50187 ! R:/192.168.110.188:8091]
18:53:51.729 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xe49fc971, L:/192.168.110.235:50187 ! R:/192.168.110.188:8091]
18:53:51.729 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe49fc971, L:/192.168.110.235:50187 ! R:/192.168.110.188:8091]) will closed
18:53:51.730 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe49fc971, L:/192.168.110.235:50187 ! R:/192.168.110.188:8091]) will closed
18:53:51.803 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x5ca2b1ad, L:/192.168.110.235:52662 ! R:/192.168.110.188:8091]
18:53:51.804 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x5ca2b1ad, L:/192.168.110.235:52662 ! R:/192.168.110.188:8091]
18:53:51.804 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x5ca2b1ad, L:/192.168.110.235:52662 ! R:/192.168.110.188:8091]
18:53:51.804 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x5ca2b1ad, L:/192.168.110.235:52662 ! R:/192.168.110.188:8091]
18:53:51.805 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5ca2b1ad, L:/192.168.110.235:52662 ! R:/192.168.110.188:8091]) will closed
18:53:51.805 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5ca2b1ad, L:/192.168.110.235:52662 ! R:/192.168.110.188:8091]) will closed