rentaiming
2024-07-08 8e6989e09a2cc4046fd6985b18f715f98f45e1c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
09:00:50.671 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:00:51.610 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0
09:00:51.693 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 3 keys and 6 values 
09:00:51.744 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
09:00:51.766 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 3 keys and 10 values 
09:00:52.282 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 513 ms to scan 269 urls, producing 0 keys and 0 values 
09:00:52.302 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 5 values 
09:00:52.330 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 1 keys and 7 values 
09:00:52.352 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values 
09:00:52.746 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 392 ms to scan 269 urls, producing 0 keys and 0 values 
09:00:52.754 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:00:52.760 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/895366343
09:00:52.760 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1416665097
09:00:52.770 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:00:52.778 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:00:52.797 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:00:54.311 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717462853763_192.168.110.235_51535
09:00:54.311 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] Notify connected event to listeners.
09:00:54.311 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:00:54.311 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [daa1a261-5b2e-4161-bc9a-3084bda6aea1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/783785150
09:00:54.941 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:00:58.677 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:00:58.678 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:00:58.678 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:00:59.163 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:01:00.064 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:01:00.066 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:01:00.066 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:01:05.593 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:01:07.503 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:01:08.106 [redisson-netty-4-6] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:01:08.202 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:01:09.801 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e318d9ce-2f08-4ee5-805d-58beab90f85d
09:01:09.801 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] RpcClient init label, labels = {module=naming, source=sdk}
09:01:09.804 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:01:09.804 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:01:09.804 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:01:09.805 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:01:09.933 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717462869505_192.168.110.235_51762
09:01:09.933 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] Notify connected event to listeners.
09:01:09.933 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:01:09.933 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/783785150
09:01:09.983 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:01:10.012 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:01:10.534 [nacos-grpc-client-executor-9] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] Receive server push request, request = NotifySubscriberRequest, requestId = 3
09:01:10.541 [nacos-grpc-client-executor-9] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e318d9ce-2f08-4ee5-805d-58beab90f85d] Ack server push request, request = NotifySubscriberRequest, requestId = 3
09:01:11.052 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 21.387 seconds (JVM running for 23.409)
09:01:11.068 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:01:11.072 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:01:11.073 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:01:11.549 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:17:53.043 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:17:53.859 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 42508bc0-9524-4d97-a797-1a848c76d62c_config-0
09:17:53.922 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 40 ms to scan 1 urls, producing 3 keys and 6 values 
09:17:53.962 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
09:17:53.983 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values 
09:17:54.337 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 351 ms to scan 269 urls, producing 0 keys and 0 values 
09:17:54.354 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 5 values 
09:17:54.375 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values 
09:17:54.390 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
09:17:54.703 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 310 ms to scan 269 urls, producing 0 keys and 0 values 
09:17:54.704 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:17:54.705 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/288615534
09:17:54.706 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/895366343
09:17:54.706 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:17:54.707 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:17:54.716 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:17:56.156 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717463875580_192.168.110.235_52882
09:17:56.156 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] Notify connected event to listeners.
09:17:56.157 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:17:56.157 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42508bc0-9524-4d97-a797-1a848c76d62c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/923360749
09:17:56.257 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:17:59.307 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:17:59.308 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:17:59.308 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:17:59.723 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:18:00.362 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:18:00.363 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:18:00.363 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:18:03.939 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:18:05.433 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:18:05.817 [redisson-netty-4-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:18:05.880 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:18:07.030 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ccad55b9-881a-47a2-b925-7aa6164f7ad2
09:18:07.030 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] RpcClient init label, labels = {module=naming, source=sdk}
09:18:07.033 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:18:07.033 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:18:07.034 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:18:07.034 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:18:07.159 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717463886721_192.168.110.235_52984
09:18:07.159 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] Notify connected event to listeners.
09:18:07.159 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:18:07.159 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/923360749
09:18:07.191 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:18:07.246 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:18:07.744 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] Receive server push request, request = NotifySubscriberRequest, requestId = 41
09:18:07.750 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ccad55b9-881a-47a2-b925-7aa6164f7ad2] Ack server push request, request = NotifySubscriberRequest, requestId = 41
09:18:07.964 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 15.749 seconds (JVM running for 17.446)
09:18:07.975 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:18:07.978 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:18:07.978 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:18:08.587 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:19:20.966 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:19:21.928 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0
09:19:22.007 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 47 ms to scan 1 urls, producing 3 keys and 6 values 
09:19:22.060 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
09:19:22.076 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
09:19:22.444 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 364 ms to scan 270 urls, producing 0 keys and 0 values 
09:19:22.456 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values 
09:19:22.472 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values 
09:19:22.488 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
09:19:22.803 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 312 ms to scan 270 urls, producing 0 keys and 0 values 
09:19:22.806 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:19:22.807 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/664969353
09:19:22.808 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1415937490
09:19:22.809 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:19:22.810 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:19:22.822 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:19:24.439 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717463963898_192.168.110.235_53088
09:19:24.441 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Notify connected event to listeners.
09:19:24.442 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:19:24.444 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1494158416
09:19:24.581 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:19:28.274 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:19:28.274 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:19:28.275 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:19:28.740 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:19:29.493 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:19:29.495 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:19:29.495 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:19:33.514 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:19:35.115 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:19:35.525 [redisson-netty-4-6] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:19:35.580 [redisson-netty-4-18] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:19:36.926 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7545b818-091b-4c67-887d-653057390b5d
09:19:36.926 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] RpcClient init label, labels = {module=naming, source=sdk}
09:19:36.929 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:19:36.929 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:19:36.930 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:19:36.931 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:19:37.055 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717463976617_192.168.110.235_53188
09:19:37.055 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Notify connected event to listeners.
09:19:37.055 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:19:37.056 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1494158416
09:19:37.093 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:19:37.118 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:19:37.607 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Receive server push request, request = NotifySubscriberRequest, requestId = 44
09:19:37.613 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Ack server push request, request = NotifySubscriberRequest, requestId = 44
09:19:37.871 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 17.893 seconds (JVM running for 21.255)
09:19:37.885 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:19:37.887 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:19:37.888 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:19:38.915 [RMI TCP Connection(1)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:20:26.779 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Server healthy check fail, currentConnection = 1717463963898_192.168.110.235_53088
09:20:26.779 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Server healthy check fail, currentConnection = 1717463976617_192.168.110.235_53188
09:20:26.784 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:20:26.784 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:20:26.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717464026472_192.168.110.235_53258
09:20:26.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Success to connect a server [192.168.110.235:8848], connectionId = 1717464026474_192.168.110.235_53259
09:20:26.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717463963898_192.168.110.235_53088
09:20:26.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717463976617_192.168.110.235_53188
09:20:26.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717463976617_192.168.110.235_53188
09:20:26.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717463963898_192.168.110.235_53088
09:20:26.908 [nacos-grpc-client-executor-19] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717463976617_192.168.110.235_53188]Ignore complete event,isRunning:false,isAbandon=true
09:20:26.908 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717463963898_192.168.110.235_53088]Ignore complete event,isRunning:false,isAbandon=true
09:20:26.915 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Notify disconnected event to listeners
09:20:26.915 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Notify disconnected event to listeners
09:20:26.916 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c9e1e82-eb3d-421d-aa3d-70e42f704d8d_config-0] Notify connected event to listeners.
09:20:26.917 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Notify connected event to listeners.
09:20:30.275 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Receive server push request, request = NotifySubscriberRequest, requestId = 51
09:20:30.276 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7545b818-091b-4c67-887d-653057390b5d] Ack server push request, request = NotifySubscriberRequest, requestId = 51
09:22:02.949 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:22:03.933 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0
09:22:04.020 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values 
09:22:04.067 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
09:22:04.087 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
09:22:04.453 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 360 ms to scan 270 urls, producing 0 keys and 0 values 
09:22:04.466 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
09:22:04.487 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values 
09:22:04.501 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
09:22:04.829 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 323 ms to scan 270 urls, producing 0 keys and 0 values 
09:22:04.835 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:22:04.836 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1141811719
09:22:04.836 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/133987402
09:22:04.837 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:22:04.839 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:22:04.853 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:22:06.604 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717464126052_192.168.110.235_53328
09:22:06.604 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Notify connected event to listeners.
09:22:06.605 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:22:06.606 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/671536858
09:22:06.753 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:22:10.379 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:22:10.379 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:22:10.379 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:22:10.823 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:22:11.574 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:22:11.576 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:22:11.576 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:22:15.626 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:22:17.247 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:22:17.662 [redisson-netty-4-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:22:17.715 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:22:19.014 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e352b1ee-2012-463e-ad2d-01610ed0fd55
09:22:19.014 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] RpcClient init label, labels = {module=naming, source=sdk}
09:22:19.016 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:22:19.016 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:22:19.017 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:22:19.018 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:22:19.130 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717464138703_192.168.110.235_53436
09:22:19.130 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:22:19.130 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Notify connected event to listeners.
09:22:19.131 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/671536858
09:22:19.167 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:22:19.196 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:22:19.729 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Receive server push request, request = NotifySubscriberRequest, requestId = 56
09:22:19.735 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Ack server push request, request = NotifySubscriberRequest, requestId = 56
09:22:19.961 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.017 seconds (JVM running for 20.244)
09:22:19.976 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:22:19.979 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:22:19.980 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:22:20.752 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:24:26.905 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Receive server push request, request = ClientDetectionRequest, requestId = 58
09:24:26.905 [nacos-grpc-client-executor-30] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 57
09:24:26.906 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Ack server push request, request = ClientDetectionRequest, requestId = 58
09:24:26.906 [nacos-grpc-client-executor-30] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 57
09:24:26.916 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Server healthy check fail, currentConnection = 1717464138703_192.168.110.235_53436
09:24:26.916 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:24:26.916 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Server healthy check fail, currentConnection = 1717464126052_192.168.110.235_53328
09:24:26.916 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:24:27.034 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Success to connect a server [192.168.110.235:8848], connectionId = 1717464266604_192.168.110.235_53483
09:24:27.034 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e352b1ee-2012-463e-ad2d-01610ed0fd55] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717464138703_192.168.110.235_53436
09:24:27.034 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717464138703_192.168.110.235_53436
09:24:27.038 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717464266604_192.168.110.235_53484
09:24:27.042 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [918b391e-2f9c-40d1-8169-fb2e1842ad89_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717464126052_192.168.110.235_53328
09:24:27.044 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717464126052_192.168.110.235_53328
09:24:42.251 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:24:43.182 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0
09:24:43.262 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 49 ms to scan 1 urls, producing 3 keys and 6 values 
09:24:43.314 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 4 keys and 9 values 
09:24:43.331 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
09:24:43.683 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 348 ms to scan 270 urls, producing 0 keys and 0 values 
09:24:43.697 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
09:24:43.714 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
09:24:43.728 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
09:24:44.044 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 313 ms to scan 270 urls, producing 0 keys and 0 values 
09:24:44.047 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:24:44.048 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/280862192
09:24:44.049 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/987805552
09:24:44.050 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:24:44.051 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:24:44.063 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:24:45.660 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717464285118_192.168.110.235_53534
09:24:45.661 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Notify connected event to listeners.
09:24:45.662 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:24:45.663 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/205023576
09:24:45.763 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:24:49.267 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:24:49.267 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:24:49.267 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:24:49.697 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:24:50.449 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:24:50.450 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:24:50.450 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:24:54.423 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:24:56.069 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:24:56.489 [redisson-netty-4-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:24:56.546 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:24:57.830 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 460a4674-cefa-4e90-a5b7-82d8af6c7092
09:24:57.831 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] RpcClient init label, labels = {module=naming, source=sdk}
09:24:57.833 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:24:57.833 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:24:57.833 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:24:57.834 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:24:57.947 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717464297519_192.168.110.235_53641
09:24:57.949 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Notify connected event to listeners.
09:24:57.949 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:24:57.949 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/205023576
09:24:57.985 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:24:58.017 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:24:58.503 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Receive server push request, request = NotifySubscriberRequest, requestId = 61
09:24:58.510 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Ack server push request, request = NotifySubscriberRequest, requestId = 61
09:24:58.859 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 17.658 seconds (JVM running for 19.963)
09:24:58.871 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:24:58.873 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:24:58.874 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:24:59.572 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:26:17.500 [nacos-grpc-client-executor-17] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 64
09:26:17.500 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Receive server push request, request = ClientDetectionRequest, requestId = 65
09:26:17.500 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Ack server push request, request = ClientDetectionRequest, requestId = 65
09:26:17.500 [nacos-grpc-client-executor-17] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 64
09:26:17.506 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Server healthy check fail, currentConnection = 1717464297519_192.168.110.235_53641
09:26:17.506 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Server healthy check fail, currentConnection = 1717464285118_192.168.110.235_53534
09:26:17.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:26:17.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:26:17.651 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717464377194_192.168.110.235_53720
09:26:17.651 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f527f597-8ecb-4168-af46-b89c3b37ba4e_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717464285118_192.168.110.235_53534
09:26:17.652 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717464285118_192.168.110.235_53534
09:26:17.652 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Success to connect a server [192.168.110.235:8848], connectionId = 1717464377194_192.168.110.235_53721
09:26:17.659 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [460a4674-cefa-4e90-a5b7-82d8af6c7092] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717464297519_192.168.110.235_53641
09:26:17.660 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717464297519_192.168.110.235_53641
09:31:43.164 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:31:44.105 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0
09:31:44.184 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 47 ms to scan 1 urls, producing 3 keys and 6 values 
09:31:44.230 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
09:31:44.251 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values 
09:31:44.662 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 404 ms to scan 270 urls, producing 0 keys and 0 values 
09:31:44.674 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values 
09:31:44.691 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
09:31:44.706 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
09:31:45.032 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 323 ms to scan 270 urls, producing 0 keys and 0 values 
09:31:45.036 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:31:45.037 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1005331061
09:31:45.037 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/836386144
09:31:45.038 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:31:45.039 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:31:45.051 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:31:46.620 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717464706075_192.168.110.235_54240
09:31:46.623 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] Notify connected event to listeners.
09:31:46.624 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:31:46.626 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [23180a28-c4ef-40ff-9fad-3a094cfa4fd1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2094770768
09:31:46.750 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:31:50.247 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:31:50.248 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:31:50.248 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:31:50.676 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:31:51.392 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:31:51.394 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:31:51.395 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:31:55.343 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:31:57.024 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:31:57.433 [redisson-netty-4-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:31:57.523 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:31:58.823 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f2997b8c-a2ac-46df-8eff-ac07bb25a9dc
09:31:58.823 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] RpcClient init label, labels = {module=naming, source=sdk}
09:31:58.825 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:31:58.825 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:31:58.826 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:31:58.826 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:31:58.942 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717464718506_192.168.110.235_54341
09:31:58.943 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] Notify connected event to listeners.
09:31:58.943 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:31:58.944 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2094770768
09:31:58.997 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:31:59.023 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:31:59.575 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] Receive server push request, request = NotifySubscriberRequest, requestId = 68
09:31:59.582 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f2997b8c-a2ac-46df-8eff-ac07bb25a9dc] Ack server push request, request = NotifySubscriberRequest, requestId = 68
09:31:59.817 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 17.613 seconds (JVM running for 19.99)
09:31:59.831 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:31:59.833 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:31:59.834 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:32:00.229 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:35:50.349 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:35:51.339 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0
09:35:51.424 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values 
09:35:51.472 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values 
09:35:51.492 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
09:35:51.861 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 364 ms to scan 270 urls, producing 0 keys and 0 values 
09:35:51.874 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
09:35:51.891 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
09:35:51.905 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
09:35:52.217 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 309 ms to scan 270 urls, producing 0 keys and 0 values 
09:35:52.220 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:35:52.222 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/664969353
09:35:52.222 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1415937490
09:35:52.223 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:35:52.224 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:35:52.235 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:35:53.810 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717464953248_192.168.110.235_54539
09:35:53.810 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] Notify connected event to listeners.
09:35:53.811 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:35:53.811 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [711bc90f-7d92-4216-ad9f-b50b80fd0f24_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/546242567
09:35:53.915 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:35:57.548 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:35:57.548 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:35:57.548 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:35:57.983 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:35:58.779 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:35:58.780 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:35:58.780 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:36:02.807 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:36:04.436 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:36:04.872 [redisson-netty-4-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:36:04.987 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:36:06.304 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of af3c2d91-ee3c-4298-b1eb-50e49613d5a9
09:36:06.305 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] RpcClient init label, labels = {module=naming, source=sdk}
09:36:06.308 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:36:06.308 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:36:06.309 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:36:06.310 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:36:06.446 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717464965998_192.168.110.235_54643
09:36:06.446 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] Notify connected event to listeners.
09:36:06.446 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:36:06.447 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/546242567
09:36:06.499 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:36:06.539 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:36:07.000 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] Receive server push request, request = NotifySubscriberRequest, requestId = 75
09:36:07.007 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af3c2d91-ee3c-4298-b1eb-50e49613d5a9] Ack server push request, request = NotifySubscriberRequest, requestId = 75
09:36:07.392 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.021 seconds (JVM running for 20.215)
09:36:07.405 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:36:07.408 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:36:07.408 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:36:07.679 [RMI TCP Connection(1)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:39:52.123 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:39:53.543 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0
09:39:53.688 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 90 ms to scan 1 urls, producing 3 keys and 6 values 
09:39:53.846 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 4 keys and 9 values 
09:39:53.885 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 3 keys and 10 values 
09:39:54.567 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 674 ms to scan 270 urls, producing 0 keys and 0 values 
09:39:54.590 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 1 keys and 5 values 
09:39:54.619 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 1 keys and 7 values 
09:39:54.647 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 2 keys and 8 values 
09:39:55.153 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 498 ms to scan 270 urls, producing 0 keys and 0 values 
09:39:55.155 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:39:55.157 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/969014795
09:39:55.158 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1525241607
09:39:55.160 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:39:55.162 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:39:55.185 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:39:57.900 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717465197208_192.168.110.235_54944
09:39:57.901 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Notify connected event to listeners.
09:39:57.902 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:39:57.903 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1619730386
09:39:58.086 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:40:04.389 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:40:04.390 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:40:04.390 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:40:04.935 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:40:06.047 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:40:06.049 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:40:06.050 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:40:12.160 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:40:14.355 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:40:14.863 [redisson-netty-4-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:40:14.920 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:40:16.934 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4c25b35b-498f-4066-b5ff-54347a31bbeb
09:40:16.935 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] RpcClient init label, labels = {module=naming, source=sdk}
09:40:16.937 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:40:16.937 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:40:16.938 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:40:16.939 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:40:17.082 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717465216632_192.168.110.235_55348
09:40:17.082 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Notify connected event to listeners.
09:40:17.082 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:40:17.083 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1619730386
09:40:17.131 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:40:17.166 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:40:17.665 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Receive server push request, request = NotifySubscriberRequest, requestId = 86
09:40:17.672 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Ack server push request, request = NotifySubscriberRequest, requestId = 86
09:40:18.215 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 27.845 seconds (JVM running for 30.896)
09:40:18.230 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:40:18.233 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:40:18.234 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:40:19.065 [RMI TCP Connection(6)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:42:39.656 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Receive server push request, request = ClientDetectionRequest, requestId = 94
09:42:39.656 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 93
09:42:39.661 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Ack server push request, request = ClientDetectionRequest, requestId = 94
09:42:39.661 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Server healthy check fail, currentConnection = 1717465216632_192.168.110.235_55348
09:42:39.661 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Server healthy check fail, currentConnection = 1717465197208_192.168.110.235_54944
09:42:39.661 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 93
09:42:40.107 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:42:40.107 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:42:40.838 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717465216632_192.168.110.235_55348]Ignore complete event,isRunning:false,isAbandon=false
09:42:40.839 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717465197208_192.168.110.235_54944]Ignore complete event,isRunning:false,isAbandon=false
09:42:41.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717465360951_192.168.110.235_55599
09:42:41.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Success to connect a server [192.168.110.235:8848], connectionId = 1717465360952_192.168.110.235_55600
09:42:41.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717465197208_192.168.110.235_54944
09:42:41.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717465216632_192.168.110.235_55348
09:42:41.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465197208_192.168.110.235_54944
09:42:41.392 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465216632_192.168.110.235_55348
09:42:41.397 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Notify disconnected event to listeners
09:42:41.397 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Notify disconnected event to listeners
09:42:41.398 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [07205f8d-b868-4a1d-a63b-ab04d93b559a_config-0] Notify connected event to listeners.
09:42:41.398 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Notify connected event to listeners.
09:42:52.071 [nacos-grpc-client-executor-33] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Receive server push request, request = NotifySubscriberRequest, requestId = 97
09:42:52.071 [nacos-grpc-client-executor-33] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c25b35b-498f-4066-b5ff-54347a31bbeb] Ack server push request, request = NotifySubscriberRequest, requestId = 97
09:42:52.198 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
09:42:52.204 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
09:42:52.548 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
09:42:52.549 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@38960a60[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:42:52.549 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465360952_192.168.110.235_55600
09:42:52.553 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2cb3afdb[Running, pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 35]
09:42:52.699 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
09:42:52.703 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
09:42:52.718 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
09:42:52.718 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
09:45:08.824 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:45:11.383 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0
09:45:11.556 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 108 ms to scan 1 urls, producing 3 keys and 6 values 
09:45:11.653 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 37 ms to scan 1 urls, producing 4 keys and 9 values 
09:45:11.689 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 3 keys and 10 values 
09:45:12.336 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 636 ms to scan 272 urls, producing 0 keys and 0 values 
09:45:12.362 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 1 keys and 5 values 
09:45:12.389 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 1 keys and 7 values 
09:45:12.415 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 2 keys and 8 values 
09:45:12.957 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 536 ms to scan 272 urls, producing 0 keys and 0 values 
09:45:12.959 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:45:12.960 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1790229151
09:45:12.960 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/665641137
09:45:12.962 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:45:12.963 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:45:12.980 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:45:15.317 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717465514678_192.168.110.235_55825
09:45:15.318 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Notify connected event to listeners.
09:45:15.319 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:45:15.319 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1346667529
09:45:15.485 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:45:22.061 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:45:22.062 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:45:22.062 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:45:22.800 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:45:23.838 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:45:23.840 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:45:23.840 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:45:30.584 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:45:33.623 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:45:34.244 [redisson-netty-4-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:45:34.426 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:45:36.526 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 257ae1c7-2965-4b0d-afa7-753604dc54f2
09:45:36.527 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] RpcClient init label, labels = {module=naming, source=sdk}
09:45:36.531 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:45:36.532 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:45:36.533 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:45:36.534 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:45:36.668 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717465536213_192.168.110.235_56042
09:45:36.668 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Notify connected event to listeners.
09:45:36.668 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:45:36.669 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1346667529
09:45:36.763 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:45:36.827 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:45:37.212 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Receive server push request, request = NotifySubscriberRequest, requestId = 108
09:45:37.222 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Ack server push request, request = NotifySubscriberRequest, requestId = 108
09:45:38.410 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 30.704 seconds (JVM running for 33.59)
09:45:38.428 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:45:38.431 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:45:38.432 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:45:39.574 [RMI TCP Connection(4)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:46:49.542 [nacos-grpc-client-executor-17] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Receive server push request, request = ClientDetectionRequest, requestId = 119
09:46:49.542 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 118
09:46:49.544 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 118
09:46:49.544 [nacos-grpc-client-executor-17] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Ack server push request, request = ClientDetectionRequest, requestId = 119
09:46:49.557 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Server healthy check fail, currentConnection = 1717465536213_192.168.110.235_56042
09:46:49.557 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Server healthy check fail, currentConnection = 1717465514678_192.168.110.235_55825
09:46:49.558 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:46:49.558 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:46:49.693 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Success to connect a server [192.168.110.235:8848], connectionId = 1717465609248_192.168.110.235_56705
09:46:49.693 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717465609247_192.168.110.235_56704
09:46:49.693 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717465536213_192.168.110.235_56042
09:46:49.693 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717465514678_192.168.110.235_55825
09:46:49.693 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465514678_192.168.110.235_55825
09:46:49.693 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465536213_192.168.110.235_56042
09:46:49.698 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:46:49.698 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Notify disconnected event to listeners
09:46:49.698 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:46:49.698 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Notify disconnected event to listeners
09:46:49.698 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Notify connected event to listeners.
09:46:49.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Notify connected event to listeners.
09:46:49.832 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Success to connect a server [192.168.110.235:8848], connectionId = 1717465609380_192.168.110.235_56706
09:46:49.832 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717465609380_192.168.110.235_56707
09:46:49.832 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717465609248_192.168.110.235_56705
09:46:49.832 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717465609247_192.168.110.235_56704
09:46:49.832 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465609248_192.168.110.235_56705
09:46:49.832 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465609247_192.168.110.235_56704
09:46:49.835 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Notify disconnected event to listeners
09:46:49.835 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Notify disconnected event to listeners
09:46:49.836 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717465609247_192.168.110.235_56704]Ignore complete event,isRunning:true,isAbandon=true
09:46:49.836 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Notify connected event to listeners.
09:46:49.836 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Notify connected event to listeners.
09:46:49.836 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717465609248_192.168.110.235_56705]Ignore complete event,isRunning:true,isAbandon=true
09:46:49.839 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Server check success, currentServer is 192.168.110.235:8848
09:46:53.143 [nacos-grpc-client-executor-31] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Receive server push request, request = NotifySubscriberRequest, requestId = 124
09:46:53.144 [nacos-grpc-client-executor-31] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Ack server push request, request = NotifySubscriberRequest, requestId = 124
09:47:32.435 [http-nio-9205-exec-3] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=dYwgRM5I6ByQ+5Y85rkrgrcRAElaWZOHxYohCps7F+eauENqxLLPZ3lPOaebYdJ8YLRTNSFmsoTNYXMjyQKEwlewGaF9WGZUdbHIu/GnVnugVA6aGuv2o5y6Ehgs6MGcijrnTZ8Y28/oxqSwb3CQR/OkdkJOiMcAx7u4dwqh8K28HOGWkDlKFdw/unM/U3CW5bCdCWo07XQ3EVFPMi9flcBf7UNB29YKEIaEoJL7q4xzkhhIO8UKL8klHGCAvlAvDCwKtJIDhbdC/+k2bHYEmN4X6Et8w8gD9EH1Z/QaYG7di37c4w0uthkUHIv7uDftt/xhm0kTA64sSdAOgSGypg==&version=1.0&app_id=2021004147684313&sign_type=RSA2&timestamp=2024-06-04 09:47:31^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=9e9a857aedfc4d7cabb17144c13cRX20^_^361ms,458ms,360ms^_^trace_id:2187ffa417174656519704388eb117
09:47:47.055 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Server healthy check fail, currentConnection = 1717465609380_192.168.110.235_56706
09:48:48.694 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:47:47.055 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Server healthy check fail, currentConnection = 1717465609380_192.168.110.235_56707
09:48:48.698 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:48:48.707 [nacos-grpc-client-executor-43] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 125
09:48:48.707 [nacos-grpc-client-executor-38] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Receive server push request, request = ClientDetectionRequest, requestId = 126
09:48:48.708 [nacos-grpc-client-executor-38] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [257ae1c7-2965-4b0d-afa7-753604dc54f2] Ack server push request, request = ClientDetectionRequest, requestId = 126
09:48:48.708 [nacos-grpc-client-executor-43] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 125
09:48:48.710 [nacos-grpc-client-executor-43] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717465609380_192.168.110.235_56707]Ignore complete event,isRunning:false,isAbandon=false
09:48:48.712 [nacos-grpc-client-executor-38] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717465609380_192.168.110.235_56706]Ignore complete event,isRunning:false,isAbandon=false
09:48:48.843 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717465728385_192.168.110.235_56845
09:48:48.844 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717465609380_192.168.110.235_56707
09:48:48.844 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465609380_192.168.110.235_56707
09:48:48.845 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Notify disconnected event to listeners
09:48:48.846 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d067f5c-44c6-4d64-833f-8b640e13d2b1_config-0] Notify connected event to listeners.
09:49:06.441 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:49:07.384 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0
09:49:07.470 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 3 keys and 6 values 
09:49:07.516 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
09:49:07.534 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
09:49:07.938 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 398 ms to scan 272 urls, producing 0 keys and 0 values 
09:49:07.949 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values 
09:49:07.966 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values 
09:49:07.979 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values 
09:49:08.322 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 338 ms to scan 272 urls, producing 0 keys and 0 values 
09:49:08.323 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:49:08.325 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/203401172
09:49:08.325 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2056499811
09:49:08.326 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:49:08.328 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:49:08.340 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:49:09.915 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717465749355_192.168.110.235_56902
09:49:09.917 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Notify connected event to listeners.
09:49:09.919 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:49:09.920 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/797313059
09:49:10.048 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:49:13.724 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:49:13.724 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:49:13.724 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:49:14.166 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:49:14.904 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:49:14.905 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:49:14.906 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:49:19.079 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:49:20.751 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:49:21.168 [redisson-netty-4-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:49:21.248 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:49:22.561 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d727dea4-fdeb-4d62-91f8-51f125620c84
09:49:22.561 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] RpcClient init label, labels = {module=naming, source=sdk}
09:49:22.564 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:49:22.564 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:49:22.565 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:49:22.565 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:49:22.685 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717465762240_192.168.110.235_57003
09:49:22.685 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Notify connected event to listeners.
09:49:22.685 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:49:22.685 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/797313059
09:49:22.722 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:49:22.748 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:49:23.222 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Receive server push request, request = NotifySubscriberRequest, requestId = 129
09:49:23.229 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Ack server push request, request = NotifySubscriberRequest, requestId = 129
09:49:23.568 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.349 seconds (JVM running for 20.613)
09:49:23.579 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:49:23.582 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:49:23.583 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:49:24.712 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:49:33.551 [http-nio-9205-exec-1] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=cuofvghxaz/sjA2UnU3XXnimK6HrEwsPAHBJrbmpgiNObUKnuFvuXoUqgdHaBqSkTl10MaarzmyXu8HxXu6Djg7og9brNksgko4iMuamfBE6Ln4CZQ5+9SmvzeHDAnM8XLuR2usIyAusRXtKzarysO/s0I3VFbkXTPDsmmqvHxuhljVxOgng81XMFF7IRITET/7PQcN4ShdlV57ZJQSZVPXP0xgM/2oR53YYChbLPtivBkf3gZGWB7eSA0LQwW2yjDht47zzOipH/r7qxcSaDZMW7jcx/8Qr7+sq8EAvN76lyNFIYFuXXOeIGod3XwOkg/RQeJxxZAmFrVxUG5c/2w==&version=1.0&app_id=2021004147684313&sign_type=RSA2&timestamp=2024-06-04 09:49:32^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=3be8faf7a7344b4fa8eea6556e18TX20^_^41ms,609ms,40ms^_^trace_id:218a070817174657733508636e40bb
09:49:34.506 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Receive server push request, request = NotifySubscriberRequest, requestId = 132
09:49:34.508 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Ack server push request, request = NotifySubscriberRequest, requestId = 132
09:51:07.351 [http-nio-9205-exec-2] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=GgS3zvdah+C6KZes0U1ik++tgejYFIIPiDWMFXEZ0IUUDhlYn9FtwyVcgO9LW0mAq6EaGhw6WwNn4c/Rf5ffjgWoC7HbllD8IHqJ2M2XCWZtu3dQ0B2Eun1xOEb5bwE0CIFCw5jorohvTNduoNwKTPif4Pp54oqFZJndSjyatFbGyBrqgmKw6DOulK3w+h5WDSrWp1rIvmIlODrSEAtsOeits8La/oAozAjXqyMn5KXxVtS175Y7QyG66lytWvTUOC0xPcVxaIuI9PhlpDqZGtdkDEOdAtK0KHZDpw40/A38/+LSaTElaLv0/M21B3vAY17490/qiQ/5MeNKs/DOjg==&version=1.0&app_id=2021004147684313&sign_type=RSA2&timestamp=2024-06-04 09:51:06^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=8767cb339c1f4425b5ea7a02c727YX20^_^372ms,593ms,347ms^_^trace_id:2188d05e17174658668683153ed078
09:52:08.637 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Server healthy check fail, currentConnection = 1717465749355_192.168.110.235_56902
09:52:08.638 [nacos-grpc-client-executor-37] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Receive server push request, request = ClientDetectionRequest, requestId = 133
09:52:08.638 [nacos-grpc-client-executor-37] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Ack server push request, request = ClientDetectionRequest, requestId = 133
09:52:08.639 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:08.639 [nacos-grpc-client-executor-41] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 134
09:52:08.640 [nacos-grpc-client-executor-41] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 134
09:52:08.646 [nacos-grpc-client-executor-41] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717465749355_192.168.110.235_56902]Ignore complete event,isRunning:false,isAbandon=false
09:52:08.646 [nacos-grpc-client-executor-37] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717465762240_192.168.110.235_57003]Ignore complete event,isRunning:false,isAbandon=false
09:52:08.658 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Server healthy check fail, currentConnection = 1717465762240_192.168.110.235_57003
09:52:08.659 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:08.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Success to connect a server [192.168.110.235:8848], connectionId = 1717465928334_192.168.110.235_57156
09:52:08.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717465928334_192.168.110.235_57155
09:52:08.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717465762240_192.168.110.235_57003
09:52:08.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717465749355_192.168.110.235_56902
09:52:08.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465749355_192.168.110.235_56902
09:52:08.789 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717465762240_192.168.110.235_57003
09:52:08.795 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Notify disconnected event to listeners
09:52:08.795 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Notify disconnected event to listeners
09:52:08.796 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b991f1ce-075c-4124-a48a-3e3fcd727cf1_config-0] Notify connected event to listeners.
09:52:08.797 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Notify connected event to listeners.
09:52:08.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Server check success, currentServer is 192.168.110.235:8848
09:52:08.891 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Server check success, currentServer is 192.168.110.235:8848
09:52:11.266 [nacos-grpc-client-executor-50] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Receive server push request, request = NotifySubscriberRequest, requestId = 137
09:52:11.268 [nacos-grpc-client-executor-50] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Ack server push request, request = NotifySubscriberRequest, requestId = 137
09:52:11.273 [nacos-grpc-client-executor-51] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Receive server push request, request = NotifySubscriberRequest, requestId = 138
09:52:11.274 [nacos-grpc-client-executor-51] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d727dea4-fdeb-4d62-91f8-51f125620c84] Ack server push request, request = NotifySubscriberRequest, requestId = 138
09:52:31.626 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:52:32.576 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 834f9e4b-c088-4987-8500-86ffb888b100_config-0
09:52:32.658 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 48 ms to scan 1 urls, producing 3 keys and 6 values 
09:52:32.705 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
09:52:32.725 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
09:52:33.115 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 385 ms to scan 272 urls, producing 0 keys and 0 values 
09:52:33.128 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
09:52:33.146 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
09:52:33.160 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
09:52:33.502 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 339 ms to scan 272 urls, producing 0 keys and 0 values 
09:52:33.506 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:52:33.507 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1307810440
09:52:33.507 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/577037372
09:52:33.508 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:52:33.509 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:52:33.521 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:52:35.092 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717465954539_192.168.110.235_57215
09:52:35.093 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Notify connected event to listeners.
09:52:35.094 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:52:35.094 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/236220307
09:52:35.210 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:52:38.750 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:52:38.751 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:52:38.751 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:52:39.182 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:52:40.301 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:52:40.302 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:52:40.302 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:52:44.303 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:52:45.984 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:52:46.400 [redisson-netty-4-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:52:46.486 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:52:47.818 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 64f58d83-cfcc-47dd-9ed5-0f34fbacae31
09:52:47.818 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] RpcClient init label, labels = {module=naming, source=sdk}
09:52:47.821 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:52:47.821 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:52:47.822 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:52:47.822 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:52:47.941 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717465967494_192.168.110.235_57315
09:52:47.941 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:52:47.942 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Notify connected event to listeners.
09:52:47.942 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/236220307
09:52:47.979 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:52:48.004 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:52:48.475 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Receive server push request, request = NotifySubscriberRequest, requestId = 145
09:52:48.483 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Ack server push request, request = NotifySubscriberRequest, requestId = 145
09:52:48.836 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.191 seconds (JVM running for 20.356)
09:52:48.848 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:52:48.851 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:52:48.852 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:52:49.640 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:53:07.202 [http-nio-9205-exec-1] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=UVOAgHe0uNwTO2lTCUxYfqpyu5zDetkTNpcVhdLhiTpfPuB5hTWRdl79TW540FqUwB+1exDTifBCeMwv50tRi+h1rZn6cGREWlv/+7td0x1Pg+JpvQQIyhntxvIXwVJhB3zYWOLEmb1dPkTN++Ead5okr+Yk+Se4kFbDMQFy7ytYjXGcnr0vEV1qp6OaWlGQ2siWQ9XH1Wal23IjiAYgfE0l3IaMK79/eRPytob3CJOWzMvuviiy7Qj1IuIf/w34qNiXwduy3kEEybZ7CJG9o3iFA9lgn+qOcPQVS8jiXyXiCq1a0s94odMmItZC9Y8/fWE3NLOzlZNI3EYyS0/Ubw==&version=1.0&app_id=2021004147684313&sign_type=RSA2&timestamp=2024-06-04 09:53:05^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=3ad5463226da4f4caf60e7a7ee8dTC20^_^444ms,1036ms,529ms^_^trace_id:21932d9917174659865991052ef983
09:53:19.508 [nacos-grpc-client-executor-15] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Receive server push request, request = NotifySubscriberRequest, requestId = 146
09:53:19.509 [nacos-grpc-client-executor-15] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Ack server push request, request = NotifySubscriberRequest, requestId = 146
09:53:47.973 [nacos-grpc-client-executor-18] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Receive server push request, request = ClientDetectionRequest, requestId = 148
09:53:47.973 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 147
09:53:47.974 [nacos-grpc-client-executor-18] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [64f58d83-cfcc-47dd-9ed5-0f34fbacae31] Ack server push request, request = ClientDetectionRequest, requestId = 148
09:53:47.974 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [834f9e4b-c088-4987-8500-86ffb888b100_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 147
09:54:42.767 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:54:43.766 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0
09:54:43.847 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values 
09:54:43.902 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values 
09:54:43.930 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 3 keys and 10 values 
09:54:44.373 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 438 ms to scan 272 urls, producing 0 keys and 0 values 
09:54:44.389 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values 
09:54:44.407 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
09:54:44.421 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
09:54:44.812 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 387 ms to scan 272 urls, producing 0 keys and 0 values 
09:54:44.814 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:54:44.816 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1751753651
09:54:44.816 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1790229151
09:54:44.818 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:54:44.820 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:54:44.838 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:54:46.629 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717466086023_192.168.110.235_57504
09:54:46.630 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify connected event to listeners.
09:54:46.630 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:54:46.631 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1002762002
09:54:46.743 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:54:51.102 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:54:51.103 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:54:51.104 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:54:51.615 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:54:52.366 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:54:52.368 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:54:52.368 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:54:56.894 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:54:58.805 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:55:00.680 [redisson-netty-4-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:55:00.867 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:55:02.866 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 479907eb-8f7f-4a33-8028-1552e2692387
09:55:02.867 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] RpcClient init label, labels = {module=naming, source=sdk}
09:55:02.870 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:55:02.870 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:55:02.871 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:55:02.872 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:55:02.997 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717466102544_192.168.110.235_57635
09:55:02.998 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:55:02.998 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Notify connected event to listeners.
09:55:02.998 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1002762002
09:55:03.044 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:55:03.072 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:55:03.542 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 151
09:55:03.560 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 151
09:55:04.051 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 22.372 seconds (JVM running for 24.775)
09:55:04.066 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:55:04.069 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:55:04.070 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:55:04.815 [RMI TCP Connection(7)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:56:43.397 [http-nio-9205-exec-1] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=AWEvsIZ/uuUyWfsnyJpXQEOK3ZCsK4HIPIUaAyeCRjlQuz92jGhcQcOnkmzI9qE6ZWRzqNOMwZ4Ueb5sS3LXXiPsv4YbXPIrGi6EjdrASQpIR5TaBaqAA9uEkqmkoCpofPyEy0MO4WnvYET+VV9pjhNhWm+PfofkYtwLOxBIkz3aLQMPta6HCU9N0vj6194hzOnhBbUnSAeLPSIU/l5Sl9gwqORb+Inbdo7AxjRVbYz4QZLLYPX27lLQDyICxkKq5Q7dtZUYeI1jJIs4rv7BM1+6GfBnisLFq+A8rw8PF5LvNPi63xuTK6jbQcD92/vq0QYa1Tk2+ld3u7IlumpMIw==&version=1.0&app_id=2021004147684313&sign_type=RSA2&timestamp=2024-06-04 09:56:41^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=4de87d0ad4fd4fde8b07805c6cbaOX20^_^502ms,1174ms,555ms^_^trace_id:0b2536c317174662027174903ea889
09:56:56.556 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 157
09:56:56.557 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 157
09:57:26.212 [nacos-grpc-client-executor-41] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 160
09:57:26.215 [nacos-grpc-client-executor-41] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 160
09:57:45.666 [http-nio-9205-exec-2] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=a0H8/JwNnu9ZrV09KmES2pkEoDNeSkHorDwV/W6p0gEY235kf7KTM2BS9LcDtBP3fs8OW+KY1XKJdD+d7Yr9GAKPxh0UvcGXVB8s5lC4QoajcDNmfEZqQkdC0W5rh9kJyNtLVRDeaJ6S9I3qTpn87Zd4OFBinjV8+Wk81oOQ4DKWS7+0UGouKqYo8CTL7GAewHi1VjRpjhj2nX63W4D/u93Ion0SSrMGAB2QWIl5wVlkgY+49c/amsp8qJOiDpNGe+dwsCSnDshsw3RUKr1Qo0JR9MpyTLYbbjzpEEOnoK0FmkDAXyUQbUPaB3A0XgHD78O1kbyJeIlxz44aQcPagw==&version=1.0&app_id=2021004147684313&sign_type=RSA2&timestamp=2024-06-04 09:57:45^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=96869202756142df9c3fe5ff8f56OX20^_^17ms,364ms,24ms^_^trace_id:218300b217174662655898333efc17
09:58:10.485 [http-nio-9205-exec-3] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=UA1cUlHmGw0IKA6ybnfcwa/WHtY/PFnRmYK7K6chOCPIO+ZDAjd5ZHRiTKBGeXEHj8QmYSd9WcwCi1JaZK8leAsk4XA2B9KE75oDRqEUDb/fLKuR1AUUagPBsm8akeuE+cnHITcRB1zRZ0f5IxvR+BXfDOHTxFnlUXc56F911sbSqdhCn7Rmll7Qu1tvlRK+mH13Uqil0PdgzoajIDSKDVWV8x5Rh2JeiSUja1Clz68S4aNp7h5lTZRpSCNMDBlXJTH6tXzjWIYJXYT0KzpXQm5oywTegCe+vDZTH1HIdzNd73/1h07srQe7SvZq5Itb3Eq3JChQqwXlHhv9OeTzbA==&version=1.0&app_id=2021004147684313&sign_type=RSA2&timestamp=2024-06-04 09:58:09^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=fd10b11dfa874b089d95ce926084NA20^_^331ms,431ms,311ms^_^trace_id:218fd4d017174662901156442eba48
09:59:00.483 [nacos-grpc-client-executor-54] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = ClientDetectionRequest, requestId = 163
09:59:00.485 [nacos-grpc-client-executor-54] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = ClientDetectionRequest, requestId = 163
09:59:00.488 [nacos-grpc-client-executor-53] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 162
09:59:00.490 [nacos-grpc-client-executor-53] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 162
09:59:00.506 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Server healthy check fail, currentConnection = 1717466102544_192.168.110.235_57635
09:59:00.506 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Server healthy check fail, currentConnection = 1717466086023_192.168.110.235_57504
09:59:00.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:59:00.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:59:00.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717466340177_192.168.110.235_57952
09:59:00.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Success to connect a server [192.168.110.235:8848], connectionId = 1717466340178_192.168.110.235_57953
09:59:00.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717466086023_192.168.110.235_57504
09:59:00.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717466102544_192.168.110.235_57635
09:59:00.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717466086023_192.168.110.235_57504
09:59:00.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717466102544_192.168.110.235_57635
09:59:00.634 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Notify disconnected event to listeners
09:59:00.634 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:59:00.634 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify disconnected event to listeners
09:59:00.634 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:59:00.634 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify connected event to listeners.
09:59:00.635 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Notify connected event to listeners.
09:59:00.753 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717466340304_192.168.110.235_57955
09:59:00.753 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Success to connect a server [192.168.110.235:8848], connectionId = 1717466340304_192.168.110.235_57954
09:59:00.754 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717466340177_192.168.110.235_57952
09:59:00.754 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717466340178_192.168.110.235_57953
09:59:00.754 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717466340177_192.168.110.235_57952
09:59:00.754 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717466340178_192.168.110.235_57953
09:59:00.761 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify disconnected event to listeners
09:59:00.761 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Notify disconnected event to listeners
09:59:00.761 [nacos-grpc-client-executor-62] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717466340177_192.168.110.235_57952]Ignore complete event,isRunning:true,isAbandon=true
09:59:00.762 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify connected event to listeners.
09:59:00.762 [nacos-grpc-client-executor-63] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717466340178_192.168.110.235_57953]Ignore complete event,isRunning:true,isAbandon=true
09:59:00.762 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Notify connected event to listeners.
09:59:00.765 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Server check success, currentServer is 192.168.110.235:8848
09:59:04.076 [nacos-grpc-client-executor-68] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 168
09:59:04.076 [nacos-grpc-client-executor-68] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 168
09:59:04.079 [nacos-grpc-client-executor-69] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 169
09:59:04.081 [nacos-grpc-client-executor-69] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 169
09:59:11.940 [nacos-grpc-client-executor-71] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 172
09:59:12.290 [nacos-grpc-client-executor-71] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 172
09:59:14.255 [http-nio-9205-exec-4] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=bkKGyl4rlBJHqMxxyDJZPB1QMxfFnxFbvc8+TziMNoqzCoLKGwSLTPSfiWR//lRB1dkunsAPBItga9kW7GqOAaKnk1FRwERj5eRTl1WTyh4hlisqOdboHWTyWfLBnJxCnkaMQSk2aUioFD1Okr9nKuWV25fsG2Sgrg9TAaRGTwjLqNFQlU2/YGI5Huz0Wxx+OOFaQdkA7TnK72xRDGFt70ED8PfhlhB41htbpKyH+ojREFpiyjub9rwpKlLwhh0cTQ2JfcCyeX8VIQ158VwDJGtkD3hGXFVI6VQNUUEI/gTo/BJ1etTmMa0s9FAV+PUvXNFR6TRmqvCKvIc5SAdOag==&version=1.0&app_id=2021004147684313&sign_type=RSA2&timestamp=2024-06-04 09:59:13^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=921d63595c9e48779b5636dfd09bTX20^_^317ms,505ms,369ms^_^trace_id:0b22833d17174663537888968eabb5
09:59:50.833 [http-nio-9205-exec-5] INFO  sdk.biz.info - [logBizSummary,372] - Summary^_^null^_^null^_^ProtocalMustParams:charset=GBK&method=alipay.system.oauth.token&sign=jZgwZV5fphKjQ/ULT4LgDHZHO3gfv+SMTem1zf7/LvQJklrLbg9F3b5rwN1OfRLUDXuZSmuvLX42dzy98evKuBMYcbxF31V1HvutH1zEsdfBM2QO6a/UeW8HnTUZAqQoCUmZ1vGmFNMrXWCGBfkAJjwikjMMr595fm3pMjvnf6n4de7RzLXqmxgveybfY8c0b4LpAInp1sJHhO999lO/9fMDCQ7K/dBhUkEPMJdKNfIHkRtvm4p8Wst16Tt9Y7Z6K9MUIvjmkYDa38fXY1mnr/XvlUz0OZTwHZ+iobtfL55Q+YegpUaUP4WE42qeYeugkAhzO+GtT/eNx0iXbqN8kQ==&version=1.0&app_id=2021004147684313&sign_type=RSA2&timestamp=2024-06-04 09:59:50^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.95.ALL&format=json^_^ApplicationParams:grant_type=authorization_code&code=bbea437be19943c693e023ef2120NX20^_^15ms,321ms,17ms^_^trace_id:2196727f17174663907611478e14b8
11:03:44.826 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Server healthy check fail, currentConnection = 1717466340304_192.168.110.235_57955
11:03:44.828 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:03:47.241 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Server healthy check fail, currentConnection = 1717466340304_192.168.110.235_57954
11:03:47.241 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:03:50.977 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:03:53.374 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:03:54.185 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:03:56.609 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:03:57.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:03:59.916 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:00.923 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:03.331 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:04.428 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:06.854 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:08.037 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:10.467 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:11.761 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:14.179 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:15.575 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:17.996 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:19.528 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:21.917 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:23.559 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:25.804 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717470265336_192.168.110.235_64370
11:04:25.804 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717466340304_192.168.110.235_57955
11:04:25.804 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717466340304_192.168.110.235_57955
11:04:25.805 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify disconnected event to listeners
11:04:25.806 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify connected event to listeners.
11:04:25.943 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:04:27.200 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Success to connect a server [192.168.110.235:8848], connectionId = 1717470266730_192.168.110.235_64391
11:04:27.200 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717466340304_192.168.110.235_57954
11:04:27.200 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717466340304_192.168.110.235_57954
11:04:27.201 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Notify disconnected event to listeners
11:04:27.201 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Notify connected event to listeners.
11:04:30.364 [nacos-grpc-client-executor-870] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 214
11:04:30.364 [nacos-grpc-client-executor-870] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 214
11:04:30.366 [nacos-grpc-client-executor-871] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 213
11:04:30.367 [nacos-grpc-client-executor-871] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 213
11:04:36.415 [nacos-grpc-client-executor-872] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 217
11:04:36.416 [nacos-grpc-client-executor-872] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 217
11:05:35.326 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Server healthy check fail, currentConnection = 1717470266730_192.168.110.235_64391
11:05:35.326 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:05:35.486 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:35.714 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:36.029 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:36.451 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:36.965 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:37.585 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:38.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:38.971 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Server healthy check fail, currentConnection = 1717470265336_192.168.110.235_64370
11:05:38.971 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:05:39.085 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:39.100 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:39.303 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:39.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:40.030 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:40.049 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:40.566 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:41.051 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:41.173 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:41.884 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:42.170 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:42.692 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:43.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:43.610 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:44.624 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:44.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:45.734 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:46.111 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:46.956 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:47.618 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:48.274 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:49.229 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:49.692 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:50.936 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:51.199 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:52.755 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:52.819 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:54.534 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:54.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:56.343 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:56.691 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:58.260 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:05:58.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:00.279 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:01.019 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:02.388 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:03.340 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:04.603 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:05.752 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:06.921 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:08.261 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:09.334 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:10.881 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:11.848 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:13.594 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:14.466 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:16.403 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:17.177 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:19.318 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 29 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:19.990 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:22.329 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 30 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:22.904 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:25.446 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 31 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:25.923 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:28.665 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 32 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:29.044 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:32.010 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 33 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:32.261 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:35.424 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 34 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:35.578 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:38.936 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 35 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:38.994 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:42.502 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:42.549 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 36 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:46.117 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 36 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:46.258 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 37 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:49.829 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 37 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:50.078 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 38 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:53.655 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 38 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:53.995 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 39 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:57.599 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 39 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:06:58.015 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 40 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:01.611 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 40 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:02.135 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 41 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:05.729 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 41 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:06.357 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 42 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:09.956 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 42 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:10.664 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 43 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:14.277 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 43 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:15.077 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 44 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:18.694 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 44 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:19.585 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 45 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:23.220 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 45 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:24.195 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 46 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:27.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 46 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:28.922 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 47 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:32.548 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 47 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:33.732 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 48 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:37.367 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 48 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:38.645 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 49 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:42.279 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 49 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:43.664 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 50 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:47.286 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 50 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:48.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 51 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:52.303 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 51 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:53.704 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 52 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:57.309 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 52 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:07:58.729 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 53 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:02.334 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 53 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:03.758 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 54 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:07.341 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 54 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:08.786 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 55 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:12.360 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 55 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:13.792 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 56 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:17.370 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 56 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:18.808 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 57 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:22.496 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717470502030_192.168.110.235_52249
11:08:22.496 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717470265336_192.168.110.235_64370
11:08:22.496 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717470265336_192.168.110.235_64370
11:08:22.497 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify disconnected event to listeners
11:08:22.498 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify connected event to listeners.
11:08:23.849 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 58 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:28.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 59 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:30.515 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Server healthy check fail, currentConnection = 1717470502030_192.168.110.235_52249
11:08:30.516 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:08:30.645 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:30.856 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:31.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:31.627 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:32.152 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:32.769 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:33.488 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:33.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Fail to connect server, after trying 60 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:34.302 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
11:08:35.329 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717470514859_192.168.110.235_52446
11:08:35.329 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717470502030_192.168.110.235_52249
11:08:35.329 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717470502030_192.168.110.235_52249
11:08:35.330 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify disconnected event to listeners
11:08:35.330 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c9f01b5d-9cae-4535-9b1c-439c2ed6889c_config-0] Notify connected event to listeners.
11:08:39.012 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Success to connect a server [192.168.110.235:8848], connectionId = 1717470518544_192.168.110.235_52562
11:08:39.012 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717470266730_192.168.110.235_64391
11:08:39.012 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717470266730_192.168.110.235_64391
11:08:39.012 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Notify disconnected event to listeners
11:08:39.013 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Notify connected event to listeners.
11:08:40.107 [nacos-grpc-client-executor-1014] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 252
11:08:40.107 [nacos-grpc-client-executor-1014] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 252
11:08:40.109 [nacos-grpc-client-executor-1015] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Receive server push request, request = NotifySubscriberRequest, requestId = 255
11:08:40.110 [nacos-grpc-client-executor-1015] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [479907eb-8f7f-4a33-8028-1552e2692387] Ack server push request, request = NotifySubscriberRequest, requestId = 255
16:42:08.131 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:42:09.219 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0
16:42:09.359 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values 
16:42:09.411 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:42:09.428 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
16:42:09.966 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 534 ms to scan 272 urls, producing 0 keys and 0 values 
16:42:09.979 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
16:42:09.998 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
16:42:10.013 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:42:10.359 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 341 ms to scan 272 urls, producing 0 keys and 0 values 
16:42:10.372 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:42:10.373 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/112200409
16:42:10.373 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/864864095
16:42:10.375 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:42:10.376 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:42:10.421 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:42:13.246 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717490532370_192.168.110.235_49603
16:42:13.247 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] Notify connected event to listeners.
16:42:13.248 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:42:13.249 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0791199c-3e7d-4e10-aa55-0c5595c9dcfe_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1990722999
16:42:13.569 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:42:20.621 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:42:20.622 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:42:20.622 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:42:21.417 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:42:23.160 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:42:23.162 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:42:23.162 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:42:28.633 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:42:31.279 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:42:32.003 [redisson-netty-4-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
16:42:32.124 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
16:42:33.939 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8763e78b-b32c-4501-8947-b4343b3888c9
16:42:33.940 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] RpcClient init label, labels = {module=naming, source=sdk}
16:42:33.959 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:42:33.959 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:42:33.960 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:42:33.961 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:42:34.084 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717490553577_192.168.110.235_49756
16:42:34.084 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:42:34.084 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] Notify connected event to listeners.
16:42:34.084 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1990722999
16:42:34.169 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:42:34.204 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:42:34.735 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] Receive server push request, request = NotifySubscriberRequest, requestId = 329
16:42:34.743 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8763e78b-b32c-4501-8947-b4343b3888c9] Ack server push request, request = NotifySubscriberRequest, requestId = 329
16:42:35.187 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 28.194 seconds (JVM running for 30.818)
16:42:35.209 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:42:35.219 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:42:35.226 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:42:36.048 [RMI TCP Connection(6)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:37:01.326 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
18:37:01.333 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
18:37:01.668 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
18:37:01.669 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5a481cb4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
18:37:01.669 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717490553577_192.168.110.235_49756
18:37:01.683 [nacos-grpc-client-executor-1385] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717490553577_192.168.110.235_49756]Ignore complete event,isRunning:false,isAbandon=false
18:37:01.690 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@692cdbb5[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 1386]
18:37:01.930 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
18:37:02.001 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
18:37:02.082 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
18:37:02.112 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye