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
09:19:46.320 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:19:48.023 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 219c635a-078a-4da9-bdf0-2501f5412f27_config-0
09:19:48.159 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 85 ms to scan 1 urls, producing 3 keys and 6 values 
09:19:48.251 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 40 ms to scan 1 urls, producing 4 keys and 9 values 
09:19:48.288 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 1 urls, producing 3 keys and 10 values 
09:19:48.334 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 14 urls, producing 0 keys and 0 values 
09:19:48.362 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 1 urls, producing 1 keys and 5 values 
09:19:48.392 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 1 keys and 7 values 
09:19:48.423 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 2 keys and 8 values 
09:19:48.484 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 14 urls, producing 0 keys and 0 values 
09:19:48.489 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:19:48.492 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/936931778
09:19:48.494 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1001351478
09:19:48.497 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:19:48.498 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:19:48.529 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:19:51.904 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932790835_192.168.110.235_51408
09:19:51.905 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] Notify connected event to listeners.
09:19:51.906 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:19:51.907 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [219c635a-078a-4da9-bdf0-2501f5412f27_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/858846125
09:19:52.097 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:19:57.713 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:19:57.867 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:19:57.892 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:19:58.084 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0
09:19:58.084 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:19:58.085 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/936931778
09:19:58.085 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1001351478
09:19:58.085 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:19:58.086 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:19:58.086 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:19:58.218 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932797317_192.168.110.235_51424
09:19:58.219 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] Notify connected event to listeners.
09:19:58.219 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:19:58.219 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4150ba7f-7a09-4d9e-8868-a12695f152cd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/858846125
09:19:58.413 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:19:58.724 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:19:58.954 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 651a2923-2786-4f35-aff0-887a640fc227
09:19:58.954 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] RpcClient init label, labels = {module=naming, source=sdk}
09:19:58.958 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:19:58.959 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:19:58.960 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:19:58.961 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:19:59.191 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932798189_192.168.110.235_51429
09:19:59.192 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] Notify connected event to listeners.
09:19:59.192 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:19:59.194 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/858846125
09:19:59.254 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:19:59.733 [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:19:59.837 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] Receive server push request, request = NotifySubscriberRequest, requestId = 18
09:19:59.847 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [651a2923-2786-4f35-aff0-887a640fc227] Ack server push request, request = NotifySubscriberRequest, requestId = 18
09:20:00.801 [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: 0x5b2dd471, L:/192.168.110.235:51527 - R:/192.168.110.188:8091]
09:20:00.814 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 128 ms, version:1.7.0,role:TMROLE,channel:[id: 0x5b2dd471, L:/192.168.110.235:51527 - R:/192.168.110.188:8091]
09:20:00.815 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:20:00.878 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:20:00.880 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:20:00.902 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:20:00.903 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:20:00.903 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:20:02.563 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:20:02.563 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:20:02.564 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:20:02.806 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:20:04.667 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:20:04.669 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:20:04.670 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:20:13.480 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:20:18.416 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:20:18.604 [redisson-netty-4-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:20:18.685 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:20:21.021 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of fe51d44d-e38a-4363-bb68-b975625c62c1
09:20:21.023 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] RpcClient init label, labels = {module=naming, source=sdk}
09:20:21.023 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:20:21.023 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:20:21.023 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:20:21.024 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:20:21.142 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932820251_192.168.110.235_51759
09:20:21.142 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Notify connected event to listeners.
09:20:21.142 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:20:21.143 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/858846125
09:20:21.165 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:20:21.204 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:20:21.720 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Receive server push request, request = NotifySubscriberRequest, requestId = 22
09:20:21.728 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Ack server push request, request = NotifySubscriberRequest, requestId = 22
09:20:22.640 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 38.033 seconds (JVM running for 41.268)
09:20:22.664 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:20:22.695 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:20:22.705 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:20:23.397 [RMI TCP Connection(4)-9.9.9.100] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:20:44.045 [http-nio-9205-exec-2] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_6l-NF0b7gvMGv0LJeGbnzNmIytNHVVRnn8Fm9zDPWc56VLYctr1ZrhQS8B6yHUo3plxSL-jpxznd5thPkvqxHSSfE7UN_2CzCGCqzJopOe1vH1DcWiBvtAD23zAINNcAEAPUU","expires_in":7200}
09:20:46.107 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Receive server push request, request = NotifySubscriberRequest, requestId = 30
09:20:46.107 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe51d44d-e38a-4363-bb68-b975625c62c1] Ack server push request, request = NotifySubscriberRequest, requestId = 30
09:21:00.914 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:21:00.916 [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:21:00.925 [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: 0x5a7a2263, L:/192.168.110.235:52062 - R:/192.168.110.188:8091]
09:21:00.925 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:1.7.0,role:RMROLE,channel:[id: 0x5a7a2263, L:/192.168.110.235:52062 - R:/192.168.110.188:8091]
09:40:10.969 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:40:12.272 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0
09:40:12.376 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values 
09:40:12.421 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
09:40:12.441 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values 
09:40:12.477 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 14 urls, producing 0 keys and 0 values 
09:40:12.496 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 5 values 
09:40:12.518 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 7 values 
09:40:12.538 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
09:40:12.578 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 14 urls, producing 0 keys and 0 values 
09:40:12.580 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:40:12.581 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1112062307
09:40:12.582 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/133205167
09:40:12.583 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:40:12.584 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:40:12.597 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:40:15.890 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718934014874_192.168.110.235_64150
09:40:15.891 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] Notify connected event to listeners.
09:40:15.891 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:40:15.892 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92fd53f-74e5-4abd-8378-c7970d5e1afc_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/786970485
09:40:16.014 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:40:19.709 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:40:19.847 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:40:19.861 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:40:20.031 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0
09:40:20.031 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:40:20.031 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1112062307
09:40:20.031 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/133205167
09:40:20.032 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:40:20.032 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:40:20.032 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:40:20.163 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718934019265_192.168.110.235_64207
09:40:20.164 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:40:20.164 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] Notify connected event to listeners.
09:40:20.164 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fa3ee20d-49fb-410e-a24f-d40de2a22d8d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/786970485
09:40:20.538 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:40:20.781 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:40:20.973 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3c624910-7ef0-4946-b02b-5e51cd920216
09:40:20.973 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] RpcClient init label, labels = {module=naming, source=sdk}
09:40:20.976 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:40:20.976 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:40:20.977 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:40:20.978 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:40:21.110 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718934020213_192.168.110.235_64210
09:40:21.110 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:40:21.110 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/786970485
09:40:21.113 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] Notify connected event to listeners.
09:40:21.284 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:40:21.706 [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:40:21.761 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] Receive server push request, request = NotifySubscriberRequest, requestId = 43
09:40:21.771 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3c624910-7ef0-4946-b02b-5e51cd920216] Ack server push request, request = NotifySubscriberRequest, requestId = 43
09:40:22.497 [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: 0x2209eab7, L:/192.168.110.235:64213 - R:/192.168.110.188:8091]
09:40:22.507 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 91 ms, version:1.7.0,role:TMROLE,channel:[id: 0x2209eab7, L:/192.168.110.235:64213 - R:/192.168.110.188:8091]
09:40:22.509 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:40:22.554 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:40:22.555 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:40:22.569 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:40:22.570 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:40:22.570 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:40:24.160 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:40:24.161 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:40:24.161 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:40:24.413 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:40:25.044 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:40:25.045 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:40:25.046 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:40:33.869 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:40:36.202 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:40:46.444 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
09:40:46.448 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
09:40:46.455 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
09:40:46.456 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
09:40:46.457 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x2209eab7, L:/192.168.110.235:64213 ! R:/192.168.110.188:8091]
09:40:46.458 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x2209eab7, L:/192.168.110.235:64213 ! R:/192.168.110.188:8091]
09:40:46.458 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x2209eab7, L:/192.168.110.235:64213 ! R:/192.168.110.188:8091]
09:40:46.459 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x2209eab7, L:/192.168.110.235:64213 ! R:/192.168.110.188:8091]
09:40:46.459 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2209eab7, L:/192.168.110.235:64213 ! R:/192.168.110.188:8091]) will closed
09:40:46.460 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2209eab7, L:/192.168.110.235:64213 ! R:/192.168.110.188:8091]) will closed
09:40:46.462 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
09:41:16.132 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:41:17.464 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0
09:41:17.591 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 70 ms to scan 1 urls, producing 3 keys and 6 values 
09:41:17.662 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 1 urls, producing 4 keys and 9 values 
09:41:17.687 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 3 keys and 10 values 
09:41:17.730 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 14 urls, producing 0 keys and 0 values 
09:41:17.748 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 5 values 
09:41:17.776 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 1 keys and 7 values 
09:41:17.797 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 2 keys and 8 values 
09:41:17.841 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 40 ms to scan 14 urls, producing 0 keys and 0 values 
09:41:17.842 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:41:17.844 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2189588
09:41:17.844 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1805845895
09:41:17.846 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:41:17.848 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:41:17.862 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:41:20.210 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718934079208_192.168.110.235_64859
09:41:20.211 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] Notify connected event to listeners.
09:41:20.212 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:41:20.213 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fa2124b-7aab-4481-bc37-05dcbfa31c6b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/312629339
09:41:20.345 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:41:23.898 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:41:24.023 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:41:24.035 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:41:24.223 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0
09:41:24.223 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:41:24.224 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2189588
09:41:24.224 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1805845895
09:41:24.224 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:41:24.225 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:41:24.225 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:41:24.354 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718934083458_192.168.110.235_64861
09:41:24.355 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:41:24.355 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Notify connected event to listeners.
09:41:24.355 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/312629339
09:41:24.521 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:41:24.741 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:41:24.938 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8a857597-45a2-44a9-a187-088c8f8c63ce
09:41:24.938 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] RpcClient init label, labels = {module=naming, source=sdk}
09:41:24.942 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:41:24.942 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:41:24.943 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:41:24.944 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:41:25.072 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718934084178_192.168.110.235_64864
09:41:25.073 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] Notify connected event to listeners.
09:41:25.073 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:41:25.073 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/312629339
09:41:25.113 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:41:25.420 [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:41:25.639 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] Receive server push request, request = NotifySubscriberRequest, requestId = 44
09:41:25.651 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8a857597-45a2-44a9-a187-088c8f8c63ce] Ack server push request, request = NotifySubscriberRequest, requestId = 44
09:41:26.264 [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: 0x1b82d665, L:/192.168.110.235:64866 - R:/192.168.110.188:8091]
09:41:26.272 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 104 ms, version:1.7.0,role:TMROLE,channel:[id: 0x1b82d665, L:/192.168.110.235:64866 - R:/192.168.110.188:8091]
09:41:26.273 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:41:26.311 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:41:26.312 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:41:26.329 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:41:26.330 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
09:41:26.330 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:41:27.477 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:41:27.477 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:41:27.477 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:41:27.645 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:41:28.315 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:41:28.317 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:41:28.318 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:41:33.996 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:41:36.151 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:41:36.275 [redisson-netty-4-6] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:41:36.359 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:41:38.184 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c863f38d-7cfe-4dac-8cfb-af46fb9f82f1
09:41:38.185 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] RpcClient init label, labels = {module=naming, source=sdk}
09:41:38.186 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:41:38.186 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:41:38.186 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:41:38.188 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:41:38.312 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718934097422_192.168.110.235_64972
09:41:38.313 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Notify connected event to listeners.
09:41:38.313 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:41:38.313 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/312629339
09:41:38.335 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:41:38.375 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:41:38.853 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Receive server push request, request = NotifySubscriberRequest, requestId = 46
09:41:38.856 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Ack server push request, request = NotifySubscriberRequest, requestId = 46
09:41:39.571 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 24.87 seconds (JVM running for 27.281)
09:41:39.590 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:41:39.604 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:41:39.610 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:41:40.655 [RMI TCP Connection(6)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:42:26.332 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:42:26.334 [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:42:26.343 [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: 0xe3ff4968, L:/192.168.110.235:65013 - R:/192.168.110.188:8091]
09:42:26.343 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:1.7.0,role:RMROLE,channel:[id: 0xe3ff4968, L:/192.168.110.235:65013 - R:/192.168.110.188:8091]
09:43:11.003 [http-nio-9205-exec-3] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_ufOy1cB37sK3gtIruGGcuGm73qJw3n3O_f8_aqCwaN7_umo6shImOx2fnI5BFSdwWKWOaevZxr8tPvHtvFxZF6uCABehsiDgVbRn9wUerM7FKb-AqzjNgsUG2rgWNTjACAMDJ","expires_in":7198}
09:43:12.064 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Receive server push request, request = NotifySubscriberRequest, requestId = 49
09:43:12.064 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Ack server push request, request = NotifySubscriberRequest, requestId = 49
09:48:14.517 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Server healthy check fail, currentConnection = 1718934083458_192.168.110.235_64861
09:48:14.518 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:48:14.651 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718934493756_192.168.110.235_65284
09:48:14.652 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718934083458_192.168.110.235_64861
09:48:14.652 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718934083458_192.168.110.235_64861
09:48:14.669 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Notify disconnected event to listeners
09:48:14.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [833bbf5a-4548-4fac-bfc5-8e7c86e12c8e_config-0] Notify connected event to listeners.
09:48:15.510 [nacos-grpc-client-executor-88] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Receive server push request, request = NotifySubscriberRequest, requestId = 55
09:48:15.511 [nacos-grpc-client-executor-88] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c863f38d-7cfe-4dac-8cfb-af46fb9f82f1] Ack server push request, request = NotifySubscriberRequest, requestId = 55
09:51:33.367 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xe3ff4968, L:/192.168.110.235:65013 - R:/192.168.110.188:8091] read idle.
09:51:33.367 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x1b82d665, L:/192.168.110.235:64866 - R:/192.168.110.188:8091] read idle.
09:51:33.367 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xe3ff4968, L:/192.168.110.235:65013 - R:/192.168.110.188:8091]
09:51:33.367 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x1b82d665, L:/192.168.110.235:64866 - R:/192.168.110.188:8091]
09:51:33.368 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1b82d665, L:/192.168.110.235:64866 - R:/192.168.110.188:8091]) will closed
09:51:33.368 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe3ff4968, L:/192.168.110.235:65013 - R:/192.168.110.188:8091]) will closed
09:51:33.370 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]) will closed
09:51:33.370 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]) will closed
09:51:33.371 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]
09:51:33.371 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]
09:51:33.372 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]
09:51:33.372 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]
09:51:33.372 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]
09:51:33.372 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]
09:51:33.372 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]) will closed
09:51:33.372 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]) will closed
09:51:33.372 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]) will closed
09:51:33.372 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]) will closed
09:51:33.373 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]
09:51:33.373 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]
09:51:33.373 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]
09:51:33.373 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]
09:51:33.374 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]
09:51:33.374 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]
09:51:33.374 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]) will closed
09:51:33.374 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]) will closed
09:51:33.374 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1b82d665, L:/192.168.110.235:64866 ! R:/192.168.110.188:8091]) will closed
09:51:33.374 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe3ff4968, L:/192.168.110.235:65013 ! R:/192.168.110.188:8091]) will closed
09:51:34.729 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:51:34.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'} >
09:51:34.738 [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: 0xc41e954c, L:/192.168.110.235:65385 - R:/192.168.110.188:8091]
09:51:34.738 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 5 ms, version:1.7.0,role:TMROLE,channel:[id: 0xc41e954c, L:/192.168.110.235:65385 - R:/192.168.110.188:8091]
09:51:36.331 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:51:36.331 [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:51:36.339 [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: 0xce85b556, L:/192.168.110.235:65387 - R:/192.168.110.188:8091]
09:51:36.339 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 5 ms, version:1.7.0,role:RMROLE,channel:[id: 0xce85b556, L:/192.168.110.235:65387 - R:/192.168.110.188:8091]
09:59:56.425 [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)
09:59:56.497 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
09:59:56.497 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
10:00:03.541 [lettuce-nioEventLoop-7-3] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
10:00:03.550 [lettuce-nioEventLoop-7-4] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
10:10:45.497 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
10:10:47.335 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a82a374b-1050-454f-bc97-8738604d3698_config-0
10:10:47.521 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 95 ms to scan 1 urls, producing 3 keys and 6 values 
10:10:47.605 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 32 ms to scan 1 urls, producing 4 keys and 9 values 
10:10:47.624 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
10:10:47.659 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 14 urls, producing 0 keys and 0 values 
10:10:47.678 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 5 values 
10:10:47.699 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values 
10:10:47.731 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 2 keys and 8 values 
10:10:47.768 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 33 ms to scan 14 urls, producing 0 keys and 0 values 
10:10:47.770 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
10:10:47.771 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2189588
10:10:47.772 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1805845895
10:10:47.773 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
10:10:47.774 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
10:10:47.790 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:10:50.157 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718935849146_192.168.110.235_57178
10:10:50.160 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify connected event to listeners.
10:10:50.161 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:10:50.162 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/658135690
10:10:50.309 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
10:10:53.774 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
10:10:53.866 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
10:10:53.878 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
10:10:54.052 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4a462452-72e6-4afa-be7d-fe7343986bf1_config-0
10:10:54.052 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
10:10:54.053 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2189588
10:10:54.053 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1805845895
10:10:54.053 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
10:10:54.053 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
10:10:54.054 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:10:54.179 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718935853294_192.168.110.235_57183
10:10:54.179 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify connected event to listeners.
10:10:54.179 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:10:54.180 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/658135690
10:10:54.312 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
10:10:54.541 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
10:10:54.724 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of cc61cf82-9cfa-448f-950c-03e9796180a5
10:10:54.724 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] RpcClient init label, labels = {module=naming, source=sdk}
10:10:54.726 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:10:54.726 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:10:54.727 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:10:54.727 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:10:54.853 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718935853970_192.168.110.235_57186
10:10:54.853 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:10:54.853 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify connected event to listeners.
10:10:54.853 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/658135690
10:10:54.894 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
10:10:55.194 [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'} >
10:10:55.470 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Receive server push request, request = NotifySubscriberRequest, requestId = 79
10:10:55.478 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Ack server push request, request = NotifySubscriberRequest, requestId = 79
10:10:55.921 [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: 0xb0ab44c5, L:/192.168.110.235:57187 - R:/192.168.110.188:8091]
10:10:55.928 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 97 ms, version:1.7.0,role:TMROLE,channel:[id: 0xb0ab44c5, L:/192.168.110.235:57187 - R:/192.168.110.188:8091]
10:10:55.929 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
10:10:55.973 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
10:10:55.973 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
10:10:55.986 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
10:10:55.987 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-member] txServiceGroup[ruoyi-member-group]
10:10:55.987 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
10:10:57.090 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
10:10:57.091 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
10:10:57.091 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
10:10:57.265 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
10:10:57.946 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
10:10:57.948 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
10:10:57.948 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
10:11:05.996 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
10:11:08.720 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
10:11:08.874 [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
10:11:08.935 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
10:11:10.961 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 980e446b-c442-4116-bb19-0620dcd96245
10:11:10.963 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] RpcClient init label, labels = {module=naming, source=sdk}
10:11:10.964 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:11:10.964 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:11:10.964 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:11:10.965 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:11:11.084 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718935870205_192.168.110.235_57301
10:11:11.084 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify connected event to listeners.
10:11:11.084 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:11:11.084 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/658135690
10:11:11.108 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
10:11:11.149 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
10:11:11.679 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 83
10:11:11.684 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 83
10:11:12.494 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 28.28 seconds (JVM running for 31.049)
10:11:12.521 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
10:11:12.537 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
10:11:12.544 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
10:11:14.143 [RMI TCP Connection(6)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:11:55.989 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
10:11:55.993 [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'} >
10:11:56.002 [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: 0x54212735, L:/192.168.110.235:57520 - R:/192.168.110.188:8091]
10:11:56.003 [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: 0x54212735, L:/192.168.110.235:57520 - R:/192.168.110.188:8091]
10:12:48.586 [http-nio-9205-exec-2] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=sAsFYTGupr9XMLhrUJ3yxuZPdu7VryG1wnnftW5MWlArYitaTbeSHH/FSE8orLAcN7eftoQyE5WM1GTNPEccnr0zieJLitOdLWSXMY+ITDoq2CuuXCn15q46VuXEoaSFLjkiy77yXr0T72BjL10GDv72mWaSus0pd+b1rMBD7M8idHtc7E5i145d8mPqo4rttqy/M8UUtby+vGe8s30g5MNn7PB47cdNZ5pK9582W2yYvDlNSFRTnCx4L9jhvh8JS/GbrOyyrUZ/Hq45Mcj4DXYwF6vk0pEtF0s3f3L+/zMktLgmr7b0hhQehNqT1QdEqxN4JlXKGA/X+OvFdgtzQA==&version=1.0&app_id=2021004150664294&sign_type=RSA2&timestamp=2024-06-21 10:12:48^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=cd08dc4fca29416496a345b36a15TX91^_^29ms,454ms,38ms^_^trace_id:0b442ca917189359686396348e85ac
10:12:49.416 [nacos-grpc-client-executor-29] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 91
10:12:49.417 [nacos-grpc-client-executor-29] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 91
10:15:09.065 [http-nio-9205-exec-6] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81__plb5OrcgjR_gEhkCUlzAgkk9RZzoPBY4RRb-dgkrnorkLOMlPAiBsra7nj1e7IlJnTPt1060y9rT-bh4jIEr-5alGLaYD8CX8uYeG5ohseYED41mdhJS6WsrlAUIPhAFAMAH","expires_in":7199}
10:32:29.082 [http-nio-9205-exec-5] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=av31lixU1q/zUCZqLzqqoIX3NjYxStR/yeAw3Egs88K1RupRKf4bmKYk2c37mLhTXmDSUuG6BedapXw9aXJoDKB1CtnuIZB2TQoJz+Bqgpw9L1QPHW2CKlUzwdDILCL98neOqDNaMAzUvCx3w8u7FiXclz0hyexE1+lEbiUwU804b+iojEhfOSx0PMr1QImOcIkvxCKNJRjKBqCiGeGNePSBv80Ewd/f92rvBkEZgctSljkIMPrCmE6wMmDje3LFehx0LT736pGIY8/xGHj1nj63zspWhcY/wWgcqE2NAD0qkOZ+zjWsq3ewfZxkIgEk2BRO4UuINeeJZiRmlxkKmQ==&version=1.0&app_id=2021004150664294&sign_type=RSA2&timestamp=2024-06-21 10:32:28^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=8f34a140b7254180900fd1af09a4RX20^_^17ms,383ms,24ms^_^trace_id:0b22831917189371491618543e1624
10:37:42.834 [http-nio-9205-exec-1] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=DeSa661SnyZ922gf9DC0qMMsNxhsHRALdXJjsMX45VgGJpwsT0ZxTdEIZcDd6zrd+nsI5ln4BDdaiwVFd3qNoVPuCHkfesoUgSUrwhE3gQmFAC4GzoJA7reEszwMc7C+C3LiexBlOcndAV2Ay/nLTEaOqVgHAuWpU1mbSzmjtnTdouZWWuKj665RqfF4fUZGpRmYhn2buKoXBUbu+E5dLa5fzvF9DTwF1gAbloMD7wkfC7C4UD916jl5gopJLDQU2CP0gUQSestzlD2AXf5qPjjy+eQQ/jLV71yRjIhbR/GwwbRTDc0p/R3cS56sWL79k7+irl2463kgsSwvbQSmPQ==&version=1.0&app_id=2021004150664294&sign_type=RSA2&timestamp=2024-06-21 10:37:42^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=5967be70c67348f5a5a9235ee28dUX20^_^15ms,337ms,15ms^_^trace_id:2187fedc17189374629544874e48d8
11:00:22.491 [nacos-grpc-client-executor-604] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 196
11:00:22.502 [nacos-grpc-client-executor-604] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 196
11:03:51.642 [nacos-grpc-client-executor-647] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 203
11:03:51.651 [nacos-grpc-client-executor-647] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 203
11:07:16.096 [nacos-grpc-client-executor-688] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 210
11:07:16.108 [nacos-grpc-client-executor-688] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 210
11:07:16.634 [nacos-grpc-client-executor-689] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 217
11:07:16.646 [nacos-grpc-client-executor-689] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 217
11:15:26.540 [nacos-grpc-client-executor-787] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 225
11:15:26.542 [nacos-grpc-client-executor-787] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 225
11:40:54.647 [nacos-grpc-client-executor-1094] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 272
11:40:54.657 [nacos-grpc-client-executor-1094] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 272
11:41:12.719 [nacos-grpc-client-executor-1097] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 276
11:41:12.727 [nacos-grpc-client-executor-1097] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 276
11:59:49.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Server healthy check fail, currentConnection = 1718935853970_192.168.110.235_57186
11:59:49.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:59:50.458 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Success to connect a server [192.168.110.235:8848], connectionId = 1718942389576_192.168.110.235_62233
11:59:50.459 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718935853970_192.168.110.235_57186
11:59:50.459 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718935853970_192.168.110.235_57186
11:59:50.473 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify disconnected event to listeners
11:59:50.483 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify connected event to listeners.
11:59:52.063 [nacos-grpc-client-executor-1317] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Receive server push request, request = NotifySubscriberRequest, requestId = 296
11:59:52.064 [nacos-grpc-client-executor-1317] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Ack server push request, request = NotifySubscriberRequest, requestId = 296
11:59:57.670 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xb0ab44c5, L:/192.168.110.235:57187 - R:/192.168.110.188:8091] read idle.
11:59:57.671 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb0ab44c5, L:/192.168.110.235:57187 - R:/192.168.110.188:8091]
11:59:57.672 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb0ab44c5, L:/192.168.110.235:57187 - R:/192.168.110.188:8091]) will closed
11:59:57.675 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]) will closed
11:59:57.676 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]
11:59:57.676 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]
11:59:57.677 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]
11:59:57.677 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]) will closed
11:59:57.677 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]) will closed
11:59:57.677 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]
11:59:57.677 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]
11:59:57.678 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]
11:59:57.678 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]) will closed
11:59:57.678 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb0ab44c5, L:/192.168.110.235:57187 ! R:/192.168.110.188:8091]) will closed
11:59:57.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Server healthy check fail, currentConnection = 1718935849146_192.168.110.235_57178
11:59:57.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:59:58.974 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718942398104_192.168.110.235_62253
11:59:58.974 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718935849146_192.168.110.235_57178
11:59:58.975 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718935849146_192.168.110.235_57178
11:59:58.976 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify disconnected event to listeners
11:59:58.983 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify connected event to listeners.
12:00:00.054 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Server healthy check fail, currentConnection = 1718935853294_192.168.110.235_57183
12:00:00.055 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:03.516 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718942402564_192.168.110.235_62274
12:00:03.517 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718935853294_192.168.110.235_57183
12:00:03.518 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718935853294_192.168.110.235_57183
12:00:03.520 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify disconnected event to listeners
12:00:03.540 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify connected event to listeners.
12:00:04.535 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
12:00:04.537 [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'} >
12:00:04.548 [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: 0xb7d0c153, L:/192.168.110.235:62277 - R:/192.168.110.188:8091]
12:00:04.549 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:1.7.0,role:TMROLE,channel:[id: 0xb7d0c153, L:/192.168.110.235:62277 - R:/192.168.110.188:8091]
12:00:08.505 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Server healthy check fail, currentConnection = 1718942389576_192.168.110.235_62233
12:00:08.505 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:11.998 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Server healthy check fail, currentConnection = 1718942398104_192.168.110.235_62253
12:00:11.998 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:12.013 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Server healthy check fail, currentConnection = 1718935870205_192.168.110.235_57301
12:00:12.013 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:14.634 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:00:15.247 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718942414380_192.168.110.235_62312
12:00:15.248 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942398104_192.168.110.235_62253
12:00:15.249 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942398104_192.168.110.235_62253
12:00:15.251 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify disconnected event to listeners
12:00:15.262 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Success to connect a server [192.168.110.235:8848], connectionId = 1718942414398_192.168.110.235_62313
12:00:15.264 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718935870205_192.168.110.235_57301
12:00:15.264 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718935870205_192.168.110.235_57301
12:00:15.265 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify disconnected event to listeners
12:00:15.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify connected event to listeners.
12:00:15.283 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify connected event to listeners.
12:00:16.535 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Server healthy check fail, currentConnection = 1718942402564_192.168.110.235_62274
12:00:16.535 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:17.854 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:00:17.928 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x54212735, L:/192.168.110.235:57520 - R:/192.168.110.188:8091] read idle.
12:00:17.928 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x54212735, L:/192.168.110.235:57520 - R:/192.168.110.188:8091]
12:00:17.928 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x54212735, L:/192.168.110.235:57520 - R:/192.168.110.188:8091]) will closed
12:00:17.929 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]) will closed
12:00:17.929 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]
12:00:17.929 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]
12:00:17.930 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]
12:00:17.930 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]) will closed
12:00:17.930 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]) will closed
12:00:17.930 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]
12:00:17.930 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]
12:00:17.931 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]
12:00:17.931 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]) will closed
12:00:17.931 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x54212735, L:/192.168.110.235:57520 ! R:/192.168.110.188:8091]) will closed
12:00:19.562 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xb7d0c153, L:/192.168.110.235:62277 - R:/192.168.110.188:8091] read idle.
12:00:19.562 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb7d0c153, L:/192.168.110.235:62277 - R:/192.168.110.188:8091]
12:00:19.562 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb7d0c153, L:/192.168.110.235:62277 - R:/192.168.110.188:8091]) will closed
12:00:19.563 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]) will closed
12:00:19.563 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]
12:00:19.563 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]
12:00:19.563 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]
12:00:19.564 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]) will closed
12:00:19.564 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]) will closed
12:00:19.564 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]
12:00:19.564 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]
12:00:19.564 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]
12:00:19.565 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]) will closed
12:00:19.565 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb7d0c153, L:/192.168.110.235:62277 ! R:/192.168.110.188:8091]) will closed
12:00:20.315 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Server check success, currentServer is 192.168.110.235:8848
12:00:20.790 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718942419939_192.168.110.235_62340
12:00:20.790 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942402564_192.168.110.235_62274
12:00:20.790 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942402564_192.168.110.235_62274
12:00:20.791 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify disconnected event to listeners
12:00:20.797 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify connected event to listeners.
12:00:21.181 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:00:24.497 [nacos-grpc-client-executor-1338] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 363
12:00:24.504 [nacos-grpc-client-executor-1338] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 363
12:00:24.506 [nacos-grpc-client-executor-1339] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 365
12:00:24.506 [nacos-grpc-client-executor-1339] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 365
12:00:24.523 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
12:00:24.523 [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'} >
12:00:24.528 [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: 0x7a131e3d, L:/192.168.110.235:62356 - R:/192.168.110.188:8091]
12:00:24.528 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 2 ms, version:1.7.0,role:TMROLE,channel:[id: 0x7a131e3d, L:/192.168.110.235:62356 - R:/192.168.110.188:8091]
12:00:24.599 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:00:25.228 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Success to connect a server [192.168.110.235:8848], connectionId = 1718942424374_192.168.110.235_62361
12:00:25.228 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942389576_192.168.110.235_62233
12:00:25.228 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942389576_192.168.110.235_62233
12:00:25.229 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify disconnected event to listeners
12:00:25.237 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify connected event to listeners.
12:00:25.992 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
12:00:25.994 [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'} >
12:00:26.004 [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: 0xb9a8dfa4, L:/192.168.110.235:62375 - R:/192.168.110.188:8091]
12:00:26.005 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 5 ms, version:1.7.0,role:RMROLE,channel:[id: 0xb9a8dfa4, L:/192.168.110.235:62375 - R:/192.168.110.188:8091]
12:00:27.949 [nacos-grpc-client-executor-1330] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Receive server push request, request = NotifySubscriberRequest, requestId = 375
12:00:27.949 [nacos-grpc-client-executor-1330] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Ack server push request, request = NotifySubscriberRequest, requestId = 375
12:34:45.321 [nacos-grpc-client-executor-1751] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 379
12:34:45.349 [nacos-grpc-client-executor-1751] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 379
12:57:55.991 [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)
12:57:56.067 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
12:57:56.087 [lettuce-nioEventLoop-7-3] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
14:02:25.532 [http-nio-9205-exec-2] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_r-vepKzRKhxJLEIZR3ZvHf2V38C8FTSmh8UX0FgHBIVMLBFIM8RjKk7lILU3gMrR_Apr22SrhbjBKaeI1Y1GU0V18RWJ6cgZEHdh-yLzgcMI1Mv2Lcwy685KG9wFLFfAIAVBV","expires_in":7199}
14:56:32.460 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Server healthy check fail, currentConnection = 1718942414380_192.168.110.235_62312
14:56:32.461 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
14:56:33.192 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718952991773_192.168.110.235_59710
14:56:33.192 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942414380_192.168.110.235_62312
14:56:33.192 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942414380_192.168.110.235_62312
14:56:33.193 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify disconnected event to listeners
14:56:33.203 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify connected event to listeners.
14:56:34.449 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Server healthy check fail, currentConnection = 1718942424374_192.168.110.235_62361
14:56:34.449 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to reconnect to a new server, server is  not appointed, will choose a random server.
14:56:35.631 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Success to connect a server [192.168.110.235:8848], connectionId = 1718952994773_192.168.110.235_59716
14:56:35.631 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942424374_192.168.110.235_62361
14:56:35.631 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942424374_192.168.110.235_62361
14:56:35.632 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify disconnected event to listeners
14:56:35.638 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify connected event to listeners.
14:56:39.022 [nacos-grpc-client-executor-3446] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Receive server push request, request = NotifySubscriberRequest, requestId = 427
14:56:39.023 [nacos-grpc-client-executor-3446] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Ack server push request, request = NotifySubscriberRequest, requestId = 427
15:44:36.590 [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)
15:44:36.667 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
15:44:36.695 [lettuce-nioEventLoop-7-4] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
16:06:04.819 [http-nio-9205-exec-3] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_evayYtaXorcMD9QoKPo4Sghpw3WmF5hDRYG2lQaAGk0K8mbldGZTaHL_6LleX6etoEYDeIjXPy30NyFfSnJpN5FOTni1Z0PFSJO8Kp9dTuiOEsrvm8fl1ZYU_t0CDEeAHAUVW","expires_in":7199}
16:07:40.713 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Server healthy check fail, currentConnection = 1718942419939_192.168.110.235_62340
16:07:40.714 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:07:41.426 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Server healthy check fail, currentConnection = 1718942414398_192.168.110.235_62313
16:07:41.426 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:07:45.842 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Success to connect a server [192.168.110.235:8848], connectionId = 1718957264435_192.168.110.235_64597
16:07:45.842 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942414398_192.168.110.235_62313
16:07:45.843 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942414398_192.168.110.235_62313
16:07:45.847 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify disconnected event to listeners
16:07:45.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify connected event to listeners.
16:07:46.451 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957265194_192.168.110.235_64592
16:07:46.452 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942419939_192.168.110.235_62340
16:07:46.452 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942419939_192.168.110.235_62340
16:07:46.454 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify disconnected event to listeners
16:07:46.626 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Server healthy check fail, currentConnection = 1718952994773_192.168.110.235_59716
16:07:46.626 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:07:46.635 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify connected event to listeners.
16:07:46.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Success to connect a server [192.168.110.235:8848], connectionId = 1718957265960_192.168.110.235_64605
16:07:46.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718952994773_192.168.110.235_59716
16:07:46.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718952994773_192.168.110.235_59716
16:07:46.790 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify disconnected event to listeners
16:07:46.804 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify connected event to listeners.
16:07:47.843 [nacos-grpc-client-executor-4304] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Receive server push request, request = NotifySubscriberRequest, requestId = 504
16:07:47.843 [nacos-grpc-client-executor-4304] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Ack server push request, request = NotifySubscriberRequest, requestId = 504
16:07:48.385 [nacos-grpc-client-executor-4313] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 506
16:07:48.385 [nacos-grpc-client-executor-4313] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 506
16:07:48.499 [nacos-grpc-client-executor-4314] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 515
16:07:48.499 [nacos-grpc-client-executor-4314] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 515
16:09:40.396 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Server healthy check fail, currentConnection = 1718952991773_192.168.110.235_59710
16:09:40.397 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:09:40.515 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957379718_192.168.110.235_64728
16:09:40.515 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718952991773_192.168.110.235_59710
16:09:40.515 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718952991773_192.168.110.235_59710
16:09:40.516 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify disconnected event to listeners
16:09:40.523 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify connected event to listeners.
16:09:49.121 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Server healthy check fail, currentConnection = 1718957264435_192.168.110.235_64597
16:09:49.121 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:09:49.779 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Server healthy check fail, currentConnection = 1718957265194_192.168.110.235_64592
16:09:49.779 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:09:50.123 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Server healthy check fail, currentConnection = 1718957265960_192.168.110.235_64605
16:09:50.123 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:09:51.262 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Success to connect a server [192.168.110.235:8848], connectionId = 1718957390456_192.168.110.235_64748
16:09:51.262 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957265960_192.168.110.235_64605
16:09:51.262 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957265960_192.168.110.235_64605
16:09:51.263 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify disconnected event to listeners
16:09:51.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify connected event to listeners.
16:09:55.246 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
16:09:55.574 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Success to connect a server [192.168.110.235:8848], connectionId = 1718957394775_192.168.110.235_64765
16:09:55.574 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957264435_192.168.110.235_64597
16:09:55.574 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957264435_192.168.110.235_64597
16:09:55.575 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify disconnected event to listeners
16:09:55.586 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify connected event to listeners.
16:09:55.827 [nacos-grpc-client-executor-4334] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Receive server push request, request = NotifySubscriberRequest, requestId = 537
16:09:55.827 [nacos-grpc-client-executor-4334] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Ack server push request, request = NotifySubscriberRequest, requestId = 537
16:09:55.904 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
16:09:56.248 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957395441_192.168.110.235_64769
16:09:56.248 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957265194_192.168.110.235_64592
16:09:56.248 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957265194_192.168.110.235_64592
16:09:56.248 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify disconnected event to listeners
16:09:56.254 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify connected event to listeners.
16:10:01.862 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Server check success, currentServer is 192.168.110.235:8848
16:10:08.902 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:10:15.027 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
16:10:18.248 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
16:10:19.729 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Success to connect a server [192.168.110.235:8848], connectionId = 1718957418901_192.168.110.235_64829
16:10:19.730 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957394775_192.168.110.235_64765
16:10:19.730 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957394775_192.168.110.235_64765
16:10:19.732 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify disconnected event to listeners
16:10:19.757 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify connected event to listeners.
16:10:21.825 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xb9a8dfa4, L:/192.168.110.235:62375 - R:/192.168.110.188:8091] read idle.
16:10:21.826 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb9a8dfa4, L:/192.168.110.235:62375 - R:/192.168.110.188:8091]
16:10:21.826 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb9a8dfa4, L:/192.168.110.235:62375 - R:/192.168.110.188:8091]) will closed
16:10:21.827 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]) will closed
16:10:21.827 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]
16:10:21.828 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]
16:10:21.828 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]
16:10:21.828 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]) will closed
16:10:21.828 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]) will closed
16:10:21.828 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]
16:10:21.828 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]
16:10:21.829 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]
16:10:21.829 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]) will closed
16:10:21.829 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb9a8dfa4, L:/192.168.110.235:62375 ! R:/192.168.110.188:8091]) will closed
16:10:22.031 [nacos-grpc-client-executor-4360] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 616
16:10:22.031 [nacos-grpc-client-executor-4360] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 616
16:10:22.033 [nacos-grpc-client-executor-4361] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 619
16:10:22.033 [nacos-grpc-client-executor-4361] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 619
16:10:25.994 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:10:25.995 [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'} >
16:10:26.001 [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: 0xc9f20b01, L:/192.168.110.235:64869 - R:/192.168.110.188:8091]
16:10:26.001 [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: 0xc9f20b01, L:/192.168.110.235:64869 - R:/192.168.110.188:8091]
16:12:26.151 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Server healthy check fail, currentConnection = 1718957379718_192.168.110.235_64728
16:12:26.151 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:26.242 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Server healthy check fail, currentConnection = 1718957390456_192.168.110.235_64748
16:12:26.243 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:26.243 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Server healthy check fail, currentConnection = 1718957395441_192.168.110.235_64769
16:12:26.243 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:26.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957545474_192.168.110.235_65001
16:12:26.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957379718_192.168.110.235_64728
16:12:26.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957379718_192.168.110.235_64728
16:12:26.272 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify disconnected event to listeners
16:12:26.281 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify connected event to listeners.
16:12:26.287 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Server healthy check fail, currentConnection = 1718957418901_192.168.110.235_64829
16:12:26.288 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:26.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Success to connect a server [192.168.110.235:8848], connectionId = 1718957545576_192.168.110.235_65005
16:12:26.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957545578_192.168.110.235_65007
16:12:26.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957390456_192.168.110.235_64748
16:12:26.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957390456_192.168.110.235_64748
16:12:26.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957395441_192.168.110.235_64769
16:12:26.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957395441_192.168.110.235_64769
16:12:26.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify disconnected event to listeners
16:12:26.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify disconnected event to listeners
16:12:26.406 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify connected event to listeners.
16:12:26.418 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify connected event to listeners.
16:12:26.436 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Success to connect a server [192.168.110.235:8848], connectionId = 1718957545619_192.168.110.235_65010
16:12:26.436 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957418901_192.168.110.235_64829
16:12:26.436 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957418901_192.168.110.235_64829
16:12:26.437 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify disconnected event to listeners
16:12:26.444 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify connected event to listeners.
16:12:28.277 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x7a131e3d, L:/192.168.110.235:62356 - R:/192.168.110.188:8091] read idle.
16:12:28.277 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7a131e3d, L:/192.168.110.235:62356 - R:/192.168.110.188:8091]
16:12:28.277 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7a131e3d, L:/192.168.110.235:62356 - R:/192.168.110.188:8091]) will closed
16:12:28.278 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]) will closed
16:12:28.278 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]
16:12:28.278 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]
16:12:28.278 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]
16:12:28.278 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]) will closed
16:12:28.279 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]) will closed
16:12:28.279 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]
16:12:28.279 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]
16:12:28.279 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]
16:12:28.279 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]) will closed
16:12:28.280 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7a131e3d, L:/192.168.110.235:62356 ! R:/192.168.110.188:8091]) will closed
16:12:28.450 [nacos-grpc-client-executor-4393] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 658
16:12:28.450 [nacos-grpc-client-executor-4393] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 658
16:12:28.987 [nacos-grpc-client-executor-4394] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 661
16:12:28.987 [nacos-grpc-client-executor-4394] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 661
16:12:29.435 [nacos-grpc-client-executor-4369] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Receive server push request, request = NotifySubscriberRequest, requestId = 671
16:12:29.435 [nacos-grpc-client-executor-4369] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Ack server push request, request = NotifySubscriberRequest, requestId = 671
16:12:34.536 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:12:34.538 [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:12:34.556 [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: 0x597d2eda, L:/192.168.110.235:65024 - R:/192.168.110.188:8091]
16:12:34.556 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 13 ms, version:1.7.0,role:TMROLE,channel:[id: 0x597d2eda, L:/192.168.110.235:65024 - R:/192.168.110.188:8091]
16:14:29.773 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Server healthy check fail, currentConnection = 1718957545474_192.168.110.235_65001
16:14:29.773 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:29.787 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Server healthy check fail, currentConnection = 1718957545619_192.168.110.235_65010
16:14:29.787 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:29.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Server healthy check fail, currentConnection = 1718957545578_192.168.110.235_65007
16:14:29.790 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:29.922 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Success to connect a server [192.168.110.235:8848], connectionId = 1718957669118_192.168.110.235_65167
16:14:29.922 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957669110_192.168.110.235_65164
16:14:29.922 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957545474_192.168.110.235_65001
16:14:29.922 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957545619_192.168.110.235_65010
16:14:29.922 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957545619_192.168.110.235_65010
16:14:29.922 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957545474_192.168.110.235_65001
16:14:29.923 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify disconnected event to listeners
16:14:29.923 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify disconnected event to listeners
16:14:29.932 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Notify connected event to listeners.
16:14:29.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify connected event to listeners.
16:14:29.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957669124_192.168.110.235_65168
16:14:29.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957545578_192.168.110.235_65007
16:14:29.940 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957545578_192.168.110.235_65007
16:14:29.940 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify disconnected event to listeners
16:14:29.943 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify connected event to listeners.
16:14:36.510 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:42.634 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
16:14:42.964 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Server healthy check fail, currentConnection = 1718957669124_192.168.110.235_65168
16:14:42.966 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:45.013 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Server healthy check fail, currentConnection = 1718957545576_192.168.110.235_65005
16:14:45.013 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:45.854 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
16:14:46.136 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Success to connect a server [192.168.110.235:8848], connectionId = 1718957685336_192.168.110.235_65230
16:14:46.136 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957545576_192.168.110.235_65005
16:14:46.136 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957545576_192.168.110.235_65005
16:14:46.137 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify disconnected event to listeners
16:14:46.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify connected event to listeners.
16:14:46.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957685398_192.168.110.235_65234
16:14:46.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957669124_192.168.110.235_65168
16:14:46.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957669124_192.168.110.235_65168
16:14:46.197 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify disconnected event to listeners
16:14:46.205 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Notify connected event to listeners.
16:14:46.331 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Success to connect a server [192.168.110.235:8848], connectionId = 1718957685501_192.168.110.235_65237
16:14:46.331 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957669118_192.168.110.235_65167
16:14:46.331 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957669118_192.168.110.235_65167
16:14:46.331 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify disconnected event to listeners
16:14:46.338 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify connected event to listeners.
16:14:49.943 [nacos-grpc-client-executor-4401] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Receive server push request, request = NotifySubscriberRequest, requestId = 730
16:14:49.943 [nacos-grpc-client-executor-4401] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Ack server push request, request = NotifySubscriberRequest, requestId = 730
16:14:49.945 [nacos-grpc-client-executor-4439] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 736
16:14:49.946 [nacos-grpc-client-executor-4439] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 736
16:14:49.947 [nacos-grpc-client-executor-4440] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 738
16:14:49.947 [nacos-grpc-client-executor-4440] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 738
16:14:50.960 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Server check success, currentServer is 192.168.110.235:8848
16:40:09.377 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Server healthy check fail, currentConnection = 1718957685501_192.168.110.235_65237
16:40:09.378 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:40:11.951 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x597d2eda, L:/192.168.110.235:65024 - R:/192.168.110.188:8091] read idle.
16:40:11.951 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x597d2eda, L:/192.168.110.235:65024 - R:/192.168.110.188:8091]
16:40:11.952 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x597d2eda, L:/192.168.110.235:65024 - R:/192.168.110.188:8091]) will closed
16:40:11.952 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]) will closed
16:40:11.952 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]
16:40:11.953 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]
16:40:11.953 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]
16:40:11.953 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]) will closed
16:40:11.953 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]) will closed
16:40:11.953 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]
16:40:11.953 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]
16:40:11.953 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]
16:40:11.954 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]) will closed
16:40:11.954 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x597d2eda, L:/192.168.110.235:65024 ! R:/192.168.110.188:8091]) will closed
16:40:14.525 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:40:14.525 [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:40:15.500 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
16:40:16.506 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Server healthy check fail, currentConnection = 1718957685336_192.168.110.235_65230
16:40:16.506 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:40:17.464 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Success to connect a server [192.168.110.235:8848], connectionId = 1718959216141_192.168.110.235_52058
16:40:17.464 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957685501_192.168.110.235_65237
16:40:17.464 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957685501_192.168.110.235_65237
16:40:17.465 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify disconnected event to listeners
16:40:17.483 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Notify connected event to listeners.
16:40:17.580 [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: 0x1c2f78f3, L:/192.168.110.235:52053 - R:/192.168.110.188:8091]
16:40:17.580 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 20 ms, version:1.7.0,role:TMROLE,channel:[id: 0x1c2f78f3, L:/192.168.110.235:52053 - R:/192.168.110.188:8091]
16:40:17.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Success to connect a server [192.168.110.235:8848], connectionId = 1718959216850_192.168.110.235_52059
16:40:17.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957685336_192.168.110.235_65230
16:40:17.674 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957685336_192.168.110.235_65230
16:40:17.675 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify disconnected event to listeners
16:40:17.686 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Notify connected event to listeners.
16:40:20.053 [nacos-grpc-client-executor-4774] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 825
16:40:20.054 [nacos-grpc-client-executor-4774] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 825
16:40:20.071 [nacos-grpc-client-executor-4775] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 828
16:40:20.071 [nacos-grpc-client-executor-4775] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 828
16:40:24.382 [nacos-grpc-client-executor-4710] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Receive server push request, request = NotifySubscriberRequest, requestId = 831
16:40:24.382 [nacos-grpc-client-executor-4710] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Ack server push request, request = NotifySubscriberRequest, requestId = 831
16:40:24.388 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Server check success, currentServer is 192.168.110.235:8848
18:31:16.946 [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)
18:31:17.049 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
18:31:17.087 [lettuce-nioEventLoop-7-5] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
18:45:07.868 [http-nio-9205-exec-6] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_vYKpUtFGQk7F0kI7lAfFfej9N6TcDp08WPX0q33wy4BZEq72pjgXsgkJC94TAllPBUKG_q2sb62nYmmTgU8RJ_Fkav0Jq7KkA6aOjRzpltGtPnuhl-X2Hcfx4_oDMKjAHARAY","expires_in":7199}
20:09:03.568 [nacos-grpc-client-executor-7446] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Receive server push request, request = NotifySubscriberRequest, requestId = 1354
20:09:03.591 [nacos-grpc-client-executor-7446] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Ack server push request, request = NotifySubscriberRequest, requestId = 1354
20:11:12.150 [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)
20:11:12.197 [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)
20:11:12.239 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
20:11:12.238 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
20:11:12.934 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
20:11:12.934 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Try to reconnect to a new server, server is  not appointed, will choose a random server.
20:11:12.934 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Try to reconnect to a new server, server is  not appointed, will choose a random server.
20:11:12.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
20:11:16.474 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xc9f20b01, L:/192.168.110.235:64869 - R:/192.168.110.188:8091]
20:11:16.474 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x1c2f78f3, L:/192.168.110.235:52053 - R:/192.168.110.188:8091]
20:11:16.475 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,480] - remove exception rm channel:[id: 0x1c2f78f3, L:/192.168.110.235:52053 - R:/192.168.110.188:8091]
20:11:16.475 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,480] - remove exception rm channel:[id: 0xc9f20b01, L:/192.168.110.235:64869 - R:/192.168.110.188:8091]
20:11:16.476 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x1c2f78f3, L:/192.168.110.235:52053 ! R:/192.168.110.188:8091]
20:11:16.476 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xc9f20b01, L:/192.168.110.235:64869 ! R:/192.168.110.188:8091]
20:11:16.476 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x1c2f78f3, L:/192.168.110.235:52053 ! R:/192.168.110.188:8091]
20:11:16.476 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xc9f20b01, L:/192.168.110.235:64869 ! R:/192.168.110.188:8091]
20:11:16.476 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x1c2f78f3, L:/192.168.110.235:52053 ! R:/192.168.110.188:8091]
20:11:16.476 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xc9f20b01, L:/192.168.110.235:64869 ! R:/192.168.110.188:8091]
20:11:16.477 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc9f20b01, L:/192.168.110.235:64869 ! R:/192.168.110.188:8091]) will closed
20:11:16.477 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1c2f78f3, L:/192.168.110.235:52053 ! R:/192.168.110.188:8091]) will closed
20:11:16.477 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc9f20b01, L:/192.168.110.235:64869 ! R:/192.168.110.188:8091]) will closed
20:11:16.477 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1c2f78f3, L:/192.168.110.235:52053 ! R:/192.168.110.188:8091]) will closed
20:11:19.068 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:19.067 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:19.067 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:19.068 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:22.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:22.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:22.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:22.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:22.438 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:22.642 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:24.895 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:24.896 [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'} >
20:11:25.615 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:25.615 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:25.615 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:25.615 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:26.364 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:26.366 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xc9f20b01, L:/192.168.110.235:64869 ! R:/192.168.110.188:8091]
20:11:26.435 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xc9f20b01, L:/192.168.110.235:64869 ! R:/192.168.110.188:8091]
20:11:26.436 [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'} >
20:11:29.032 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:29.033 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:29.034 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:29.034 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:32.524 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:32.551 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:32.552 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:32.556 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:32.702 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:32.729 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:34.899 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ae403ee]) will closed
20:11:34.975 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:34.975 [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'} >
20:11:36.307 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:36.322 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:36.322 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:36.323 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:36.441 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x281effc4]) will closed
20:11:36.443 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:36.443 [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'} >
20:11:40.022 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:40.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:40.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:40.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:42.626 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:42.836 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:43.841 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:43.856 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:43.856 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:43.856 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:44.979 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa8ec621a]) will closed
20:11:44.983 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:44.984 [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'} >
20:11:46.445 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd4f5a19f]) will closed
20:11:46.447 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:46.447 [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'} >
20:11:47.765 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:47.777 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:47.778 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:47.778 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:51.791 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:51.791 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:51.791 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:51.792 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:52.725 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:52.928 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:54.996 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5c7b1aee]) will closed
20:11:54.996 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:54.996 [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'} >
20:11:55.910 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:11:55.910 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:11:55.910 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:55.910 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:56.448 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x03af34d8]) will closed
20:11:56.449 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:56.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'} >
20:12:00.136 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:00.136 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:00.136 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:00.136 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:02.832 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:03.026 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:04.450 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:04.450 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:04.450 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:04.451 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:05.003 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x56ae3692]) will closed
20:12:05.005 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:05.006 [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'} >
20:12:06.455 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa999362e]) will closed
20:12:06.456 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:06.456 [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'} >
20:12:08.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:08.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:08.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:08.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:12.938 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:13.133 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:13.388 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:13.388 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:13.388 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:13.389 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:15.020 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf5d9a6f8]) will closed
20:12:15.021 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:15.021 [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'} >
20:12:16.472 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x85f58900]) will closed
20:12:16.474 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:16.477 [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'} >
20:12:17.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:17.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:17.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:18.014 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:22.719 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:22.719 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:22.720 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:22.734 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:23.137 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:23.324 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:25.023 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x762f401e]) will closed
20:12:25.024 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:25.024 [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'} >
20:12:26.491 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x73d7c12a]) will closed
20:12:26.492 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:26.492 [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'} >
20:12:27.540 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:27.543 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:27.544 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:27.554 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:32.463 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:32.477 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:32.477 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:32.477 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:33.435 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:33.630 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:35.037 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4bc903ff]) will closed
20:12:35.040 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:35.041 [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'} >
20:12:36.504 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x929c4390]) will closed
20:12:36.509 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:36.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'} >
20:12:37.477 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:37.493 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:37.493 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:37.493 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:42.596 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:42.611 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:42.611 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:42.611 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:44.032 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:44.227 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:45.051 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x486293cb]) will closed
20:12:45.053 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:45.053 [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'} >
20:12:46.517 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0276d4f2]) will closed
20:12:46.518 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:46.518 [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'} >
20:12:47.807 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:47.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:47.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:47.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:53.119 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:53.135 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:53.135 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:53.135 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:55.065 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x16fcbe92]) will closed
20:12:55.066 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:55.066 [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'} >
20:12:55.124 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:55.334 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:56.532 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xebf4d1b1]) will closed
20:12:56.534 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:56.534 [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'} >
20:12:58.524 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:12:58.554 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:12:58.554 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:12:58.571 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:04.046 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:04.076 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:13:04.076 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:04.091 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:05.078 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0265dea9]) will closed
20:13:05.082 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:05.082 [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'} >
20:13:06.546 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd5e13d0c]) will closed
20:13:06.548 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:06.548 [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'} >
20:13:07.234 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:07.428 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:09.661 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:09.690 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:09.690 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:13:09.707 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:15.094 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xef385a09]) will closed
20:13:15.095 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:15.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'} >
20:13:15.380 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:15.409 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:13:15.410 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:15.426 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:16.561 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x978d616a]) will closed
20:13:16.563 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:16.563 [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'} >
20:13:21.204 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:21.234 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:21.234 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:21.234 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:13:21.427 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:21.637 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:25.111 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x65263e5a]) will closed
20:13:25.112 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:25.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'} >
20:13:26.578 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfaad3c45]) will closed
20:13:26.583 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:26.583 [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'} >
20:13:27.119 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 29 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:27.148 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:27.148 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:13:27.148 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 29 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:33.137 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 30 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:33.167 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:33.167 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 30 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:33.167 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:13:35.128 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfd006d2f]) will closed
20:13:35.129 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:35.130 [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'} >
20:13:36.594 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xde4dcb89]) will closed
20:13:36.595 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:36.595 [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'} >
20:13:39.261 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 31 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:39.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 31 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:39.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:13:39.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:39.624 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:39.925 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:45.143 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfd436827]) will closed
20:13:45.144 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:45.145 [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'} >
20:13:45.474 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 32 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:45.503 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 32 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:45.503 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:13:45.503 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:46.597 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:46.597 [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'} >
20:13:46.598 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x28172443]) will closed
20:13:51.795 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 33 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:51.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:13:51.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:51.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 33 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:55.146 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfa292ce3]) will closed
20:13:55.147 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:55.147 [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'} >
20:13:56.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x86833d70]) will closed
20:13:56.599 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:56.600 [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'} >
20:13:58.217 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc61cf82-9cfa-448f-950c-03e9796180a5] Fail to connect server, after trying 34 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:58.246 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Fail to connect server, after trying 34 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:13:58.246 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a82a374b-1050-454f-bc97-8738604d3698_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
20:13:58.246 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a462452-72e6-4afa-be7d-fe7343986bf1_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
20:14:00.785 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
20:14:01.119 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
20:14:01.590 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
20:14:01.590 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@d9e4f06[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:14:01.590 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718959216141_192.168.110.235_52058
20:14:01.591 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [980e446b-c442-4116-bb19-0620dcd96245] Client is shutdown, stop reconnect to server
20:14:01.591 [SpringContextShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@45658671[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 7509]
20:14:02.675 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
20:14:02.949 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
20:14:02.952 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
20:14:02.952 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
20:14:02.964 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x34f9797b]) will closed
20:14:02.989 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7d18a68e]) will closed