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
09:18:11.844 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:18:13.273 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0
09:18:13.375 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 66 ms to scan 1 urls, producing 3 keys and 6 values 
09:18:13.426 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values 
09:18:13.449 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values 
09:18:14.210 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 753 ms to scan 297 urls, producing 0 keys and 0 values 
09:18:14.225 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
09:18:14.247 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
09:18:14.276 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 2 keys and 8 values 
09:18:14.684 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 400 ms to scan 297 urls, producing 0 keys and 0 values 
09:18:14.686 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:18:14.688 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/33558975
09:18:14.689 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1373220972
09:18:14.691 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:18:14.693 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:18:14.710 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:18:17.617 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932696480_192.168.110.235_50567
09:18:17.618 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Notify connected event to listeners.
09:18:17.619 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:18:17.620 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/793483510
09:18:18.513 [main] INFO  c.r.a.RuoYiArticleApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:18:25.211 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:18:25.332 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:18:25.348 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:18:25.543 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0
09:18:25.544 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:18:25.544 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/33558975
09:18:25.545 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1373220972
09:18:25.545 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:18:25.545 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:18:25.546 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:18:25.674 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932704773_192.168.110.235_50619
09:18:25.674 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify connected event to listeners.
09:18:25.674 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:18:25.674 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/793483510
09:18:25.851 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:18:26.209 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:18:26.440 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 04be1fc6-243e-4007-a93e-96beb0f965b7
09:18:26.441 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] RpcClient init label, labels = {module=naming, source=sdk}
09:18:26.445 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:18:26.445 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:18:26.446 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:18:26.447 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:18:26.602 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932705696_192.168.110.235_50624
09:18:26.603 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify connected event to listeners.
09:18:26.603 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:18:26.604 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/793483510
09:18:26.700 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:18:27.122 [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-article', transactionServiceGroup='ruoyi-article-group'} >
09:18:28.376 [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: 0x1097a59b, L:/192.168.110.235:50627 - R:/192.168.110.188:8091]
09:18:28.388 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 441 ms, version:1.7.0,role:TMROLE,channel:[id: 0x1097a59b, L:/192.168.110.235:50627 - R:/192.168.110.188:8091]
09:18:28.390 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-article] txServiceGroup[ruoyi-article-group]
09:18:28.461 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:18:28.462 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:18:28.482 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:18:28.482 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-article] txServiceGroup[ruoyi-article-group]
09:18:28.483 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:18:28.830 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Receive server push request, request = NotifySubscriberRequest, requestId = 1
09:18:28.847 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Ack server push request, request = NotifySubscriberRequest, requestId = 1
09:18:30.078 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
09:18:30.079 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:18:30.079 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:18:30.757 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:18:31.881 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:18:31.884 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:18:31.884 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:18:37.918 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:18:43.579 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:18:43.835 [redisson-netty-4-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:18:44.064 [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:18:48.796 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 07f54b8f-e701-4a24-a53c-779f8a0ef584
09:18:48.796 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] RpcClient init label, labels = {module=naming, source=sdk}
09:18:48.797 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:18:48.797 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:18:48.797 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:18:48.798 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:18:48.934 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932728028_192.168.110.235_50813
09:18:48.935 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:18:48.935 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
09:18:48.936 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/793483510
09:18:48.977 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9202"]
09:18:49.093 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-article 192.168.110.235:9202 register finished
09:18:49.558 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 3
09:18:49.562 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 3
09:18:52.809 [main] INFO  c.r.a.RuoYiArticleApplication - [logStarted,61] - Started RuoYiArticleApplication in 42.507 seconds (JVM running for 48.157)
09:18:52.877 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-article-dev.yml, group=DEFAULT_GROUP
09:18:52.894 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-article.yml, group=DEFAULT_GROUP
09:18:52.904 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-article, group=DEFAULT_GROUP
09:18:55.510 [RMI TCP Connection(12)-9.9.9.100] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:19:28.491 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:19:28.495 [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-article', transactionServiceGroup='ruoyi-article-group'} >
09:19:28.686 [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: 0x707219a9, L:/192.168.110.235:51257 - R:/192.168.110.188:8091]
09:19:28.686 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 44 ms, version:1.7.0,role:RMROLE,channel:[id: 0x707219a9, L:/192.168.110.235:51257 - R:/192.168.110.188:8091]
09:21:25.913 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Server healthy check fail, currentConnection = 1718932705696_192.168.110.235_50624
09:21:25.917 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:21:26.064 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Success to connect a server [192.168.110.235:8848], connectionId = 1718932885158_192.168.110.235_52077
09:21:26.064 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718932705696_192.168.110.235_50624
09:21:26.064 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718932705696_192.168.110.235_50624
09:21:26.077 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify disconnected event to listeners
09:21:26.090 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify connected event to listeners.
09:21:27.753 [nacos-grpc-client-executor-49] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Receive server push request, request = NotifySubscriberRequest, requestId = 31
09:21:27.753 [nacos-grpc-client-executor-49] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Ack server push request, request = NotifySubscriberRequest, requestId = 31
09:40:53.041 [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:40:53.440 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
09:41:00.510 [lettuce-nioEventLoop-7-2] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
09:45:04.173 [nacos-grpc-client-executor-324] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 51
09:45:04.174 [nacos-grpc-client-executor-324] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 51
09:59:56.421 [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)
09:59:56.423 [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)
09:59:56.436 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
09:59:56.436 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
10:00:03.476 [lettuce-nioEventLoop-7-5] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
10:00:03.478 [lettuce-nioEventLoop-7-4] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
10:10:28.188 [nacos-grpc-client-executor-628] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 76
10:10:28.199 [nacos-grpc-client-executor-628] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 76
10:11:11.672 [nacos-grpc-client-executor-638] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 84
10:11:11.689 [nacos-grpc-client-executor-638] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 84
10:24:07.282 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Server healthy check fail, currentConnection = 1718932704773_192.168.110.235_50619
10:24:07.283 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:24:08.460 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x707219a9, L:/192.168.110.235:51257 - R:/192.168.110.188:8091] read idle.
10:24:08.461 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x707219a9, L:/192.168.110.235:51257 - R:/192.168.110.188:8091]
10:24:08.461 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x707219a9, L:/192.168.110.235:51257 - R:/192.168.110.188:8091]) will closed
10:24:08.462 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]) will closed
10:24:08.462 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]
10:24:08.463 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]
10:24:08.463 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]
10:24:08.463 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]) will closed
10:24:08.463 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]) will closed
10:24:08.463 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]
10:24:08.463 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]
10:24:08.464 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]
10:24:08.464 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]) will closed
10:24:08.464 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x707219a9, L:/192.168.110.235:51257 ! R:/192.168.110.188:8091]) will closed
10:24:08.490 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
10:24:08.493 [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-article', transactionServiceGroup='ruoyi-article-group'} >
10:24:08.735 [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: 0x8d1b6d60, L:/192.168.110.235:58073 - R:/192.168.110.188:8091]
10:24:08.736 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 229 ms, version:1.7.0,role:RMROLE,channel:[id: 0x8d1b6d60, L:/192.168.110.235:58073 - R:/192.168.110.188:8091]
10:24:10.604 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718936649695_192.168.110.235_58077
10:24:10.604 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718932704773_192.168.110.235_50619
10:24:10.604 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718932704773_192.168.110.235_50619
10:24:10.617 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify disconnected event to listeners
10:24:10.624 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify connected event to listeners.
11:59:48.062 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Server healthy check fail, currentConnection = 1718936649695_192.168.110.235_58077
11:59:48.065 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:59:48.210 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718942387347_192.168.110.235_62230
11:59:48.210 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718936649695_192.168.110.235_58077
11:59:48.210 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718936649695_192.168.110.235_58077
11:59:48.211 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify disconnected event to listeners
11:59:48.218 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify connected event to listeners.
11:59:49.649 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x8d1b6d60, L:/192.168.110.235:58073 - R:/192.168.110.188:8091] read idle.
11:59:49.651 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x8d1b6d60, L:/192.168.110.235:58073 - R:/192.168.110.188:8091]
11:59:49.652 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8d1b6d60, L:/192.168.110.235:58073 - R:/192.168.110.188:8091]) will closed
11:59:49.652 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]) will closed
11:59:49.653 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]
11:59:49.653 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]
11:59:49.653 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]
11:59:49.653 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]) will closed
11:59:49.654 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]) will closed
11:59:49.654 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]
11:59:49.654 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]
11:59:49.654 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]
11:59:49.654 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]) will closed
11:59:49.654 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8d1b6d60, L:/192.168.110.235:58073 ! R:/192.168.110.188:8091]) will closed
11:59:53.411 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Server healthy check fail, currentConnection = 1718932885158_192.168.110.235_52077
11:59:53.411 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:59:53.591 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Success to connect a server [192.168.110.235:8848], connectionId = 1718942392715_192.168.110.235_62242
11:59:53.592 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718932885158_192.168.110.235_52077
11:59:53.592 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718932885158_192.168.110.235_52077
11:59:53.594 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify disconnected event to listeners
11:59:53.605 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify connected event to listeners.
11:59:54.250 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:59:56.080 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Server healthy check fail, currentConnection = 1718932728028_192.168.110.235_50813
11:59:56.080 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:59:58.494 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
11:59:58.495 [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-article', transactionServiceGroup='ruoyi-article-group'} >
12:00:00.385 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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
12:00:02.214 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:03.561 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect a server [192.168.110.235:8848], connectionId = 1718942402702_192.168.110.235_62269
12:00:03.562 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718932728028_192.168.110.235_50813
12:00:03.563 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718932728028_192.168.110.235_50813
12:00:03.564 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify disconnected event to listeners
12:00:03.569 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Server check success, currentServer is 192.168.110.235:8848
12:00:03.582 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
12:00:03.607 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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
12:00:03.672 [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: 0x9b9524e6, L:/192.168.110.235:62255 - R:/192.168.110.188:8091]
12:00:03.672 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 2141 ms, version:1.7.0,role:RMROLE,channel:[id: 0x9b9524e6, L:/192.168.110.235:62255 - R:/192.168.110.188:8091]
12:00:04.055 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718942403187_192.168.110.235_62276
12:00:04.055 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942387347_192.168.110.235_62230
12:00:04.055 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942387347_192.168.110.235_62230
12:00:04.056 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify disconnected event to listeners
12:00:04.062 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify connected event to listeners.
12:00:04.135 [nacos-grpc-client-executor-1956] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 311
12:00:04.136 [nacos-grpc-client-executor-1956] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 311
12:00:04.466 [nacos-grpc-client-executor-1957] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 321
12:00:04.466 [nacos-grpc-client-executor-1957] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 321
12:00:04.642 [nacos-grpc-client-executor-1955] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Receive server push request, request = NotifySubscriberRequest, requestId = 303
12:00:04.642 [nacos-grpc-client-executor-1955] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Ack server push request, request = NotifySubscriberRequest, requestId = 303
12:00:04.644 [nacos-grpc-client-executor-1957] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Receive server push request, request = NotifySubscriberRequest, requestId = 307
12:00:04.644 [nacos-grpc-client-executor-1957] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Ack server push request, request = NotifySubscriberRequest, requestId = 307
12:00:11.768 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Server healthy check fail, currentConnection = 1718932696480_192.168.110.235_50567
12:00:11.768 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:12.686 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Server healthy check fail, currentConnection = 1718942392715_192.168.110.235_62242
12:00:12.686 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:13.884 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x1097a59b, L:/192.168.110.235:50627 - R:/192.168.110.188:8091] read idle.
12:00:13.884 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x1097a59b, L:/192.168.110.235:50627 - R:/192.168.110.188:8091]
12:00:13.884 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1097a59b, L:/192.168.110.235:50627 - R:/192.168.110.188:8091]) will closed
12:00:13.884 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]) will closed
12:00:13.885 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]
12:00:13.885 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]
12:00:13.885 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]
12:00:13.885 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]) will closed
12:00:13.885 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]) will closed
12:00:13.885 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]
12:00:13.885 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]
12:00:13.886 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]
12:00:13.886 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]) will closed
12:00:13.886 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1097a59b, L:/192.168.110.235:50627 ! R:/192.168.110.188:8091]) will closed
12:00:16.190 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
12:00:16.192 [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-article', transactionServiceGroup='ruoyi-article-group'} >
12:00:16.415 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:17.899 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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
12:00:18.678 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x9b9524e6, L:/192.168.110.235:62255 - R:/192.168.110.188:8091] read idle.
12:00:18.679 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x9b9524e6, L:/192.168.110.235:62255 - R:/192.168.110.188:8091]
12:00:18.679 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9b9524e6, L:/192.168.110.235:62255 - R:/192.168.110.188:8091]) will closed
12:00:18.680 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]) will closed
12:00:18.680 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]
12:00:18.680 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]
12:00:18.681 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]
12:00:18.681 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]) will closed
12:00:18.682 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]) will closed
12:00:18.682 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]
12:00:18.683 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]
12:00:18.683 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]
12:00:18.684 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]) will closed
12:00:18.684 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9b9524e6, L:/192.168.110.235:62255 ! R:/192.168.110.188:8091]) will closed
12:00:18.813 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:20.177 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Success to connect a server [192.168.110.235:8848], connectionId = 1718942419306_192.168.110.235_62336
12:00:20.177 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942392715_192.168.110.235_62242
12:00:20.177 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942392715_192.168.110.235_62242
12:00:20.178 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify disconnected event to listeners
12:00:20.188 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify connected event to listeners.
12:00:20.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect a server [192.168.110.235:8848], connectionId = 1718942419802_192.168.110.235_62338
12:00:20.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942402702_192.168.110.235_62269
12:00:20.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942402702_192.168.110.235_62269
12:00:20.657 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify disconnected event to listeners
12:00:20.660 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
12:00:21.123 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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
12:00:24.159 [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: 0x5d6a6757, L:/192.168.110.235:62318 - R:/192.168.110.188:8091]
12:00:24.159 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 928 ms, version:1.7.0,role:TMROLE,channel:[id: 0x5d6a6757, L:/192.168.110.235:62318 - R:/192.168.110.188:8091]
12:00:24.298 [nacos-grpc-client-executor-1967] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Receive server push request, request = NotifySubscriberRequest, requestId = 356
12:00:24.298 [nacos-grpc-client-executor-1967] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Ack server push request, request = NotifySubscriberRequest, requestId = 356
12:00:24.451 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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
12:00:24.495 [nacos-grpc-client-executor-1968] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 362
12:00:24.496 [nacos-grpc-client-executor-1968] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 362
12:00:24.710 [nacos-grpc-client-executor-1969] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 368
12:00:24.710 [nacos-grpc-client-executor-1969] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 368
12:00:24.988 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718942424128_192.168.110.235_62358
12:00:24.988 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718932696480_192.168.110.235_50567
12:00:24.988 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718932696480_192.168.110.235_50567
12:00:25.003 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Notify disconnected event to listeners
12:00:25.010 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Notify connected event to listeners.
12:00:28.481 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
12:00:28.482 [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-article', transactionServiceGroup='ruoyi-article-group'} >
12:00:28.488 [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: 0xb2f87393, L:/192.168.110.235:62376 - R:/192.168.110.188:8091]
12:00:28.488 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 3 ms, version:1.7.0,role:RMROLE,channel:[id: 0xb2f87393, L:/192.168.110.235:62376 - R:/192.168.110.188:8091]
12:46:43.445 [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)
12:46:43.583 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
12:46:43.596 [lettuce-nioEventLoop-7-6] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
13:51:13.743 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Server healthy check fail, currentConnection = 1718942419802_192.168.110.235_62338
13:51:13.746 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to reconnect to a new server, server is  not appointed, will choose a random server.
13:51:13.980 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Server healthy check fail, currentConnection = 1718942419306_192.168.110.235_62336
13:51:13.981 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Try to reconnect to a new server, server is  not appointed, will choose a random server.
13:51:15.282 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Success to connect a server [192.168.110.235:8848], connectionId = 1718949073279_192.168.110.235_51401
13:51:15.282 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942419306_192.168.110.235_62336
13:51:15.282 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942419306_192.168.110.235_62336
13:51:15.283 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify disconnected event to listeners
13:51:15.292 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify connected event to listeners.
13:51:15.944 [nacos-grpc-client-executor-3301] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Receive server push request, request = NotifySubscriberRequest, requestId = 387
13:51:15.944 [nacos-grpc-client-executor-3301] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Ack server push request, request = NotifySubscriberRequest, requestId = 387
13:51:17.990 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect a server [192.168.110.235:8848], connectionId = 1718949077164_192.168.110.235_51405
13:51:17.990 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942419802_192.168.110.235_62338
13:51:17.990 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942419802_192.168.110.235_62338
13:51:17.991 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify disconnected event to listeners
13:51:17.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
13:51:18.554 [nacos-grpc-client-executor-3307] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 388
13:51:18.554 [nacos-grpc-client-executor-3307] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 388
13:51:18.885 [nacos-grpc-client-executor-3308] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 390
13:51:18.885 [nacos-grpc-client-executor-3308] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 390
14:23:36.980 [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)
14:23:37.044 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
14:23:37.127 [lettuce-nioEventLoop-7-7] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
15:33:23.178 [lettuce-nioEventLoop-7-6] 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:33:23.240 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
15:33:23.254 [lettuce-nioEventLoop-7-8] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
16:07:44.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Server healthy check fail, currentConnection = 1718942403187_192.168.110.235_62276
16:07:44.923 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:07:46.518 [nacos-grpc-client-executor-4950] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 494
16:07:46.669 [nacos-grpc-client-executor-4950] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 494
16:07:46.713 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957265259_192.168.110.235_64595
16:07:46.713 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942403187_192.168.110.235_62276
16:07:46.714 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942403187_192.168.110.235_62276
16:07:46.715 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify disconnected event to listeners
16:07:46.723 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify connected event to listeners.
16:07:48.385 [nacos-grpc-client-executor-4951] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 505
16:07:48.587 [nacos-grpc-client-executor-4951] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 505
16:09:50.108 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Server healthy check fail, currentConnection = 1718957265259_192.168.110.235_64595
16:09:50.109 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:09:50.409 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Server healthy check fail, currentConnection = 1718949077164_192.168.110.235_51405
16:09:50.409 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957390441_192.168.110.235_64746
16:09:51.262 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957265259_192.168.110.235_64595
16:09:51.262 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957265259_192.168.110.235_64595
16:09:51.264 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify disconnected event to listeners
16:09:51.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify connected event to listeners.
16:09:51.531 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect a server [192.168.110.235:8848], connectionId = 1718957390734_192.168.110.235_64750
16:09:51.531 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718949077164_192.168.110.235_51405
16:09:51.531 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718949077164_192.168.110.235_51405
16:09:51.532 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify disconnected event to listeners
16:09:51.538 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
16:09:52.085 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xb2f87393, L:/192.168.110.235:62376 - R:/192.168.110.188:8091] read idle.
16:09:52.109 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb2f87393, L:/192.168.110.235:62376 - R:/192.168.110.188:8091]
16:09:52.115 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb2f87393, L:/192.168.110.235:62376 - R:/192.168.110.188:8091]) will closed
16:09:52.115 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]) will closed
16:09:52.116 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]
16:09:52.116 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]
16:09:52.116 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]
16:09:52.117 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]) will closed
16:09:52.117 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]) will closed
16:09:52.117 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]
16:09:52.118 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]
16:09:52.118 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]
16:09:52.118 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]) will closed
16:09:52.118 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb2f87393, L:/192.168.110.235:62376 ! R:/192.168.110.188:8091]) will closed
16:09:55.827 [nacos-grpc-client-executor-4982] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 541
16:09:55.827 [nacos-grpc-client-executor-4982] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 541
16:09:55.830 [nacos-grpc-client-executor-4983] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 544
16:09:55.872 [nacos-grpc-client-executor-4983] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 544
16:09:58.493 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:09:58.494 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-article', transactionServiceGroup='ruoyi-article-group'} >
16:10:01.521 [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: 0xe122ed07, L:/192.168.110.235:64772 - R:/192.168.110.188:8091]
16:10:01.522 [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: 0xe122ed07, L:/192.168.110.235:64772 - R:/192.168.110.188:8091]
16:10:04.573 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Server healthy check fail, currentConnection = 1718957390734_192.168.110.235_64750
16:10:04.573 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:10:04.752 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect a server [192.168.110.235:8848], connectionId = 1718957403926_192.168.110.235_64784
16:10:04.752 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957390734_192.168.110.235_64750
16:10:04.752 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957390734_192.168.110.235_64750
16:10:04.753 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify disconnected event to listeners
16:10:04.759 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
16:10:13.319 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:10:17.707 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect a server [192.168.110.235:8848], connectionId = 1718957415764_192.168.110.235_64819
16:10:17.708 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957403926_192.168.110.235_64784
16:10:17.708 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957403926_192.168.110.235_64784
16:10:17.708 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify disconnected event to listeners
16:10:17.719 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
16:10:19.573 [nacos-grpc-client-executor-5000] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 598
16:10:19.581 [nacos-grpc-client-executor-5000] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 598
16:10:19.995 [nacos-grpc-client-executor-5001] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 601
16:10:19.995 [nacos-grpc-client-executor-5001] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 601
16:10:21.458 [nacos-grpc-client-executor-5002] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 609
16:10:21.476 [nacos-grpc-client-executor-5002] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 609
16:10:22.031 [nacos-grpc-client-executor-5003] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 618
16:10:22.040 [nacos-grpc-client-executor-5003] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 618
16:12:25.987 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Server healthy check fail, currentConnection = 1718957390441_192.168.110.235_64746
16:12:25.987 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:26.121 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957545318_192.168.110.235_64996
16:12:26.121 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957390441_192.168.110.235_64746
16:12:26.121 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957390441_192.168.110.235_64746
16:12:26.122 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify disconnected event to listeners
16:12:26.127 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify connected event to listeners.
16:12:26.212 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Server healthy check fail, currentConnection = 1718942424128_192.168.110.235_62358
16:12:26.212 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:26.331 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Server healthy check fail, currentConnection = 1718957415764_192.168.110.235_64819
16:12:26.332 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:26.346 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957545539_192.168.110.235_65004
16:12:26.346 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718942424128_192.168.110.235_62358
16:12:26.346 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718942424128_192.168.110.235_62358
16:12:26.347 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Notify disconnected event to listeners
16:12:26.353 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Notify connected event to listeners.
16:12:26.361 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Server healthy check fail, currentConnection = 1718949073279_192.168.110.235_51401
16:12:26.362 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:26.496 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect a server [192.168.110.235:8848], connectionId = 1718957545666_192.168.110.235_65011
16:12:26.496 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957415764_192.168.110.235_64819
16:12:26.496 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957415764_192.168.110.235_64819
16:12:26.497 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify disconnected event to listeners
16:12:26.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
16:12:26.556 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Success to connect a server [192.168.110.235:8848], connectionId = 1718957545698_192.168.110.235_65013
16:12:26.556 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718949073279_192.168.110.235_51401
16:12:26.556 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718949073279_192.168.110.235_51401
16:12:26.560 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify disconnected event to listeners
16:12:26.575 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify connected event to listeners.
16:12:28.344 [nacos-grpc-client-executor-5004] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Receive server push request, request = NotifySubscriberRequest, requestId = 654
16:12:28.344 [nacos-grpc-client-executor-5004] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Ack server push request, request = NotifySubscriberRequest, requestId = 654
16:12:29.255 [nacos-grpc-client-executor-5037] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 662
16:12:29.256 [nacos-grpc-client-executor-5037] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 662
16:12:29.523 [nacos-grpc-client-executor-5038] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 668
16:12:29.523 [nacos-grpc-client-executor-5038] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 668
16:14:29.863 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Server healthy check fail, currentConnection = 1718957545539_192.168.110.235_65004
16:14:29.864 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:30.027 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957669213_192.168.110.235_65175
16:14:30.027 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957545539_192.168.110.235_65004
16:14:30.027 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957545539_192.168.110.235_65004
16:14:30.028 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Notify disconnected event to listeners
16:14:30.034 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Notify connected event to listeners.
16:14:34.565 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Server healthy check fail, currentConnection = 1718957545318_192.168.110.235_64996
16:14:34.565 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:34.908 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Server healthy check fail, currentConnection = 1718957545666_192.168.110.235_65011
16:14:34.909 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:35.275 [nacos-grpc-client-executor-5062] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 673
16:14:35.287 [nacos-grpc-client-executor-5062] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 673
16:14:35.288 [nacos-grpc-client-executor-5065] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 688
16:14:35.296 [nacos-grpc-client-executor-5065] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 688
16:14:37.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Server healthy check fail, currentConnection = 1718957545698_192.168.110.235_65013
16:14:37.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:14:40.688 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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:14:40.747 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Success to connect a server [192.168.110.235:8848], connectionId = 1718957679949_192.168.110.235_65205
16:14:40.747 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957545698_192.168.110.235_65013
16:14:40.748 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957545698_192.168.110.235_65013
16:14:40.749 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify disconnected event to listeners
16:14:40.787 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify connected event to listeners.
16:14:41.065 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:43.907 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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
16:14:44.282 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:45.372 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718957684565_192.168.110.235_65226
16:14:45.372 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957545318_192.168.110.235_64996
16:14:45.373 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957545318_192.168.110.235_64996
16:14:45.373 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify disconnected event to listeners
16:14:45.380 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Notify connected event to listeners.
16:14:45.732 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect a server [192.168.110.235:8848], connectionId = 1718957684938_192.168.110.235_65229
16:14:45.732 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957545666_192.168.110.235_65011
16:14:45.732 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957545666_192.168.110.235_65011
16:14:45.733 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify disconnected event to listeners
16:14:45.743 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
16:14:46.004 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Server check success, currentServer is 192.168.110.235:8848
16:14:46.004 [nacos-grpc-client-executor-5037] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Receive server push request, request = NotifySubscriberRequest, requestId = 706
16:14:46.005 [nacos-grpc-client-executor-5037] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Ack server push request, request = NotifySubscriberRequest, requestId = 706
16:14:46.811 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xe122ed07, L:/192.168.110.235:64772 - R:/192.168.110.188:8091] read idle.
16:14:46.811 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xe122ed07, L:/192.168.110.235:64772 - R:/192.168.110.188:8091]
16:14:46.811 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe122ed07, L:/192.168.110.235:64772 - R:/192.168.110.188:8091]) will closed
16:14:46.812 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]) will closed
16:14:46.812 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]
16:14:46.812 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]
16:14:46.812 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]
16:14:46.813 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]) will closed
16:14:46.813 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]) will closed
16:14:46.813 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]
16:14:46.813 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]
16:14:46.813 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]
16:14:46.813 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]) will closed
16:14:46.814 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe122ed07, L:/192.168.110.235:64772 ! R:/192.168.110.188:8091]) will closed
16:14:47.036 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x5d6a6757, L:/192.168.110.235:62318 - R:/192.168.110.188:8091] read idle.
16:14:47.036 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x5d6a6757, L:/192.168.110.235:62318 - R:/192.168.110.188:8091]
16:14:47.037 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5d6a6757, L:/192.168.110.235:62318 - R:/192.168.110.188:8091]) will closed
16:14:47.037 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]) will closed
16:14:47.037 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]
16:14:47.037 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]
16:14:47.038 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]
16:14:47.038 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]) will closed
16:14:47.038 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]) will closed
16:14:47.038 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]
16:14:47.038 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]
16:14:47.038 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]
16:14:47.039 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]) will closed
16:14:47.039 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5d6a6757, L:/192.168.110.235:62318 ! R:/192.168.110.188:8091]) will closed
16:14:48.488 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:14:48.488 [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-article', transactionServiceGroup='ruoyi-article-group'} >
16:14:49.948 [nacos-grpc-client-executor-5077] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 737
16:14:49.948 [nacos-grpc-client-executor-5077] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 737
16:14:50.141 [nacos-grpc-client-executor-5078] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 740
16:14:50.142 [nacos-grpc-client-executor-5078] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 740
16:14:56.185 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:14:56.218 [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-article', transactionServiceGroup='ruoyi-article-group'} >
16:14:56.220 [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: 0xc18da916, L:/192.168.110.235:65258 - R:/192.168.110.188:8091]
16:14:56.221 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 3 ms, version:1.7.0,role:TMROLE,channel:[id: 0xc18da916, L:/192.168.110.235:65258 - R:/192.168.110.188:8091]
16:14:58.491 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x425e0958]) will closed
16:14:58.588 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:14:58.588 [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-article', transactionServiceGroup='ruoyi-article-group'} >
16:14:58.592 [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: 0xb314de61, L:/192.168.110.235:65260 - R:/192.168.110.188:8091]
16:14:58.592 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 3 ms, version:1.7.0,role:RMROLE,channel:[id: 0xb314de61, L:/192.168.110.235:65260 - R:/192.168.110.188:8091]
16:40:18.019 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Server healthy check fail, currentConnection = 1718957684938_192.168.110.235_65229
16:40:18.019 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:40:20.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Server healthy check fail, currentConnection = 1718957679949_192.168.110.235_65205
16:40:20.707 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:40:21.630 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Server healthy check fail, currentConnection = 1718957669213_192.168.110.235_65175
16:40:21.631 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:40:24.167 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:24.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Success to connect a server [192.168.110.235:8848], connectionId = 1718959223701_192.168.110.235_52087
16:40:24.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957684938_192.168.110.235_65229
16:40:24.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957684938_192.168.110.235_65229
16:40:24.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify disconnected event to listeners
16:40:24.524 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Notify connected event to listeners.
16:40:24.764 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Success to connect a server [192.168.110.235:8848], connectionId = 1718959223163_192.168.110.235_52084
16:40:24.764 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957679949_192.168.110.235_65205
16:40:24.764 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957679949_192.168.110.235_65205
16:40:24.765 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify disconnected event to listeners
16:40:24.772 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Notify connected event to listeners.
16:40:25.448 [nacos-grpc-client-executor-5393] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 844
16:40:25.448 [nacos-grpc-client-executor-5393] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 844
16:40:26.190 [nacos-grpc-client-executor-5394] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 846
16:40:26.191 [nacos-grpc-client-executor-5394] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 846
16:40:26.709 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718959225098_192.168.110.235_52088
16:40:26.709 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718957669213_192.168.110.235_65175
16:40:26.709 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718957669213_192.168.110.235_65175
16:40:26.711 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Notify disconnected event to listeners
16:40:26.720 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Notify connected event to listeners.
16:40:27.600 [nacos-grpc-client-executor-5355] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Receive server push request, request = NotifySubscriberRequest, requestId = 849
16:40:27.600 [nacos-grpc-client-executor-5355] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Ack server push request, request = NotifySubscriberRequest, requestId = 849
18:11:32.913 [nacos-grpc-client-executor-6496] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 1029
18:11:32.915 [nacos-grpc-client-executor-6496] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 1029
18:20:03.017 [lettuce-nioEventLoop-7-8] 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:20:03.085 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
18:20:03.193 [lettuce-nioEventLoop-7-1] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
20:09:03.567 [nacos-grpc-client-executor-7952] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Receive server push request, request = NotifySubscriberRequest, requestId = 1357
20:09:03.582 [nacos-grpc-client-executor-7952] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Ack server push request, request = NotifySubscriberRequest, requestId = 1357
20:11:12.148 [lettuce-nioEventLoop-7-7] 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.306 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
20:11:12.324 [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)
20:11:12.404 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
20:11:12.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
20:11:12.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Try to reconnect to a new server, server is  not appointed, will choose a random server.
20:11:12.831 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
20:11:15.758 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Server healthy check fail, currentConnection = 1718959223163_192.168.110.235_52084
20:11:15.758 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] Try to reconnect to a new server, server is  not appointed, will choose a random server.
20:11:16.350 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xc18da916, L:/192.168.110.235:65258 - R:/192.168.110.188:8091]
20:11:16.420 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,480] - remove exception rm channel:[id: 0xc18da916, L:/192.168.110.235:65258 - R:/192.168.110.188:8091]
20:11:16.429 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xb314de61, L:/192.168.110.235:65260 - R:/192.168.110.188:8091]
20:11:16.429 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,480] - remove exception rm channel:[id: 0xb314de61, L:/192.168.110.235:65260 - R:/192.168.110.188:8091]
20:11:16.429 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xc18da916, L:/192.168.110.235:65258 ! R:/192.168.110.188:8091]
20:11:16.429 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xc18da916, L:/192.168.110.235:65258 ! R:/192.168.110.188:8091]
20:11:16.429 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xc18da916, L:/192.168.110.235:65258 ! R:/192.168.110.188:8091]
20:11:16.429 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xb314de61, L:/192.168.110.235:65260 ! R:/192.168.110.188:8091]
20:11:16.430 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc18da916, L:/192.168.110.235:65258 ! R:/192.168.110.188:8091]) will closed
20:11:16.430 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb314de61, L:/192.168.110.235:65260 ! R:/192.168.110.188:8091]
20:11:16.430 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb314de61, L:/192.168.110.235:65260 ! R:/192.168.110.188:8091]
20:11:16.430 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc18da916, L:/192.168.110.235:65258 ! R:/192.168.110.188:8091]) will closed
20:11:16.430 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb314de61, L:/192.168.110.235:65260 ! R:/192.168.110.188:8091]) will closed
20:11:16.430 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb314de61, L:/192.168.110.235:65260 ! R:/192.168.110.188:8091]) will closed
20:11:16.565 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:16.580 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:18.857 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:18.860 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb314de61, L:/192.168.110.235:65260 ! R:/192.168.110.188:8091]
20:11:18.914 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb314de61, L:/192.168.110.235:65260 ! R:/192.168.110.188:8091]
20:11:18.915 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:18.948 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:18.948 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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:18.978 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:21.885 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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.169 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.169 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.199 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.504 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:22.813 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:25.105 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:25.496 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.497 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.525 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:26.589 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb27b8af8]) will closed
20:11:26.609 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:26.609 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:28.433 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:28.910 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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:28.910 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:28.924 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc733a813]) will closed
20:11:28.926 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:28.926 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:28.940 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:31.847 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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.438 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.444 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.474 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.615 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:32.909 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:35.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:36.052 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.067 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.620 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x634513ac]) will closed
20:11:36.621 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:36.621 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:38.928 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x89494218]) will closed
20:11:38.936 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:38.936 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:38.989 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:39.770 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:39.785 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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:39.914 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:42.702 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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.716 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:43.016 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:43.587 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.601 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.736 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:46.523 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:46.625 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1e94c684]) will closed
20:11:46.627 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:46.628 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:47.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.523 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.659 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:48.945 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2c4e8406]) will closed
20:11:48.948 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:48.949 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:50.443 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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.522 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.537 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.671 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.803 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:53.109 [lettuce-eventExecutorLoop-2-3] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:11:54.457 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:55.641 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.655 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.832 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:56.628 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x55fb7247]) will closed
20:11:56.630 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:56.630 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:58.579 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:58.952 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe349b6e5]) will closed
20:11:58.954 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:11:58.956 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:11:59.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:11:59.881 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.046 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.802 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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.907 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:03.206 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:04.184 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.360 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:06.635 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x212d7d24]) will closed
20:12:06.637 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:06.637 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:07.115 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:08.596 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.618 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.776 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.969 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x336bde7b]) will closed
20:12:08.971 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:08.971 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:11.531 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:13.013 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:13.119 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.135 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.300 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.313 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:16.054 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:16.651 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x01117fb9]) will closed
20:12:16.654 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:16.654 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:17.729 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.759 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:18.973 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x478deb58]) will closed
20:12:18.975 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:18.976 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:20.684 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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.449 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.539 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.659 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.212 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:23.511 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:25.398 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:26.655 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:26.656 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:26.656 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe6dfe94e]) will closed
20:12:27.270 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.360 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.482 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:28.990 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb10dff1a]) will closed
20:12:28.993 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:28.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-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:30.219 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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.193 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.283 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.403 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.503 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:33.809 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:35.145 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:36.669 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa7bc140a]) will closed
20:12:36.671 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:36.671 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:37.209 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.299 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.420 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:39.004 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2738587f]) will closed
20:12:39.006 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:39.007 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:40.157 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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.327 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.416 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.536 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.108 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:44.407 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:45.276 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:46.682 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x46be4e4b]) will closed
20:12:46.687 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:46.687 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:47.535 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.625 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.749 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:49.016 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x86b972a9]) will closed
20:12:49.018 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:49.018 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:50.500 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:52.850 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:52.941 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.059 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.214 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:55.514 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:12:55.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:56.697 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd0cabb8e]) will closed
20:12:56.698 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:56.698 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-article', transactionServiceGroup='ruoyi-article-group'} >
20:12:58.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.359 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.479 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:59.032 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x504b5592]) will closed
20:12:59.055 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:12:59.055 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:01.232 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:03.794 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:03.883 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.001 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:06.710 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1f7714c2]) will closed
20:13:06.714 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:06.715 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:06.757 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:07.309 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:07.608 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:09.061 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9665a886]) will closed
20:13:09.064 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:09.064 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:09.421 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.496 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.617 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:12.372 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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.140 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.215 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.336 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:16.726 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xcfa36781]) will closed
20:13:16.727 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:16.727 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:18.090 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:19.077 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0c1a300c]) will closed
20:13:19.078 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:19.079 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:20.964 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.159 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.517 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:21.804 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:23.915 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:26.731 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:26.732 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:26.734 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3ffb090b]) will closed
20:13:26.879 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:26.955 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.073 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:29.094 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbf1bb674]) will closed
20:13:29.095 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:29.096 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:29.829 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:32.898 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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:32.975 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.092 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.847 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:36.744 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaacad618]) will closed
20:13:36.749 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:36.750 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:39.021 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.098 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.110 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1409c394]) will closed
20:13:39.112 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:39.112 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:39.216 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.814 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:40.114 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 192.168.110.188:6379
20:13:41.970 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:45.234 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.309 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.430 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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.761 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6d2bc7d1]) will closed
20:13:46.765 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:46.765 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:48.187 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:49.126 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x67663e80]) will closed
20:13:49.127 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:49.127 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:51.554 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.748 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:54.503 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:56.778 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf97f230b]) will closed
20:13:56.780 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:56.781 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:57.979 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] 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.052 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_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.174 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573a70ab-35c2-481e-9f34-4c36ae9c5617_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:59.129 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
20:13:59.131 [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-article', transactionServiceGroup='ruoyi-article-group'} >
20:13:59.132 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd5de73cd]) will closed
20:14:00.910 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [04be1fc6-243e-4007-a93e-96beb0f965b7] 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:02.872 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
20:14:03.275 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
20:14:03.897 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
20:14:03.897 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@b677c9b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:14:03.898 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718959223701_192.168.110.235_52087
20:14:03.898 [SpringContextShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@64a6cbaa[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 8017]
20:14:03.898 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718959223701_192.168.110.235_52087
20:14:03.899 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07f54b8f-e701-4a24-a53c-779f8a0ef584] Fail to connect server, after trying 35 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:14:04.580 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [501c6bf0-6024-4090-a450-9c8089f9fbd4_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
20:14:04.763 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
20:14:04.850 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
20:14:04.867 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
20:14:04.867 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
20:14:04.887 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa1fb2de9]) will closed
20:14:04.889 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4739f4c7]) will closed