rentaiming
2024-07-08 8e6989e09a2cc4046fd6985b18f715f98f45e1c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
09:20:00.954 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:20:02.656 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 023bc0a2-8805-4f53-934f-5dfff51c812e_config-0
09:20:02.791 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 87 ms to scan 1 urls, producing 3 keys and 6 values 
09:20:02.860 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 4 keys and 9 values 
09:20:02.885 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 3 keys and 10 values 
09:20:03.962 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 1070 ms to scan 292 urls, producing 0 keys and 0 values 
09:20:03.976 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values 
09:20:03.994 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
09:20:04.016 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values 
09:20:04.444 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 425 ms to scan 292 urls, producing 0 keys and 0 values 
09:20:04.446 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:20:04.447 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1082684443
09:20:04.448 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/379886173
09:20:04.449 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:20:04.451 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:20:04.465 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:20:07.299 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932806255_192.168.110.235_51602
09:20:07.300 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] Notify connected event to listeners.
09:20:07.300 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:20:07.301 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [023bc0a2-8805-4f53-934f-5dfff51c812e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2096842550
09:20:07.503 [main] INFO  c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:20:14.747 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:20:14.955 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:20:14.975 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:20:15.172 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of cdf6c3be-723c-4415-b554-f223b749c7aa_config-0
09:20:15.172 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:20:15.173 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1082684443
09:20:15.173 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/379886173
09:20:15.173 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:20:15.174 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:20:15.175 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:20:15.292 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932814403_192.168.110.235_51657
09:20:15.292 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] Notify connected event to listeners.
09:20:15.292 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:20:15.292 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cdf6c3be-723c-4415-b554-f223b749c7aa_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2096842550
09:20:15.478 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:20:15.737 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:20:15.931 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4
09:20:15.932 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] RpcClient init label, labels = {module=naming, source=sdk}
09:20:15.934 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:20:15.934 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:20:15.935 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:20:15.936 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:20:16.055 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932815165_192.168.110.235_51661
09:20:16.056 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:20:16.056 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] Notify connected event to listeners.
09:20:16.057 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2096842550
09:20:16.132 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:20:16.619 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] Receive server push request, request = NotifySubscriberRequest, requestId = 21
09:20:16.628 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dca9c9eb-9f0f-4331-934e-bfb2ec4b1aa4] Ack server push request, request = NotifySubscriberRequest, requestId = 21
09:20:16.973 [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-system', transactionServiceGroup='ruoyi-system-group'} >
09:20:17.961 [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: 0x5ef97eb6, L:/192.168.110.235:51663 - R:/192.168.110.188:8091]
09:20:17.976 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 122 ms, version:1.7.0,role:TMROLE,channel:[id: 0x5ef97eb6, L:/192.168.110.235:51663 - R:/192.168.110.188:8091]
09:20:17.978 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
09:20:18.036 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:20:18.037 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:20:18.055 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:20:18.055 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
09:20:18.055 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:20:19.550 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9201"]
09:20:19.550 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:20:19.550 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:20:20.143 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:20:21.071 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:20:21.073 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:20:21.073 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:20:29.635 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:20:33.631 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:20:33.756 [redisson-netty-5-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:20:33.820 [redisson-netty-5-18] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:20:35.427 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 344b06dc-1419-4a62-8e97-fe19b084575b
09:20:35.428 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] RpcClient init label, labels = {module=naming, source=sdk}
09:20:35.429 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:20:35.429 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:20:35.429 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:20:35.430 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:20:35.554 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718932834656_192.168.110.235_52031
09:20:35.554 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Notify connected event to listeners.
09:20:35.554 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:20:35.554 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2096842550
09:20:35.575 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9201"]
09:20:35.606 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.235:9201 register finished
09:20:36.095 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Receive server push request, request = NotifySubscriberRequest, requestId = 27
09:20:36.104 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Ack server push request, request = NotifySubscriberRequest, requestId = 27
09:20:37.174 [main] INFO  c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 38.069 seconds (JVM running for 42.048)
09:20:37.194 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP
09:20:37.207 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP
09:20:37.215 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP
09:20:38.357 [RMI TCP Connection(9)-9.9.9.100] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:21:18.065 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:21:18.067 [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-system', transactionServiceGroup='ruoyi-system-group'} >
09:21:18.076 [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: 0x9a43fbde, L:/192.168.110.235:52072 - R:/192.168.110.188:8091]
09:21:18.077 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:1.7.0,role:RMROLE,channel:[id: 0x9a43fbde, L:/192.168.110.235:52072 - R:/192.168.110.188:8091]
09:22:51.315 [http-nio-9201-exec-6] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@20e916c1
09:22:51.315 [http-nio-9201-exec-6] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 1
09:24:31.177 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@20e916c1
09:24:31.177 [http-nio-9201-exec-9] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 0
09:24:31.177 [http-nio-9201-exec-9] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:24:34.802 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@3a10fe19
09:24:34.802 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 1
09:38:06.861 [http-nio-9201-exec-1] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@78078225
09:38:06.862 [http-nio-9201-exec-1] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
09:38:42.459 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@78078225
09:38:42.459 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 2
09:38:42.459 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:38:45.315 [http-nio-9201-exec-3] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@4afe48b5
09:38:45.316 [http-nio-9201-exec-3] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
09:39:04.059 [http-nio-9201-exec-3] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@4afe48b5
09:39:04.059 [http-nio-9201-exec-3] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 3
09:39:04.059 [http-nio-9201-exec-3] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:39:06.933 [http-nio-9201-exec-5] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@5f309bf2
09:39:06.933 [http-nio-9201-exec-5] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
09:39:49.109 [http-nio-9201-exec-3] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@5f309bf2
09:39:49.109 [http-nio-9201-exec-3] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 4
09:39:49.109 [http-nio-9201-exec-3] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:39:51.765 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@480ebafe
09:39:51.765 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
09:40:53.049 [lettuce-nioEventLoop-4-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.049 [lettuce-nioEventLoop-4-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:40:53.049 [lettuce-nioEventLoop-4-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:40:53.106 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
09:40:53.109 [lettuce-eventExecutorLoop-2-7] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
09:40:53.115 [lettuce-eventExecutorLoop-2-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
09:41:00.183 [lettuce-nioEventLoop-4-4] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
09:41:00.208 [lettuce-nioEventLoop-4-5] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
09:41:00.209 [lettuce-nioEventLoop-4-6] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
09:41:53.057 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@3a10fe19
09:41:53.057 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 1
09:41:53.057 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:42:47.570 [http-nio-9201-exec-5] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@480ebafe
09:42:47.571 [http-nio-9201-exec-5] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 5
09:42:47.571 [http-nio-9201-exec-5] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:42:53.098 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@18693682
09:42:53.098 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 1
09:43:00.746 [http-nio-9201-exec-8] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@18693682
09:43:00.747 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 6
09:43:00.747 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:43:03.775 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@4d4f10b3
09:43:03.775 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 1
09:43:37.834 [http-nio-9201-exec-3] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@4944c377
09:43:37.834 [http-nio-9201-exec-3] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
09:43:47.078 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@4944c377
09:43:47.078 [http-nio-9201-exec-4] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 8
09:43:47.078 [http-nio-9201-exec-4] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:43:47.092 [http-nio-9201-exec-7] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@4d4f10b3
09:43:47.092 [http-nio-9201-exec-7] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 7
09:43:47.092 [http-nio-9201-exec-7] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:46:23.534 [http-nio-9201-exec-7] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@2e90435b
09:46:23.534 [http-nio-9201-exec-7] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 1
09:46:33.412 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@4c72e5a3
09:46:33.412 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
09:48:14.518 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Server healthy check fail, currentConnection = 1718932834656_192.168.110.235_52031
09:48:14.519 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:48:14.650 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Success to connect a server [192.168.110.235:8848], connectionId = 1718934493758_192.168.110.235_65285
09:48:14.650 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718932834656_192.168.110.235_52031
09:48:14.651 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718932834656_192.168.110.235_52031
09:48:14.671 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Notify disconnected event to listeners
09:48:14.703 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Notify connected event to listeners.
09:48:15.510 [nacos-grpc-client-executor-344] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Receive server push request, request = NotifySubscriberRequest, requestId = 52
09:48:15.510 [nacos-grpc-client-executor-344] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Ack server push request, request = NotifySubscriberRequest, requestId = 52
09:48:23.349 [http-nio-9201-exec-8] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@2e90435b
09:48:23.350 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 9
09:48:23.350 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:48:23.637 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@8eced42
09:48:23.637 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
09:48:23.641 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@8eced42
09:48:23.641 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - b
09:48:23.641 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:48:27.508 [http-nio-9201-exec-2] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@37392ca9
09:48:27.532 [http-nio-9201-exec-2] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
09:50:01.880 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@4c72e5a3
09:50:01.880 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - a
09:50:01.881 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:50:11.043 [http-nio-9201-exec-1] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@37392ca9
09:50:11.043 [http-nio-9201-exec-1] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - c
09:50:11.043 [http-nio-9201-exec-1] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
09:52:43.413 [http-nio-9201-exec-8] INFO  c.r.s.s.i.SysUserServiceImpl - [registerUser,286] - user------------------com.ruoyi.system.api.domain.SysUser@40ff5bb5[
  userId=34
  deptId=<null>
  userName=fac41c722f164326bcf9d0fd17e0cedb
  nickName=白金用户
  email=<null>
  phonenumber=<null>
  sex=<null>
  avatar=https://hongruitang.oss-cn-beijing.aliyuncs.com/default.png
  password=$2a$10$W5/Y/t7mgCnkvP0etw.Qke8/lRS6zKOzU9g7T/dnLEUAgKMaNRSlu
  status=<null>
  delFlag=<null>
  loginIp=<null>
  loginDate=<null>
  createBy=<null>
  createTime=<null>
  updateBy=<null>
  updateTime=<null>
  remark=<null>
  dept=<null>
]
09:59:56.416 [lettuce-nioEventLoop-4-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)
09:59:56.417 [lettuce-nioEventLoop-4-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)
09:59:56.420 [lettuce-nioEventLoop-4-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)
09:59:56.480 [lettuce-eventExecutorLoop-2-6] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
09:59:56.480 [lettuce-eventExecutorLoop-2-4] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
09:59:56.480 [lettuce-eventExecutorLoop-2-5] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
10:00:03.506 [lettuce-nioEventLoop-4-7] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
10:00:03.507 [lettuce-nioEventLoop-4-1] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
10:00:03.517 [lettuce-nioEventLoop-4-8] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
10:06:15.002 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@6d47e253
10:06:15.003 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 1
10:07:42.927 [http-nio-9201-exec-2] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@66475793
10:07:42.928 [http-nio-9201-exec-2] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
10:12:49.595 [http-nio-9201-exec-10] INFO  c.r.s.s.i.SysUserServiceImpl - [registerUser,286] - user------------------com.ruoyi.system.api.domain.SysUser@42e8e883[
  userId=35
  deptId=<null>
  userName=77829c2e306344bb9d94890324973624
  nickName=白金用户
  email=<null>
  phonenumber=091otwnmKIC5EaKjcneF_J9I8RNI3UdxBnNENIX913c87E0
  sex=<null>
  avatar=https://hongruitang.oss-cn-beijing.aliyuncs.com/default.png
  password=$2a$10$8Cwih6nKGxdI3ZUlMmXvYerg9dM0uoNdVNaTffW/TLr.9PLZRTpl.
  status=<null>
  delFlag=<null>
  loginIp=<null>
  loginDate=<null>
  createBy=<null>
  createTime=<null>
  updateBy=<null>
  updateTime=<null>
  remark=<null>
  dept=<null>
]
10:12:52.712 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@909023b
10:12:52.713 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 3
10:13:05.937 [http-nio-9201-exec-8] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@6d47e253
10:13:05.937 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - d
10:13:05.938 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
10:13:17.610 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@909023b
10:13:17.611 [http-nio-9201-exec-9] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - f
10:13:17.611 [http-nio-9201-exec-9] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
10:13:28.694 [http-nio-9201-exec-2] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@373f8133
10:13:28.694 [http-nio-9201-exec-2] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
10:13:57.008 [http-nio-9201-exec-5] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@373f8133
10:13:57.009 [http-nio-9201-exec-5] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 10
10:13:57.009 [http-nio-9201-exec-5] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
10:14:05.450 [http-nio-9201-exec-7] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@66475793
10:14:05.450 [http-nio-9201-exec-7] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - e
10:14:05.450 [http-nio-9201-exec-7] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
10:14:06.857 [http-nio-9201-exec-6] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@33adf5dc
10:14:06.857 [http-nio-9201-exec-6] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 1
10:14:48.909 [http-nio-9201-exec-8] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@33adf5dc
10:14:48.910 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 11
10:14:48.910 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
10:15:09.785 [http-nio-9201-exec-9] INFO  c.r.s.s.i.SysUserServiceImpl - [registerUser,286] - user------------------com.ruoyi.system.api.domain.SysUser@2dd3154e[
  userId=36
  deptId=<null>
  userName=87f211cc3d484317a7e29264c7c4782e
  nickName=白金用户
  email=<null>
  phonenumber=<null>
  sex=<null>
  avatar=https://hongruitang.oss-cn-beijing.aliyuncs.com/default.png
  password=$2a$10$aIE/qGwuT9sBW9NIZi4SwOygWUomgidSE73vlqI0MkzYReLWezNXC
  status=<null>
  delFlag=<null>
  loginIp=<null>
  loginDate=<null>
  createBy=<null>
  createTime=<null>
  updateBy=<null>
  updateTime=<null>
  remark=<null>
  dept=<null>
]
10:15:13.600 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@1d3ab3a7
10:15:13.601 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 1
10:15:32.721 [http-nio-9201-exec-5] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@6cacead3
10:15:32.722 [http-nio-9201-exec-5] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
10:20:27.380 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@6cacead3
10:20:27.380 [http-nio-9201-exec-4] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 13
10:20:27.380 [http-nio-9201-exec-4] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
10:20:29.470 [http-nio-9201-exec-6] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@4f6f159f
10:20:29.471 [http-nio-9201-exec-6] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
10:21:06.821 [http-nio-9201-exec-5] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@1d3ab3a7
10:21:06.821 [http-nio-9201-exec-6] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@4f6f159f
10:21:06.821 [http-nio-9201-exec-5] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 12
10:21:06.821 [http-nio-9201-exec-5] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
10:21:06.821 [http-nio-9201-exec-6] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 14
10:21:06.821 [http-nio-9201-exec-6] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
10:22:10.919 [http-nio-9201-exec-2] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@28621264
10:22:10.919 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@19bc24ea
10:22:10.919 [http-nio-9201-exec-2] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
10:22:10.919 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 2
10:22:10.930 [http-nio-9201-exec-1] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@294956f4
10:22:10.930 [http-nio-9201-exec-1] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 3
10:22:10.941 [http-nio-9201-exec-3] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@3835dfb
10:22:10.941 [http-nio-9201-exec-3] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 4
10:22:10.965 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@1531e0dd
10:22:10.965 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 5
10:25:30.586 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@7077bd46
10:25:30.586 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 6
10:42:35.899 [container-1] INFO  c.r.s.l.RedisListener - [onMessage,45] - RedisListener key=SESSION_KEY:oSeiB5YDChqsPbOQhON25Nk9rx6g
10:50:52.604 [http-nio-9201-exec-8] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@7077bd46
10:50:52.604 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 1a
10:50:52.604 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
10:55:58.638 [http-nio-9201-exec-5] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@252485b2
10:55:58.638 [http-nio-9201-exec-5] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 6
10:58:00.882 [http-nio-9201-exec-10] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@252485b2
10:58:00.882 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 1b
10:58:00.882 [http-nio-9201-exec-10] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
11:00:22.491 [nacos-grpc-client-executor-1210] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Receive server push request, request = NotifySubscriberRequest, requestId = 193
11:00:22.544 [nacos-grpc-client-executor-1210] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Ack server push request, request = NotifySubscriberRequest, requestId = 193
11:00:25.079 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@4077ffd3
11:00:25.080 [http-nio-9201-exec-4] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 6
11:02:39.097 [container-2] INFO  c.r.s.l.RedisListener - [onMessage,45] - RedisListener key=oroer_automatic_cancel:-1803979311725260802
11:03:51.642 [nacos-grpc-client-executor-1253] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Receive server push request, request = NotifySubscriberRequest, requestId = 200
11:03:51.652 [nacos-grpc-client-executor-1253] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Ack server push request, request = NotifySubscriberRequest, requestId = 200
11:04:08.721 [http-nio-9201-exec-3] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@4077ffd3
11:04:08.721 [http-nio-9201-exec-3] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 1c
11:04:08.721 [http-nio-9201-exec-3] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
11:04:51.849 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,41] - 
 建立连接 - org.apache.tomcat.websocket.WsSession@55e02931
11:04:51.850 [http-nio-9201-exec-9] INFO  c.r.s.w.WebSocketServer - [onOpen,42] - 
 当前人数 - 6
11:07:16.095 [nacos-grpc-client-executor-1294] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Receive server push request, request = NotifySubscriberRequest, requestId = 207
11:07:16.108 [nacos-grpc-client-executor-1294] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Ack server push request, request = NotifySubscriberRequest, requestId = 207
11:07:16.634 [nacos-grpc-client-executor-1295] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Receive server push request, request = NotifySubscriberRequest, requestId = 214
11:07:16.646 [nacos-grpc-client-executor-1295] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [344b06dc-1419-4a62-8e97-fe19b084575b] Ack server push request, request = NotifySubscriberRequest, requestId = 214
11:08:21.021 [http-nio-9201-exec-8] INFO  c.r.s.w.WebSocketServer - [onClose,49] - 
 关闭连接 - org.apache.tomcat.websocket.WsSession@55e02931
11:08:21.022 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,56] - 
 正在移出用户 - 1d
11:08:21.022 [http-nio-9201-exec-8] INFO  c.r.s.a.u.WebSocketUsers - [remove,62] - 
 移出结果 - 成功
16:12:15.641 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:12:16.806 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 10722671-4290-423a-a5c1-097a94a1d1ea_config-0
16:12:16.884 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 48 ms to scan 1 urls, producing 3 keys and 6 values 
16:12:16.923 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values 
16:12:16.939 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values 
16:12:17.318 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 375 ms to scan 292 urls, producing 0 keys and 0 values 
16:12:17.331 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values 
16:12:17.350 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
16:12:17.365 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:12:17.691 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 322 ms to scan 292 urls, producing 0 keys and 0 values 
16:12:17.693 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:12:17.693 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2076864428
16:12:17.694 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1549840544
16:12:17.695 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:12:17.695 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:12:17.708 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
16:12:19.906 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719216739676_192.168.110.235_53084
16:12:19.908 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] Notify connected event to listeners.
16:12:19.908 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:12:19.909 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10722671-4290-423a-a5c1-097a94a1d1ea_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/58791184
16:12:20.055 [main] INFO  c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:12:23.084 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
16:12:23.164 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
16:12:23.175 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
16:12:24.222 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 959e9431-6833-466d-ba69-665be76c3850_config-0
16:12:24.223 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:12:24.223 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2076864428
16:12:24.223 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1549840544
16:12:24.223 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:12:24.224 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:12:24.224 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:12:27.251 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:12:30.266 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:12:33.275 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:33.275 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:12:33.276 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/58791184
16:12:34.049 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
16:12:38.805 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:12:39.401 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:12:42.194 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f0416586-54c5-4559-8de4-ac60634f2735
16:12:42.194 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] RpcClient init label, labels = {module=naming, source=sdk}
16:12:42.196 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:12:42.197 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:12:42.198 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:12:42.199 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:12:42.635 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:12:45.210 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:12:45.951 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:12:48.226 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:12:49.370 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:12:51.234 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:12:51.234 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:12:51.236 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/58791184
16:12:51.576 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
16:12:52.583 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
16:12:52.584 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
16:12:52.602 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:12:52.603 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
16:12:52.603 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:12:52.880 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:12:54.066 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-8201"]
16:12:54.067 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:12:54.067 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:12:54.695 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:12:55.827 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:12:55.828 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:12:55.828 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:12:56.498 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [959e9431-6833-466d-ba69-665be76c3850_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:12:57.374 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0416586-54c5-4559-8de4-ac60634f2735] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:12:57.404 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
16:12:57.415 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
16:12:57.426 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
16:12:57.426 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
16:12:57.436 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
16:21:32.339 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:21:33.607 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0
16:21:33.702 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 3 keys and 6 values 
16:21:33.743 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:21:33.760 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
16:21:34.165 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 400 ms to scan 292 urls, producing 0 keys and 0 values 
16:21:34.179 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
16:21:34.196 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
16:21:34.213 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values 
16:21:34.543 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 326 ms to scan 292 urls, producing 0 keys and 0 values 
16:21:34.546 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:21:34.547 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1638864144
16:21:34.547 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/934223763
16:21:34.548 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:21:34.549 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:21:34.560 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
16:21:36.740 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719217296504_192.168.110.235_54305
16:21:36.741 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] Notify connected event to listeners.
16:21:36.742 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:21:36.743 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b60e9c17-0ce3-4a85-baf6-bc201eaef405_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1845746463
16:21:36.850 [main] INFO  c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:21:45.983 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:21:47.142 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0
16:21:47.223 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values 
16:21:47.260 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:21:47.278 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
16:21:47.662 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 380 ms to scan 292 urls, producing 0 keys and 0 values 
16:21:47.673 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values 
16:21:47.693 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
16:21:47.708 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
16:21:48.044 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 333 ms to scan 292 urls, producing 0 keys and 0 values 
16:21:48.046 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:21:48.046 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/934223763
16:21:48.047 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2005762793
16:21:48.048 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:21:48.049 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:21:48.061 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
16:21:50.358 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719217310111_192.168.110.235_54359
16:21:50.360 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] Notify connected event to listeners.
16:21:50.361 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:21:50.361 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ebf245e-b63d-4b61-b348-2a95fc06d829_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/201245433
16:21:50.477 [main] INFO  c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:21:53.840 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
16:21:53.925 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
16:21:53.935 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
16:21:54.969 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ddb5807e-e753-448b-adc6-f3aab17ea292_config-0
16:21:54.970 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:21:54.970 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/934223763
16:21:54.970 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2005762793
16:21:54.970 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:21:54.970 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:21:54.971 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:21:57.995 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:22:01.004 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:22:04.013 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:22:04.013 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:22:04.014 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/201245433
16:22:04.767 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
16:22:09.517 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:22:10.151 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:22:12.880 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 162625be-0ca7-460f-bac4-663f9f546b1d
16:22:12.880 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] RpcClient init label, labels = {module=naming, source=sdk}
16:22:12.883 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:22:12.883 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:22:12.884 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:22:12.884 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:22:13.370 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:22:15.900 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:22:16.694 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:22:18.911 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] Try to connect to server on start up, server: {serverIp = '192.168.110.253', server main port = 8848}
16:22:20.115 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:22:21.922 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:22:21.922 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:22:21.923 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/201245433
16:22:22.267 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
16:22:23.268 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
16:22:23.270 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
16:22:23.282 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:22:23.282 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
16:22:23.282 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:22:23.637 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:22:24.492 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-8201"]
16:22:24.493 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:22:24.493 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:22:24.967 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:22:26.009 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:22:26.011 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:22:26.011 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:22:27.256 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddb5807e-e753-448b-adc6-f3aab17ea292_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:22:28.065 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [162625be-0ca7-460f-bac4-663f9f546b1d] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.253', server main port = 8848}, error = unknown
16:22:28.275 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
16:22:28.279 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
16:22:28.287 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
16:22:28.287 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
16:22:28.298 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
16:23:30.549 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:23:31.734 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of be747cc6-aec0-4f3e-b002-5044187bdb34_config-0
16:23:31.815 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values 
16:23:31.854 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:23:31.871 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
16:23:32.264 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 389 ms to scan 292 urls, producing 0 keys and 0 values 
16:23:32.278 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
16:23:32.296 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
16:23:32.319 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 2 keys and 8 values 
16:23:32.667 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 345 ms to scan 292 urls, producing 0 keys and 0 values 
16:23:32.668 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:23:32.669 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/615830852
16:23:32.670 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/664969353
16:23:32.671 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:23:32.672 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:23:32.684 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
16:23:34.786 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719217414558_192.168.110.235_54531
16:23:34.787 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] Notify connected event to listeners.
16:23:34.787 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:23:34.788 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [be747cc6-aec0-4f3e-b002-5044187bdb34_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1494158416
16:23:34.891 [main] INFO  c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:23:37.969 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
16:23:38.056 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
16:23:38.065 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
16:23:38.285 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0
16:23:38.285 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:23:38.286 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/615830852
16:23:38.286 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/664969353
16:23:38.286 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:23:38.286 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:23:38.287 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
16:23:38.403 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719217418292_192.168.110.235_54535
16:23:38.403 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:23:38.403 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] Notify connected event to listeners.
16:23:38.404 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [631ac90c-7a6b-41a3-bf05-eeeca45e1b3b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1494158416
16:23:38.519 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
16:23:38.738 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:23:39.162 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
16:23:39.232 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
16:23:39.233 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
16:23:39.244 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:23:39.245 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
16:23:39.245 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:23:40.303 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-8201"]
16:23:40.304 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:23:40.304 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:23:40.786 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:23:41.831 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:23:41.833 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:23:41.833 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:23:44.032 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
16:23:44.035 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
16:23:44.042 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
16:23:44.043 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
16:23:44.050 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
16:25:52.811 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:25:53.982 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0
16:25:54.068 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values 
16:25:54.105 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
16:25:54.122 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
16:25:54.505 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 379 ms to scan 292 urls, producing 0 keys and 0 values 
16:25:54.518 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
16:25:54.535 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
16:25:54.550 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:25:54.875 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 322 ms to scan 292 urls, producing 0 keys and 0 values 
16:25:54.876 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:25:54.877 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2083215552
16:25:54.877 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/296974277
16:25:54.878 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:25:54.879 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:25:54.892 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
16:25:56.954 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719217556731_192.168.110.235_54686
16:25:56.955 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] Notify connected event to listeners.
16:25:56.955 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:25:56.956 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7cac18-a43a-4642-9faf-2db81b6e7898_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/440902120
16:25:57.071 [main] INFO  c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:26:00.105 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
16:26:00.188 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
16:26:00.199 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
16:26:00.322 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0
16:26:00.323 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:26:00.323 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2083215552
16:26:00.323 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/296974277
16:26:00.323 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:26:00.324 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:26:00.324 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
16:26:00.444 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719217560331_192.168.110.235_54690
16:26:00.444 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:26:00.444 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] Notify connected event to listeners.
16:26:00.444 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8439c9e-28d3-42a3-a53f-d3c0d868e142_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/440902120
16:26:00.557 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
16:26:00.802 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:26:01.022 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
16:26:01.051 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
16:26:01.052 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
16:26:01.067 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:26:01.068 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
16:26:01.068 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:26:02.129 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-8201"]
16:26:02.130 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:26:02.130 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:26:02.601 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:26:03.666 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:26:03.667 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:26:03.668 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:26:09.188 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:26:11.171 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:26:11.325 [redisson-netty-5-9] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
16:26:11.477 [redisson-netty-5-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
16:26:12.997 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8f144725-225c-4e86-873a-d622b990b876
16:26:12.997 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] RpcClient init label, labels = {module=naming, source=sdk}
16:26:12.999 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:26:13.000 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:26:13.000 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:26:13.001 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
16:26:13.119 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719217573007_192.168.110.235_54815
16:26:13.119 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] Notify connected event to listeners.
16:26:13.119 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:26:13.119 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/440902120
16:26:13.148 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-8201"]
16:26:13.181 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.235:8201 register finished
16:26:13.739 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] Receive server push request, request = NotifySubscriberRequest, requestId = 13
16:26:13.748 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f144725-225c-4e86-873a-d622b990b876] Ack server push request, request = NotifySubscriberRequest, requestId = 13
16:26:14.493 [main] INFO  c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 22.91 seconds (JVM running for 25.288)
16:26:14.503 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP
16:26:14.505 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP
16:26:14.507 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP
16:26:15.096 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:03:06.805 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:03:07.979 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0
17:03:08.064 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values 
17:03:08.102 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
17:03:08.118 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
17:03:08.504 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 381 ms to scan 292 urls, producing 0 keys and 0 values 
17:03:08.517 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
17:03:08.534 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
17:03:08.550 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
17:03:08.879 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 325 ms to scan 292 urls, producing 0 keys and 0 values 
17:03:08.880 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:03:08.881 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2083215552
17:03:08.882 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/296974277
17:03:08.884 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:03:08.885 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:03:08.896 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
17:03:11.023 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719219790800_192.168.110.235_58400
17:03:11.024 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] Notify connected event to listeners.
17:03:11.025 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:03:11.026 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [bdd5ff2b-6994-46f5-aee8-80329c4e65b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1831478624
17:03:11.130 [main] INFO  c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:03:14.428 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
17:03:14.510 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
17:03:14.523 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
17:03:14.644 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0
17:03:14.645 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:03:14.646 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2083215552
17:03:14.646 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/296974277
17:03:14.647 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:03:14.647 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:03:14.648 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
17:03:14.767 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719219794656_192.168.110.235_58404
17:03:14.767 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:03:14.767 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] Notify connected event to listeners.
17:03:14.768 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f323b9c-9267-4e9b-9f3c-312172472f5a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1831478624
17:03:14.883 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
17:03:15.127 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:03:15.345 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
17:03:15.372 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
17:03:15.373 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
17:03:15.385 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:03:15.386 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
17:03:15.386 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
17:03:16.461 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-8201"]
17:03:16.461 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:03:16.462 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:03:16.928 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:03:18.054 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:03:18.056 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:03:18.056 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:03:23.273 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
17:03:23.278 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
17:03:23.284 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
17:03:23.285 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
17:03:23.291 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
17:04:59.980 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:05:01.241 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0
17:05:01.333 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 62 ms to scan 1 urls, producing 3 keys and 6 values 
17:05:01.373 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
17:05:01.389 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
17:05:01.791 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 396 ms to scan 292 urls, producing 0 keys and 0 values 
17:05:01.805 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
17:05:01.827 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values 
17:05:01.845 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values 
17:05:02.202 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 354 ms to scan 292 urls, producing 0 keys and 0 values 
17:05:02.203 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:05:02.205 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1565614310
17:05:02.205 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/783141366
17:05:02.206 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:05:02.207 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:05:02.223 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
17:05:04.516 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719219904269_192.168.110.235_58558
17:05:04.518 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] Notify connected event to listeners.
17:05:04.518 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:05:04.519 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf693df3-1b52-49b1-91a8-8a6e5961e603_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/268258490
17:05:04.634 [main] INFO  c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:05:08.030 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
17:05:08.115 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
17:05:08.128 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
17:05:08.263 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0
17:05:08.263 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:05:08.264 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1565614310
17:05:08.264 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/783141366
17:05:08.264 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:05:08.264 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:05:08.265 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
17:05:08.379 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719219908272_192.168.110.235_58566
17:05:08.380 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:05:08.380 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] Notify connected event to listeners.
17:05:08.380 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8183b8e-2082-472c-80f9-8cd87ccfca77_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/268258490
17:05:08.524 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
17:05:08.738 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:05:08.959 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
17:05:08.986 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
17:05:08.987 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
17:05:09.000 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:05:09.001 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-system] txServiceGroup[ruoyi-system-group]
17:05:09.001 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
17:05:10.118 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-8201"]
17:05:10.119 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:05:10.119 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:05:10.631 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:05:11.754 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:05:11.756 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:05:11.756 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:05:17.669 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:05:19.761 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:05:19.892 [redisson-netty-5-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
17:05:20.024 [redisson-netty-5-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
17:05:21.646 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of fe842312-1af3-43ba-9ddb-2c2d6d9ab93a
17:05:21.646 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] RpcClient init label, labels = {module=naming, source=sdk}
17:05:21.650 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:05:21.650 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:05:21.651 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:05:21.651 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] Try to connect to server on start up, server: {serverIp = '192.168.110.235', server main port = 8848}
17:05:21.773 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1719219921656_192.168.110.235_58693
17:05:21.773 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:05:21.773 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] Notify connected event to listeners.
17:05:21.773 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/268258490
17:05:21.798 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-8201"]
17:05:21.826 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.235:8201 register finished
17:05:22.371 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] Receive server push request, request = NotifySubscriberRequest, requestId = 30
17:05:22.379 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fe842312-1af3-43ba-9ddb-2c2d6d9ab93a] Ack server push request, request = NotifySubscriberRequest, requestId = 30
17:05:23.200 [main] INFO  c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 24.497 seconds (JVM running for 27.037)
17:05:23.210 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP
17:05:23.212 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP
17:05:23.215 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP
17:05:23.793 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'