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
09:21:35.002 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:21:36.223 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 12feacd9-6062-495e-a6a6-e85b0356312d_config-0
09:21:36.353 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 83 ms to scan 1 urls, producing 3 keys and 6 values 
09:21:36.438 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 37 ms to scan 1 urls, producing 4 keys and 9 values 
09:21:36.454 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values 
09:21:36.898 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 441 ms to scan 269 urls, producing 0 keys and 0 values 
09:21:36.919 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 5 values 
09:21:36.954 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 1 urls, producing 1 keys and 7 values 
09:21:36.976 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 2 keys and 8 values 
09:21:38.283 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 1299 ms to scan 269 urls, producing 0 keys and 0 values 
09:21:38.284 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:21:38.287 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1187410086
09:21:38.355 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1509713998
09:21:38.356 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:21:38.358 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:21:38.570 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:21:40.793 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717377699312_192.168.110.235_60793
09:21:40.793 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] Notify connected event to listeners.
09:21:40.794 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:21:40.794 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [12feacd9-6062-495e-a6a6-e85b0356312d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1471800355
09:21:40.886 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:21:45.135 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:21:45.136 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:21:45.136 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:21:45.649 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:21:46.494 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:21:46.496 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:21:46.497 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:21:50.936 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:21:52.656 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:21:53.072 [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:21:53.148 [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:21:54.560 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4075c683-032b-4e7b-a26a-10ee95165508
09:21:54.560 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] RpcClient init label, labels = {module=naming, source=sdk}
09:21:54.562 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:21:54.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:21:54.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:21:54.564 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:21:54.679 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717377713342_192.168.110.235_60933
09:21:54.679 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] Notify connected event to listeners.
09:21:54.679 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:21:54.680 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1471800355
09:21:54.721 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:21:54.750 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:21:55.220 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] Receive server push request, request = NotifySubscriberRequest, requestId = 15
09:21:55.228 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4075c683-032b-4e7b-a26a-10ee95165508] Ack server push request, request = NotifySubscriberRequest, requestId = 15
09:21:55.793 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 22.405 seconds (JVM running for 24.935)
09:21:55.807 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:21:55.810 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:21:55.811 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:21:56.307 [RMI TCP Connection(5)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:28:10.791 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
09:28:10.795 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
09:28:11.123 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
09:28:11.123 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@70af900a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:28:11.123 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717377713342_192.168.110.235_60933
09:28:11.125 [nacos-grpc-client-executor-87] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717377713342_192.168.110.235_60933]Ignore complete event,isRunning:false,isAbandon=false
09:28:11.127 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@48a6d6dc[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 88]
09:28:11.271 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
09:28:11.274 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
09:28:11.287 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
09:28:11.287 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
09:37:52.465 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:37:53.753 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0
09:37:53.873 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 76 ms to scan 1 urls, producing 3 keys and 6 values 
09:37:53.948 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 4 keys and 9 values 
09:37:53.976 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 3 keys and 10 values 
09:37:54.720 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 736 ms to scan 269 urls, producing 0 keys and 0 values 
09:37:54.755 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 33 ms to scan 1 urls, producing 1 keys and 5 values 
09:37:54.786 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 1 keys and 7 values 
09:37:54.816 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 2 keys and 8 values 
09:37:55.339 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 518 ms to scan 269 urls, producing 0 keys and 0 values 
09:37:55.340 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:37:55.341 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1416665097
09:37:55.341 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/707635461
09:37:55.342 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:37:55.343 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:37:55.352 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:37:57.195 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717378675717_192.168.110.235_61906
09:37:57.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] Notify connected event to listeners.
09:37:57.196 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:37:57.197 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [573185f5-d5fb-4dc6-a576-fcff7e8c7233_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/749098095
09:37:57.303 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:38:01.726 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:38:01.726 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:38:01.726 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:38:02.305 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:38:03.211 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:38:03.213 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:38:03.214 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:38:08.140 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:38:09.780 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:38:10.185 [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:38:10.388 [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:38:11.645 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a45c8d40-5b1b-4d7c-b85b-9fc847b93a64
09:38:11.645 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] RpcClient init label, labels = {module=naming, source=sdk}
09:38:11.647 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:38:11.648 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:38:11.648 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:38:11.649 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:38:11.769 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717378690432_192.168.110.235_62166
09:38:11.769 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] Notify connected event to listeners.
09:38:11.769 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:38:11.769 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/749098095
09:38:11.802 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:38:11.825 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:38:12.404 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] Receive server push request, request = NotifySubscriberRequest, requestId = 32
09:38:12.410 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a45c8d40-5b1b-4d7c-b85b-9fc847b93a64] Ack server push request, request = NotifySubscriberRequest, requestId = 32
09:38:12.643 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 21.404 seconds (JVM running for 23.726)
09:38:12.656 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:38:12.659 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:38:12.659 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:38:13.360 [RMI TCP Connection(5)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:45:48.971 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:45:49.807 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0
09:45:49.872 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 1 urls, producing 3 keys and 6 values 
09:45:49.913 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
09:45:49.929 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
09:45:50.265 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 332 ms to scan 269 urls, producing 0 keys and 0 values 
09:45:50.285 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 5 values 
09:45:50.298 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 7 values 
09:45:50.313 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
09:45:50.616 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 299 ms to scan 269 urls, producing 0 keys and 0 values 
09:45:50.617 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_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:50.618 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/895366343
09:45:50.618 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1416665097
09:45:50.619 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:45:50.620 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:45:50.635 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:45:52.034 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717379150592_192.168.110.235_62729
09:45:52.035 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0] Notify connected event to listeners.
09:45:52.035 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:45:52.035 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [32a87029-3c45-4a27-8313-bcaab0cfe1c1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/783785150
09:45:52.122 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:45:55.335 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:45:55.335 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:45:55.336 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:45:55.768 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:45:56.365 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:45:56.367 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:45:56.367 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:45:59.891 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:46:01.353 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:46:01.724 [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:46:01.781 [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:46:02.900 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8344900e-b66f-4e43-8cb7-5cc56b1f7241
09:46:02.924 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] RpcClient init label, labels = {module=naming, source=sdk}
09:46:02.926 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:46:02.927 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:46:02.927 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:46:02.928 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:46:03.057 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717379161718_192.168.110.235_62826
09:46:03.057 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:46:03.057 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] Notify connected event to listeners.
09:46:03.057 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/783785150
09:46:03.088 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:46:03.112 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:46:03.606 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] Receive server push request, request = NotifySubscriberRequest, requestId = 58
09:46:03.613 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8344900e-b66f-4e43-8cb7-5cc56b1f7241] Ack server push request, request = NotifySubscriberRequest, requestId = 58
09:46:03.917 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 15.781 seconds (JVM running for 17.461)
09:46:03.927 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:46:03.929 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:46:03.930 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:46:04.749 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:55:18.626 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
09:55:18.629 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
09:55:18.963 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
09:55:18.964 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6403ce2a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:55:18.964 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717379161718_192.168.110.235_62826
09:55:18.966 [nacos-grpc-client-executor-124] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717379161718_192.168.110.235_62826]Ignore complete event,isRunning:false,isAbandon=false
09:55:18.971 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@57fda846[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 125]
09:55:19.112 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
09:55:19.116 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
09:55:19.125 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
09:55:19.126 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
09:55:44.621 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:55:45.792 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0
09:55:45.888 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values 
09:55:45.947 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
09:55:45.963 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values 
09:55:46.516 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 549 ms to scan 269 urls, producing 0 keys and 0 values 
09:55:46.559 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 41 ms to scan 1 urls, producing 1 keys and 5 values 
09:55:46.591 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 1 urls, producing 1 keys and 7 values 
09:55:46.621 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 2 keys and 8 values 
09:55:47.068 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 442 ms to scan 269 urls, producing 0 keys and 0 values 
09:55:47.069 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:55:47.070 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/288615534
09:55:47.071 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/895366343
09:55:47.072 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:55:47.073 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:55:47.092 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:55:49.215 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717379747755_192.168.110.235_63564
09:55:49.216 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] Notify connected event to listeners.
09:55:49.216 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:55:49.217 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6ba64a0-a60c-4de7-901a-7416725ef4b8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/923360749
09:55:49.315 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:55:53.457 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:55:53.458 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:55:53.458 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:55:54.100 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:55:54.937 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:55:54.938 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:55:54.939 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:56:00.033 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:56:01.923 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:56:02.385 [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:56:02.439 [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:56:03.917 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 29f4eca9-741e-4737-9614-933e09a9792d
09:56:03.918 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] RpcClient init label, labels = {module=naming, source=sdk}
09:56:03.920 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:56:03.920 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:56:03.921 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:56:03.921 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:56:04.039 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717379762710_192.168.110.235_63718
09:56:04.039 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:56:04.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] Notify connected event to listeners.
09:56:04.039 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/923360749
09:56:04.076 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:56:04.103 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:56:04.589 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] Receive server push request, request = NotifySubscriberRequest, requestId = 87
09:56:04.596 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [29f4eca9-741e-4737-9614-933e09a9792d] Ack server push request, request = NotifySubscriberRequest, requestId = 87
09:56:05.235 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 21.811 seconds (JVM running for 23.882)
09:56:05.250 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:56:05.253 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:56:05.254 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:56:06.262 [RMI TCP Connection(4)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:04:20.164 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
10:04:21.027 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 88ad0f40-e464-44f4-9111-0344021e1273_config-0
10:04:21.101 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 45 ms to scan 1 urls, producing 3 keys and 6 values 
10:04:21.149 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
10:04:21.167 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
10:04:21.546 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 376 ms to scan 269 urls, producing 0 keys and 0 values 
10:04:21.565 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 5 values 
10:04:21.584 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
10:04:21.599 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
10:04:21.916 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 314 ms to scan 269 urls, producing 0 keys and 0 values 
10:04:21.917 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
10:04:21.918 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1416665097
10:04:21.918 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/707635461
10:04:21.919 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
10:04:21.920 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
10:04:21.929 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:04:23.393 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717380261940_192.168.110.235_64297
10:04:23.393 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] Notify connected event to listeners.
10:04:23.393 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:04:23.394 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ad0f40-e464-44f4-9111-0344021e1273_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/749098095
10:04:23.481 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
10:04:26.451 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
10:04:26.451 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
10:04:26.451 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
10:04:26.872 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
10:04:27.469 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
10:04:27.470 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
10:04:27.470 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
10:04:30.977 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
10:04:32.451 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
10:04:32.825 [redisson-netty-4-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
10:04:32.881 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
10:04:34.067 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d31fd405-70dc-4b39-9fd6-806decf0ad74
10:04:34.068 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] RpcClient init label, labels = {module=naming, source=sdk}
10:04:34.069 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:04:34.070 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:04:34.070 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:04:34.070 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:04:34.187 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717380272862_192.168.110.235_64397
10:04:34.187 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] Notify connected event to listeners.
10:04:34.187 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:04:34.188 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/749098095
10:04:34.233 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
10:04:34.257 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
10:04:34.764 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] Receive server push request, request = NotifySubscriberRequest, requestId = 95
10:04:34.771 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d31fd405-70dc-4b39-9fd6-806decf0ad74] Ack server push request, request = NotifySubscriberRequest, requestId = 95
10:04:35.007 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 15.695 seconds (JVM running for 17.38)
10:04:35.019 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
10:04:35.022 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
10:04:35.023 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
10:04:35.877 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:06:21.055 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
10:06:21.888 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of fc6f16fc-05ad-41d1-9578-43184322263a_config-0
10:06:21.952 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 40 ms to scan 1 urls, producing 3 keys and 6 values 
10:06:21.995 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
10:06:22.011 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
10:06:22.358 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 343 ms to scan 269 urls, producing 0 keys and 0 values 
10:06:22.384 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 1 keys and 5 values 
10:06:22.398 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 7 values 
10:06:22.413 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
10:06:22.730 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 314 ms to scan 269 urls, producing 0 keys and 0 values 
10:06:22.732 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
10:06:22.732 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/288615534
10:06:22.733 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/895366343
10:06:22.734 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
10:06:22.734 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
10:06:22.743 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:06:24.146 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717380382701_192.168.110.235_64566
10:06:24.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Notify connected event to listeners.
10:06:24.148 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:06:24.148 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/923360749
10:06:24.235 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
10:06:27.152 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
10:06:27.153 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
10:06:27.153 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
10:06:27.561 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
10:06:28.157 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
10:06:28.159 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
10:06:28.159 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
10:06:31.662 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
10:06:33.181 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
10:06:33.571 [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
10:06:33.638 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
10:06:34.802 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 98efe7e0-4b58-4821-89ce-82ae6c38ba72
10:06:34.802 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] RpcClient init label, labels = {module=naming, source=sdk}
10:06:34.805 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:06:34.805 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:06:34.806 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:06:34.806 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:06:34.931 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717380393599_192.168.110.235_64742
10:06:34.931 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Notify connected event to listeners.
10:06:34.931 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:06:34.932 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/923360749
10:06:34.962 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
10:06:34.987 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
10:06:35.541 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Receive server push request, request = NotifySubscriberRequest, requestId = 101
10:06:35.548 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Ack server push request, request = NotifySubscriberRequest, requestId = 101
10:06:35.735 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 15.523 seconds (JVM running for 17.273)
10:06:35.746 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
10:06:35.749 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
10:06:35.750 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
10:06:36.690 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:56:26.859 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Server healthy check fail, currentConnection = 1717380393599_192.168.110.235_64742
10:56:26.861 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:56:30.116 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Success to connect a server [192.168.110.235:8848], connectionId = 1717383388805_192.168.110.235_50422
10:56:30.116 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717380393599_192.168.110.235_64742
10:56:30.117 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717380393599_192.168.110.235_64742
10:56:30.118 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Notify disconnected event to listeners
10:56:30.123 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Notify connected event to listeners.
10:56:31.313 [nacos-grpc-client-executor-617] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Receive server push request, request = NotifySubscriberRequest, requestId = 127
10:56:31.314 [nacos-grpc-client-executor-617] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Ack server push request, request = NotifySubscriberRequest, requestId = 127
12:01:47.179 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Server healthy check fail, currentConnection = 1717383388805_192.168.110.235_50422
12:01:47.181 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:01:48.165 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Server healthy check fail, currentConnection = 1717380382701_192.168.110.235_64566
12:01:48.165 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:01:50.613 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Success to connect a server [192.168.110.235:8848], connectionId = 1717387309322_192.168.110.235_52088
12:01:50.613 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717383388805_192.168.110.235_50422
12:01:50.613 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717383388805_192.168.110.235_50422
12:01:50.614 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Notify disconnected event to listeners
12:01:50.615 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Notify connected event to listeners.
12:01:52.329 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717387310123_192.168.110.235_52089
12:01:52.329 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717380382701_192.168.110.235_64566
12:01:52.329 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717380382701_192.168.110.235_64566
12:01:52.330 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Notify disconnected event to listeners
12:01:52.331 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Notify connected event to listeners.
12:01:53.534 [nacos-grpc-client-executor-1407] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Receive server push request, request = NotifySubscriberRequest, requestId = 161
12:01:53.535 [nacos-grpc-client-executor-1407] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Ack server push request, request = NotifySubscriberRequest, requestId = 161
13:05:20.627 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Server healthy check fail, currentConnection = 1717387309322_192.168.110.235_52088
13:05:20.628 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Try to reconnect to a new server, server is  not appointed, will choose a random server.
13:05:22.489 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Server healthy check fail, currentConnection = 1717387310123_192.168.110.235_52089
13:05:22.489 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
13:05:22.612 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717391122945_192.168.110.235_53110
13:05:22.612 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717387310123_192.168.110.235_52089
13:05:22.612 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717387310123_192.168.110.235_52089
13:05:22.613 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Notify disconnected event to listeners
13:05:22.614 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc6f16fc-05ad-41d1-9578-43184322263a_config-0] Notify connected event to listeners.
13:05:22.642 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Success to connect a server [192.168.110.235:8848], connectionId = 1717391122973_192.168.110.235_53112
13:05:22.642 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717387309322_192.168.110.235_52088
13:05:22.642 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717387309322_192.168.110.235_52088
13:05:22.643 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Notify disconnected event to listeners
13:05:22.645 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Notify connected event to listeners.
13:05:25.268 [nacos-grpc-client-executor-2174] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Receive server push request, request = NotifySubscriberRequest, requestId = 173
13:05:25.269 [nacos-grpc-client-executor-2174] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [98efe7e0-4b58-4821-89ce-82ae6c38ba72] Ack server push request, request = NotifySubscriberRequest, requestId = 173
14:10:10.729 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
14:10:10.733 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
14:10:11.067 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
14:10:11.068 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@64252562[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
14:10:11.069 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717391122973_192.168.110.235_53112
14:10:11.070 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@35e29ded[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 2957]
14:10:11.249 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
14:10:11.254 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
14:10:11.273 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
14:10:11.274 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
14:15:09.180 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
14:15:10.052 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 79cf0067-e4c5-46a6-b387-bfc340962448_config-0
14:15:10.122 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 45 ms to scan 1 urls, producing 3 keys and 6 values 
14:15:10.163 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 4 keys and 9 values 
14:15:10.180 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
14:15:10.537 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 352 ms to scan 269 urls, producing 0 keys and 0 values 
14:15:10.556 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 5 values 
14:15:10.571 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 7 values 
14:15:10.584 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
14:15:10.895 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 307 ms to scan 269 urls, producing 0 keys and 0 values 
14:15:10.896 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
14:15:10.897 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1416665097
14:15:10.898 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/707635461
14:15:10.898 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
14:15:10.899 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
14:15:10.908 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:15:12.392 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717395312622_192.168.110.235_54942
14:15:12.394 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Notify connected event to listeners.
14:15:12.395 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:15:12.397 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/749098095
14:15:12.495 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
14:15:16.799 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
14:15:16.800 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:15:16.800 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
14:15:17.250 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:15:18.318 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
14:15:18.321 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
14:15:18.321 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
14:15:23.471 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:15:26.125 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
14:15:26.618 [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
14:15:26.683 [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
14:15:28.688 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ac13c8c7-9ad6-47b9-bea6-f9c150cff024
14:15:28.688 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] RpcClient init label, labels = {module=naming, source=sdk}
14:15:28.691 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:15:28.691 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:15:28.692 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:15:28.693 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:15:28.836 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717395329182_192.168.110.235_55057
14:15:28.836 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] Notify connected event to listeners.
14:15:28.836 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:15:28.837 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/749098095
14:15:28.894 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
14:15:28.932 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
14:15:29.435 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] Receive server push request, request = NotifySubscriberRequest, requestId = 185
14:15:29.449 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ac13c8c7-9ad6-47b9-bea6-f9c150cff024] Ack server push request, request = NotifySubscriberRequest, requestId = 185
14:15:30.425 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 22.32 seconds (JVM running for 24.286)
14:15:30.443 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
14:15:30.445 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
14:15:30.447 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
14:15:31.076 [RMI TCP Connection(5)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:34:05.945 [nacos-grpc-client-executor-960] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 251
15:34:05.947 [nacos-grpc-client-executor-960] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [79cf0067-e4c5-46a6-b387-bfc340962448_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 251
16:11:39.418 [http-nio-9205-exec-3] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_-COVAk3O1iMojDP86hAGxxCyNVaMWoE8lAWh8LW5kdYc1gk370UG-04RtRpcarctelJbABtgllM-feGF0D6wl_j2LMq8gMXpJoePBznJUDNSBRK8_4Jlsa_4yyQYAJgAAADFO","expires_in":7200}
16:17:18.206 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:17:19.970 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0
16:17:20.126 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 81 ms to scan 1 urls, producing 3 keys and 6 values 
16:17:20.229 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 44 ms to scan 1 urls, producing 4 keys and 9 values 
16:17:20.328 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 93 ms to scan 1 urls, producing 3 keys and 10 values 
16:17:20.796 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 461 ms to scan 270 urls, producing 0 keys and 0 values 
16:17:20.815 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 5 values 
16:17:20.867 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 1 keys and 7 values 
16:17:20.884 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
16:17:21.243 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 354 ms to scan 270 urls, producing 0 keys and 0 values 
16:17:21.244 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:17:21.245 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/468950278
16:17:21.246 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1747025217
16:17:21.247 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:17:21.248 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:17:21.262 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:17:23.592 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717402643844_192.168.110.235_59395
16:17:23.593 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] Notify connected event to listeners.
16:17:23.594 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:17:23.595 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ec37b56-2279-42b9-b229-fbf7e6584a9d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/775254760
16:17:23.755 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:17:28.885 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:17:28.886 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:17:28.886 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:17:29.479 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:17:30.497 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:17:30.498 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:17:30.499 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:17:33.386 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
16:17:33.392 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
16:17:33.430 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
16:17:33.431 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
16:17:33.432 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
16:18:27.091 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:18:28.083 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0
16:18:28.163 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 3 keys and 6 values 
16:18:28.213 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
16:18:28.232 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
16:18:28.602 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 365 ms to scan 270 urls, producing 0 keys and 0 values 
16:18:28.615 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
16:18:28.631 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values 
16:18:28.646 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:18:28.960 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 311 ms to scan 270 urls, producing 0 keys and 0 values 
16:18:28.964 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:18:28.965 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1970707120
16:18:28.965 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1751753651
16:18:28.966 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:18:28.967 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:18:28.980 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:18:30.618 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717402710906_192.168.110.235_59467
16:18:30.621 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Notify connected event to listeners.
16:18:30.622 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:18:30.625 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1432687668
16:18:30.739 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:18:34.312 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:18:34.313 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:18:34.313 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:18:34.760 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:18:35.776 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:18:35.778 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:18:35.779 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:18:40.028 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:18:41.814 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:18:42.304 [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
16:18:42.398 [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:18:43.795 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of de9b69fb-6e3c-4ce2-ad56-307361181830
16:18:43.796 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] RpcClient init label, labels = {module=naming, source=sdk}
16:18:43.798 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:18:43.798 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:18:43.798 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:18:43.799 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:18:43.911 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717402724311_192.168.110.235_59564
16:18:43.912 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:18:43.912 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Notify connected event to listeners.
16:18:43.912 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1432687668
16:18:43.950 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:18:43.980 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:18:44.522 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Receive server push request, request = NotifySubscriberRequest, requestId = 307
16:18:44.528 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Ack server push request, request = NotifySubscriberRequest, requestId = 307
16:18:44.771 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.768 seconds (JVM running for 20.659)
16:18:44.783 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:18:44.785 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:18:44.786 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:18:46.218 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:20:16.967 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Server healthy check fail, currentConnection = 1717402724311_192.168.110.235_59564
16:20:16.967 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Server healthy check fail, currentConnection = 1717402710906_192.168.110.235_59467
16:20:16.971 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:20:16.971 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:20:16.976 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 315
16:20:16.976 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 315
16:20:16.976 [nacos-grpc-client-executor-18] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Receive server push request, request = ClientDetectionRequest, requestId = 312
16:20:16.976 [nacos-grpc-client-executor-18] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Ack server push request, request = ClientDetectionRequest, requestId = 312
16:20:16.979 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717402710906_192.168.110.235_59467]Ignore complete event,isRunning:false,isAbandon=false
16:20:16.979 [nacos-grpc-client-executor-18] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717402724311_192.168.110.235_59564]Ignore complete event,isRunning:false,isAbandon=false
16:20:17.101 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Success to connect a server [192.168.110.235:8848], connectionId = 1717402817492_192.168.110.235_59628
16:20:17.101 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717402817494_192.168.110.235_59629
16:20:17.101 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717402724311_192.168.110.235_59564
16:20:17.101 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717402710906_192.168.110.235_59467
16:20:17.101 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717402724311_192.168.110.235_59564
16:20:17.101 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717402710906_192.168.110.235_59467
16:20:17.107 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Notify disconnected event to listeners
16:20:17.107 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Notify disconnected event to listeners
16:20:17.108 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Notify connected event to listeners.
16:20:17.109 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Notify connected event to listeners.
16:20:18.680 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_g3VCocGYyQQ-sFfJDpbitP0C5HKALEnjEQYZpDGZp4nkwrbwocvUasu_ujjgJlLFuLipvjtOYTZjNXfe_mIcNJwvG_X5Sqop-oixRXNo75wUaXsc98OZTp5YpHQUXTfAIAPSO","expires_in":7200}
16:20:31.168 [nacos-grpc-client-executor-31] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Receive server push request, request = NotifySubscriberRequest, requestId = 322
16:20:31.169 [nacos-grpc-client-executor-31] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Ack server push request, request = NotifySubscriberRequest, requestId = 322
16:22:02.709 [nacos-grpc-client-executor-36] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 329
16:22:02.710 [nacos-grpc-client-executor-36] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 329
16:22:02.714 [nacos-grpc-client-executor-36] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Receive server push request, request = ClientDetectionRequest, requestId = 326
16:22:02.717 [nacos-grpc-client-executor-36] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Ack server push request, request = ClientDetectionRequest, requestId = 326
16:22:02.724 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Server healthy check fail, currentConnection = 1717402817494_192.168.110.235_59629
16:22:02.725 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:22:02.740 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Server healthy check fail, currentConnection = 1717402817492_192.168.110.235_59628
16:22:02.740 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:22:02.851 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717402923249_192.168.110.235_59674
16:22:02.851 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717402817494_192.168.110.235_59629
16:22:02.851 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717402817494_192.168.110.235_59629
16:22:02.851 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:22:02.851 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Notify disconnected event to listeners
16:22:02.852 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Notify connected event to listeners.
16:22:02.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Success to connect a server [192.168.110.235:8848], connectionId = 1717402923254_192.168.110.235_59675
16:22:02.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717402817492_192.168.110.235_59628
16:22:02.866 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717402817492_192.168.110.235_59628
16:22:02.868 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Notify disconnected event to listeners
16:22:02.868 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:22:02.869 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Notify connected event to listeners.
16:22:02.972 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717402923365_192.168.110.235_59676
16:22:02.972 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717402923249_192.168.110.235_59674
16:22:02.973 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717402923249_192.168.110.235_59674
16:22:02.974 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Notify disconnected event to listeners
16:22:02.974 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7ca83-0f46-47f8-80bb-66db3afb88ff_config-0] Notify connected event to listeners.
16:22:02.988 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Success to connect a server [192.168.110.235:8848], connectionId = 1717402923380_192.168.110.235_59677
16:22:02.988 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717402923254_192.168.110.235_59675
16:22:02.988 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717402923254_192.168.110.235_59675
16:22:02.989 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Notify disconnected event to listeners
16:22:02.990 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Notify connected event to listeners.
16:22:06.261 [nacos-grpc-client-executor-54] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Receive server push request, request = NotifySubscriberRequest, requestId = 332
16:22:06.264 [nacos-grpc-client-executor-54] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de9b69fb-6e3c-4ce2-ad56-307361181830] Ack server push request, request = NotifySubscriberRequest, requestId = 332
16:23:58.747 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:24:00.176 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0
16:24:00.343 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 122 ms to scan 1 urls, producing 3 keys and 6 values 
16:24:00.437 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 1 urls, producing 4 keys and 9 values 
16:24:00.462 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 3 keys and 10 values 
16:24:00.877 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 410 ms to scan 270 urls, producing 0 keys and 0 values 
16:24:00.893 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 5 values 
16:24:00.915 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values 
16:24:00.932 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values 
16:24:01.251 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 316 ms to scan 270 urls, producing 0 keys and 0 values 
16:24:01.255 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:24:01.257 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/133205167
16:24:01.257 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/81722690
16:24:01.259 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:24:01.260 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:24:01.276 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:24:02.938 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717403043235_192.168.110.235_59933
16:24:02.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Notify connected event to listeners.
16:24:02.939 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:24:02.940 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/814300680
16:24:03.039 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:24:06.593 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:24:06.593 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:24:06.593 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:24:07.058 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:24:07.858 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:24:07.860 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:24:07.860 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:24:12.020 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:24:13.695 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:24:14.130 [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
16:24:14.199 [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:24:15.519 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b837c70d-d320-4a58-99c1-1bf63a92b450
16:24:15.520 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] RpcClient init label, labels = {module=naming, source=sdk}
16:24:15.522 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:24:15.522 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:24:15.523 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:24:15.524 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:24:15.647 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717403056038_192.168.110.235_60030
16:24:15.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Notify connected event to listeners.
16:24:15.647 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:24:15.648 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/814300680
16:24:15.683 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:24:15.711 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:24:16.217 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Receive server push request, request = NotifySubscriberRequest, requestId = 337
16:24:16.225 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Ack server push request, request = NotifySubscriberRequest, requestId = 337
16:24:16.533 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 19.134 seconds (JVM running for 21.29)
16:24:16.545 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:24:16.548 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:24:16.550 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:24:17.216 [RMI TCP Connection(4)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:24:37.872 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Server healthy check fail, currentConnection = 1717403043235_192.168.110.235_59933
16:24:37.873 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:24:38.014 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717403078389_192.168.110.235_60061
16:24:38.014 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717403043235_192.168.110.235_59933
16:24:38.014 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717403043235_192.168.110.235_59933
16:24:38.017 [nacos-grpc-client-executor-20] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717403043235_192.168.110.235_59933]Ignore complete event,isRunning:false,isAbandon=true
16:24:38.020 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Notify disconnected event to listeners
16:24:38.023 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Notify connected event to listeners.
16:24:40.438 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_X_4zQX8mBvCTBdA2wIDuAN_XsNTH8hnHEe0gAmv43m3xnltpPkkhcGRxJUPXK9MS0KhSWh1BcQyyZZQ73KIJI2MmSajal3a3a96w-BTHRHMOamNHmW7gCwdeXgoBVUgADAHBA","expires_in":7200}
16:25:03.284 [nacos-grpc-client-executor-22] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 344
16:25:03.282 [nacos-grpc-client-executor-11] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Receive server push request, request = ClientDetectionRequest, requestId = 345
16:25:03.287 [nacos-grpc-client-executor-22] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 344
16:25:03.287 [nacos-grpc-client-executor-11] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Ack server push request, request = ClientDetectionRequest, requestId = 345
16:25:03.294 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Server healthy check fail, currentConnection = 1717403056038_192.168.110.235_60030
16:25:03.296 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:25:03.305 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Server healthy check fail, currentConnection = 1717403078389_192.168.110.235_60061
16:25:03.307 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:25:03.316 [nacos-grpc-client-executor-22] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717403078389_192.168.110.235_60061]Ignore complete event,isRunning:false,isAbandon=false
16:25:03.320 [nacos-grpc-client-executor-11] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717403056038_192.168.110.235_60030]Ignore complete event,isRunning:false,isAbandon=false
16:25:03.448 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Success to connect a server [192.168.110.235:8848], connectionId = 1717403103828_192.168.110.235_60076
16:25:03.450 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717403056038_192.168.110.235_60030
16:25:03.451 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717403056038_192.168.110.235_60030
16:25:03.453 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Notify disconnected event to listeners
16:25:03.455 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Notify connected event to listeners.
16:25:03.463 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717403103837_192.168.110.235_60077
16:25:03.464 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717403078389_192.168.110.235_60061
16:25:03.465 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717403078389_192.168.110.235_60061
16:25:03.468 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Notify disconnected event to listeners
16:25:03.470 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Notify connected event to listeners.
16:25:10.114 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Receive server push request, request = NotifySubscriberRequest, requestId = 350
16:25:10.114 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Ack server push request, request = NotifySubscriberRequest, requestId = 350
16:25:15.698 [nacos-grpc-client-executor-25] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Receive server push request, request = NotifySubscriberRequest, requestId = 351
16:25:15.699 [nacos-grpc-client-executor-25] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Ack server push request, request = NotifySubscriberRequest, requestId = 351
16:28:05.509 [nacos-grpc-client-executor-62] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Receive server push request, request = NotifySubscriberRequest, requestId = 353
16:28:05.513 [nacos-grpc-client-executor-62] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Ack server push request, request = NotifySubscriberRequest, requestId = 353
16:29:57.010 [nacos-grpc-client-executor-85] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Receive server push request, request = NotifySubscriberRequest, requestId = 355
16:29:57.013 [nacos-grpc-client-executor-85] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b837c70d-d320-4a58-99c1-1bf63a92b450] Ack server push request, request = NotifySubscriberRequest, requestId = 355
16:31:54.021 [nacos-grpc-client-executor-108] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 363
16:31:54.021 [nacos-grpc-client-executor-108] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 363
16:31:54.063 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Server healthy check fail, currentConnection = 1717403103837_192.168.110.235_60077
16:31:54.063 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:31:54.182 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717403514579_192.168.110.235_60407
16:31:54.182 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717403103837_192.168.110.235_60077
16:31:54.182 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717403103837_192.168.110.235_60077
16:31:54.183 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:31:54.183 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Notify disconnected event to listeners
16:31:54.183 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Notify connected event to listeners.
16:31:54.304 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717403514699_192.168.110.235_60408
16:31:54.304 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717403514579_192.168.110.235_60407
16:31:54.305 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717403514579_192.168.110.235_60407
16:31:54.306 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Notify disconnected event to listeners
16:31:54.307 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [95bcd1ee-8393-43f1-9a9d-f8b92b52f441_config-0] Notify connected event to listeners.
16:49:16.180 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:49:17.376 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0
16:49:17.463 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values 
16:49:17.511 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:49:17.530 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values 
16:49:17.907 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 372 ms to scan 270 urls, producing 0 keys and 0 values 
16:49:17.920 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
16:49:17.937 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
16:49:17.956 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:49:18.284 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 324 ms to scan 270 urls, producing 0 keys and 0 values 
16:49:18.287 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:49:18.288 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1684615718
16:49:18.289 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/477463877
16:49:18.290 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:49:18.291 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:49:18.304 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:49:20.023 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717404560324_192.168.110.235_61076
16:49:20.024 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Notify connected event to listeners.
16:49:20.024 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:49:20.025 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/629078509
16:49:20.145 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:49:23.868 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:49:23.868 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:49:23.868 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:49:24.325 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:49:25.088 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:49:25.089 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:49:25.090 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:49:29.454 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:49:31.186 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:49:31.644 [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:49:31.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
16:49:33.111 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 782cef3f-d320-4b45-8a42-00aea286dc11
16:49:33.111 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] RpcClient init label, labels = {module=naming, source=sdk}
16:49:33.114 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:49:33.114 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:49:33.115 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:49:33.115 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:49:33.247 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717404573639_192.168.110.235_61178
16:49:33.247 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Notify connected event to listeners.
16:49:33.247 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:49:33.247 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/629078509
16:49:33.290 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:49:33.319 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:49:33.824 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = NotifySubscriberRequest, requestId = 370
16:49:33.831 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = NotifySubscriberRequest, requestId = 370
16:49:34.230 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 19.084 seconds (JVM running for 21.088)
16:49:34.242 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:49:34.245 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:49:34.246 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:49:34.992 [RMI TCP Connection(4)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:50:32.895 [http-nio-9205-exec-2] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_7eOHdk2-c-xJ27UhyLteCn0qQdL7zd13lDiYBTt7bntxvlBBFR3Q2PT6IIiwC6yW_R0TfeaJhDbs71p0W_fz5N_XvXFjgLFr1_XGrMiCClycFI8PLh4A5-QBHMcZVLjACAUQG","expires_in":7200}
16:50:34.121 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = NotifySubscriberRequest, requestId = 376
16:50:34.121 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = NotifySubscriberRequest, requestId = 376
16:59:37.488 [nacos-grpc-client-executor-113] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = ClientDetectionRequest, requestId = 391
16:59:37.488 [nacos-grpc-client-executor-105] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 390
16:59:37.667 [nacos-grpc-client-executor-113] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = ClientDetectionRequest, requestId = 391
16:59:37.667 [nacos-grpc-client-executor-105] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 390
16:59:37.677 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Server healthy check fail, currentConnection = 1717404560324_192.168.110.235_61076
16:59:37.677 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Server healthy check fail, currentConnection = 1717404573639_192.168.110.235_61178
16:59:37.677 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:59:37.677 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:59:37.816 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Success to connect a server [192.168.110.235:8848], connectionId = 1717405178209_192.168.110.235_61742
16:59:37.816 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717405178217_192.168.110.235_61741
16:59:37.816 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717404573639_192.168.110.235_61178
16:59:37.816 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717404560324_192.168.110.235_61076
16:59:37.816 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717404573639_192.168.110.235_61178
16:59:37.816 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717404560324_192.168.110.235_61076
16:59:37.822 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:59:37.822 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Notify disconnected event to listeners
16:59:37.822 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Notify disconnected event to listeners
16:59:37.822 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:59:37.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Notify connected event to listeners.
16:59:37.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Notify connected event to listeners.
16:59:37.942 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717405178350_192.168.110.235_61743
16:59:37.942 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Success to connect a server [192.168.110.235:8848], connectionId = 1717405178350_192.168.110.235_61744
16:59:37.942 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717405178209_192.168.110.235_61742
16:59:37.942 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717405178217_192.168.110.235_61741
16:59:37.943 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717405178209_192.168.110.235_61742
16:59:37.943 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717405178217_192.168.110.235_61741
16:59:37.945 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Notify disconnected event to listeners
16:59:37.945 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Notify disconnected event to listeners
16:59:37.945 [nacos-grpc-client-executor-114] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717405178217_192.168.110.235_61741]Ignore complete event,isRunning:true,isAbandon=true
16:59:37.946 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Notify connected event to listeners.
16:59:37.946 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Notify connected event to listeners.
16:59:37.947 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Server check success, currentServer is 192.168.110.235:8848
16:59:37.947 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Server check success, currentServer is 192.168.110.235:8848
16:59:41.678 [nacos-grpc-client-executor-132] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = NotifySubscriberRequest, requestId = 404
16:59:42.098 [nacos-grpc-client-executor-132] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = NotifySubscriberRequest, requestId = 404
16:59:42.101 [nacos-grpc-client-executor-133] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = NotifySubscriberRequest, requestId = 403
16:59:42.102 [nacos-grpc-client-executor-133] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = NotifySubscriberRequest, requestId = 403
16:59:47.579 [nacos-grpc-client-executor-134] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = NotifySubscriberRequest, requestId = 405
16:59:47.580 [nacos-grpc-client-executor-134] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = NotifySubscriberRequest, requestId = 405
17:00:11.978 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Server healthy check fail, currentConnection = 1717405178350_192.168.110.235_61744
17:00:13.923 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:00:14.708 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Server healthy check fail, currentConnection = 1717405178350_192.168.110.235_61743
17:00:14.710 [nacos-grpc-client-executor-119] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 406
17:00:14.709 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:00:14.712 [nacos-grpc-client-executor-119] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 406
17:00:15.295 [nacos-grpc-client-executor-119] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717405178350_192.168.110.235_61743]Ignore complete event,isRunning:false,isAbandon=false
17:00:16.150 [nacos-grpc-client-executor-135] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = ClientDetectionRequest, requestId = 407
17:00:16.665 [nacos-grpc-client-executor-135] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = ClientDetectionRequest, requestId = 407
17:00:17.148 [nacos-grpc-client-executor-135] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717405178350_192.168.110.235_61744]Ignore complete event,isRunning:false,isAbandon=false
17:00:17.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Success to connect a server [192.168.110.235:8848], connectionId = 1717405217668_192.168.110.235_61763
17:00:17.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717405217671_192.168.110.235_61764
17:00:17.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717405178350_192.168.110.235_61743
17:00:17.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717405178350_192.168.110.235_61744
17:00:17.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717405178350_192.168.110.235_61743
17:00:17.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717405178350_192.168.110.235_61744
17:00:17.272 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Notify disconnected event to listeners
17:00:17.272 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Notify disconnected event to listeners
17:00:17.272 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Notify connected event to listeners.
17:00:17.273 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Notify connected event to listeners.
17:00:22.410 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Server check success, currentServer is 192.168.110.235:8848
17:00:25.982 [nacos-grpc-client-executor-146] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = NotifySubscriberRequest, requestId = 413
17:00:25.982 [nacos-grpc-client-executor-146] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = NotifySubscriberRequest, requestId = 413
17:00:25.985 [nacos-grpc-client-executor-147] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = NotifySubscriberRequest, requestId = 412
17:00:25.985 [nacos-grpc-client-executor-147] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = NotifySubscriberRequest, requestId = 412
17:02:12.570 [nacos-grpc-client-executor-154] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Receive server push request, request = ClientDetectionRequest, requestId = 416
17:02:12.571 [nacos-grpc-client-executor-133] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 417
17:02:12.571 [nacos-grpc-client-executor-133] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 417
17:02:12.571 [nacos-grpc-client-executor-154] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Ack server push request, request = ClientDetectionRequest, requestId = 416
17:02:12.572 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Server healthy check fail, currentConnection = 1717405217668_192.168.110.235_61763
17:02:12.572 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:12.572 [nacos-grpc-client-executor-154] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717405217668_192.168.110.235_61763]Ignore complete event,isRunning:false,isAbandon=false
17:02:12.589 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Server healthy check fail, currentConnection = 1717405217671_192.168.110.235_61764
17:02:12.590 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:12.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717405333116_192.168.110.235_61834
17:02:12.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Success to connect a server [192.168.110.235:8848], connectionId = 1717405333110_192.168.110.235_61833
17:02:12.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717405217671_192.168.110.235_61764
17:02:12.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717405217668_192.168.110.235_61763
17:02:12.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717405217671_192.168.110.235_61764
17:02:12.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717405217668_192.168.110.235_61763
17:02:12.707 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Notify disconnected event to listeners
17:02:12.707 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Notify disconnected event to listeners
17:02:12.707 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:12.708 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d58ec44-e61f-4541-9f42-54b7ff94be8c_config-0] Notify connected event to listeners.
17:02:12.708 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [782cef3f-d320-4b45-8a42-00aea286dc11] Notify connected event to listeners.
17:02:29.290 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:02:30.288 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 21024049-4f7a-491e-9536-2ead007acf5e_config-0
17:02:30.373 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values 
17:02:30.421 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
17:02:30.440 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
17:02:30.855 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 409 ms to scan 270 urls, producing 0 keys and 0 values 
17:02:30.867 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values 
17:02:30.885 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
17:02:30.899 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
17:02:31.216 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 314 ms to scan 270 urls, producing 0 keys and 0 values 
17:02:31.219 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:02:31.221 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1088818894
17:02:31.221 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1066561773
17:02:31.222 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:02:31.223 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:02:31.234 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:02:32.930 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717405353227_192.168.110.235_61880
17:02:32.932 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] Notify connected event to listeners.
17:02:32.933 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:02:32.934 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [21024049-4f7a-491e-9536-2ead007acf5e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1087519874
17:02:33.045 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:02:36.853 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
17:02:36.854 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:02:36.854 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:02:37.303 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:02:38.086 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:02:38.087 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:02:38.088 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:02:42.172 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:02:43.940 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:02:44.420 [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
17:02:44.483 [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
17:02:45.830 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 36fd8edb-2ad8-4ed5-8f65-87381a465e69
17:02:45.830 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] RpcClient init label, labels = {module=naming, source=sdk}
17:02:45.833 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:02:45.833 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:02:45.834 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:02:45.834 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:02:45.959 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717405366359_192.168.110.235_62001
17:02:45.959 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] Notify connected event to listeners.
17:02:45.959 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:02:45.960 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1087519874
17:02:45.999 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
17:02:46.026 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
17:02:46.527 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] Receive server push request, request = NotifySubscriberRequest, requestId = 428
17:02:46.534 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [36fd8edb-2ad8-4ed5-8f65-87381a465e69] Ack server push request, request = NotifySubscriberRequest, requestId = 428
17:02:46.871 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.681 seconds (JVM running for 20.67)
17:02:46.884 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
17:02:46.887 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
17:02:46.888 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
17:02:47.457 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:03:43.865 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_zTSLJL9f--ew1EDRf8W-vC2nGxKTF05uD5q2zznRI_Y0rSBgSpRwuFmtk3qCxxQKg0RUmkCkDrR41PGGj05ftw_MjYIIYMcGZBwDdBejW_lOgtCqIRGMptWfDDEHTRaAFANZX","expires_in":7200}
17:04:32.301 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
17:04:32.304 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
17:04:32.629 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
17:04:32.629 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1124e7c2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
17:04:32.630 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717405366359_192.168.110.235_62001
17:04:32.637 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@212eb0[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 31]
17:04:32.783 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
17:04:32.786 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
17:04:32.796 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
17:04:32.796 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
17:06:33.542 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:06:34.525 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a8c49dcb-c409-4902-a473-aa5941ac337f_config-0
17:06:34.607 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values 
17:06:34.653 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
17:06:34.672 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
17:06:35.036 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 359 ms to scan 270 urls, producing 0 keys and 0 values 
17:06:35.049 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
17:06:35.066 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
17:06:35.085 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values 
17:06:35.428 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 340 ms to scan 270 urls, producing 0 keys and 0 values 
17:06:35.431 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:06:35.433 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2034411604
17:06:35.433 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1404612586
17:06:35.434 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:06:35.435 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:06:35.446 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:06:37.059 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717405597363_192.168.110.235_62339
17:06:37.059 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] Notify connected event to listeners.
17:06:37.059 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:06:37.060 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c49dcb-c409-4902-a473-aa5941ac337f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/220558713
17:06:37.162 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:06:40.712 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
17:06:40.712 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:06:40.712 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:06:41.184 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:06:42.031 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:06:42.034 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:06:42.035 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:06:46.238 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:06:47.903 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:06:48.356 [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
17:06:48.418 [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
17:06:49.750 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8aabf961-488a-428c-b283-f94de38c2032
17:06:49.750 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] RpcClient init label, labels = {module=naming, source=sdk}
17:06:49.752 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:06:49.753 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:06:49.753 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:06:49.754 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:06:49.871 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717405610282_192.168.110.235_62437
17:06:49.871 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Notify connected event to listeners.
17:06:49.871 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:06:49.872 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/220558713
17:06:49.908 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
17:06:49.934 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
17:06:50.469 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Receive server push request, request = NotifySubscriberRequest, requestId = 449
17:06:50.475 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Ack server push request, request = NotifySubscriberRequest, requestId = 449
17:06:50.734 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.189 seconds (JVM running for 20.106)
17:06:50.747 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
17:06:50.750 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
17:06:50.750 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
17:06:51.134 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:07:02.377 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_Yy87d6wW0V3RbepslO-7GiDuFqPv8B7vnxKokwGHFdAwEJgDTgXaHuiUe2EYZfbId-BoED_UsZ59okD2LE5YeH0JGBjrLlUrEbIe1lmJ78QYlUeyRErTXPgnkM0PFBeAFAJZV","expires_in":7200}
17:07:03.514 [nacos-grpc-client-executor-11] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Receive server push request, request = NotifySubscriberRequest, requestId = 450
17:07:03.515 [nacos-grpc-client-executor-11] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8aabf961-488a-428c-b283-f94de38c2032] Ack server push request, request = NotifySubscriberRequest, requestId = 450
17:08:44.828 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:08:45.819 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0
17:08:45.896 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 48 ms to scan 1 urls, producing 3 keys and 6 values 
17:08:45.943 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
17:08:45.964 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values 
17:08:46.322 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 354 ms to scan 270 urls, producing 0 keys and 0 values 
17:08:46.334 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values 
17:08:46.350 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values 
17:08:46.363 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values 
17:08:46.678 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 311 ms to scan 270 urls, producing 0 keys and 0 values 
17:08:46.682 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:08:46.683 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/590406624
17:08:46.683 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/615830852
17:08:46.684 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:08:46.685 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:08:46.701 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:08:48.309 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717405728609_192.168.110.235_62563
17:08:48.311 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] Notify connected event to listeners.
17:08:48.312 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:08:48.313 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [db9cc725-1d77-4f4e-b005-02c4f61cab92_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1162400340
17:08:48.904 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:08:52.391 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
17:08:52.391 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:08:52.391 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:08:52.858 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:08:53.600 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:08:53.602 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:08:53.602 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:08:57.646 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:08:59.541 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:08:59.985 [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
17:09:00.058 [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
17:09:01.372 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 305afb95-5b72-4c15-ad02-69342753334e
17:09:01.373 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] RpcClient init label, labels = {module=naming, source=sdk}
17:09:01.376 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:09:01.376 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:09:01.377 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:09:01.378 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:09:01.508 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717405741907_192.168.110.235_62664
17:09:01.508 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:09:01.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Notify connected event to listeners.
17:09:01.509 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1162400340
17:09:01.562 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
17:09:01.595 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
17:09:02.108 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Receive server push request, request = NotifySubscriberRequest, requestId = 457
17:09:02.114 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Ack server push request, request = NotifySubscriberRequest, requestId = 457
17:09:02.414 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.588 seconds (JVM running for 20.505)
17:09:02.426 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
17:09:02.429 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
17:09:02.429 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
17:09:03.641 [RMI TCP Connection(4)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:09:14.800 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_Ld6b3Fo5kKUx28lck_3Bs00QZ8wZHIoMV8PlYGhTerDaQcwtxsxkEI6eFPe0DTdKsdvugJBDlkllMvt_AV9kbR7C96TNWS0MYZ5B18EJBP3Cyn9FgPtwqKwqL74CHJdABAQVX","expires_in":7200}
17:09:16.016 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Receive server push request, request = NotifySubscriberRequest, requestId = 459
17:09:16.017 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [305afb95-5b72-4c15-ad02-69342753334e] Ack server push request, request = NotifySubscriberRequest, requestId = 459
18:54:12.668 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
18:54:12.693 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
18:54:13.116 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
18:54:13.116 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@666fec46[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
18:54:13.117 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717405741907_192.168.110.235_62664
18:54:13.125 [nacos-grpc-client-executor-1276] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717405741907_192.168.110.235_62664]Ignore complete event,isRunning:false,isAbandon=false
18:54:13.247 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5a26a785[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 1277]
18:54:13.680 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
18:54:13.687 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
18:54:13.706 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
18:54:13.707 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye