rentaiming
2024-07-08 8e6989e09a2cc4046fd6985b18f715f98f45e1c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
09:56:43.044 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:56:44.081 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0
09:56:44.185 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 64 ms to scan 1 urls, producing 3 keys and 6 values 
09:56:44.258 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values 
09:56:44.293 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 32 ms to scan 1 urls, producing 3 keys and 10 values 
09:56:44.741 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 441 ms to scan 271 urls, producing 0 keys and 0 values 
09:56:44.755 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
09:56:44.774 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
09:56:44.791 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values 
09:56:45.188 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 393 ms to scan 271 urls, producing 0 keys and 0 values 
09:56:45.189 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:56:45.190 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/515520300
09:56:45.190 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/569138567
09:56:45.191 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:56:45.192 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:56:45.204 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:56:46.782 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717552605786_192.168.110.235_58515
09:56:46.783 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] Notify connected event to listeners.
09:56:46.784 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:56:46.785 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc839b55-4bec-4ce2-ac0c-d9922b97cdb5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/589016913
09:56:46.931 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:56:50.457 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
09:56:50.458 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:56:50.458 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:56:50.906 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:56:52.465 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:56:52.466 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:56:52.467 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:56:56.541 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:56:58.261 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:56:58.732 [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:58.898 [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:57:00.263 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c0bba3d2-5ef2-418e-8f31-77750b9afbb8
09:57:00.263 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] RpcClient init label, labels = {module=naming, source=sdk}
09:57:00.265 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:57:00.265 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:57:00.266 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:57:00.266 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:57:00.378 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717552619535_192.168.110.235_58631
09:57:00.378 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:57:00.378 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Notify connected event to listeners.
09:57:00.378 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/589016913
09:57:00.411 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
09:57:00.435 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
09:57:00.967 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Receive server push request, request = NotifySubscriberRequest, requestId = 51
09:57:00.973 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Ack server push request, request = NotifySubscriberRequest, requestId = 51
09:57:01.262 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 19.328 seconds (JVM running for 21.333)
09:57:01.282 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
09:57:01.289 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
09:57:01.296 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
09:57:01.931 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:09:00.123 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_0DAdwLTTrMKzLWMvaxJrxlwBOziCf4WSB7MRhxySIjwUM-X2_4Q9M9FCw0RAxlfq5Mw2bTapeKJOPz_j1qspmeO9pzyzezHDp8NzacxNDVo5rXKcrs2f59NIAOkGDDbAFAJGG","expires_in":7200}
10:09:01.338 [nacos-grpc-client-executor-155] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Receive server push request, request = NotifySubscriberRequest, requestId = 72
10:09:01.339 [nacos-grpc-client-executor-155] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Ack server push request, request = NotifySubscriberRequest, requestId = 72
10:11:51.115 [nacos-grpc-client-executor-197] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Receive server push request, request = NotifySubscriberRequest, requestId = 79
10:11:51.118 [nacos-grpc-client-executor-197] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bba3d2-5ef2-418e-8f31-77750b9afbb8] Ack server push request, request = NotifySubscriberRequest, requestId = 79
11:05:20.187 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
11:05:21.186 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 229ebe14-3483-42bf-bb52-dba822e23434_config-0
11:05:21.280 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 49 ms to scan 1 urls, producing 3 keys and 6 values 
11:05:21.332 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
11:05:21.355 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values 
11:05:21.745 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 385 ms to scan 272 urls, producing 0 keys and 0 values 
11:05:21.759 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
11:05:21.776 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
11:05:21.791 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
11:05:22.151 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 357 ms to scan 272 urls, producing 0 keys and 0 values 
11:05:22.155 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
11:05:22.157 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/461155951
11:05:22.157 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/569959775
11:05:22.158 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:05:22.159 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:05:22.171 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
11:05:23.765 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717556722772_192.168.110.235_63557
11:05:23.766 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Notify connected event to listeners.
11:05:23.767 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:05:23.767 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1417203230
11:05:23.884 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
11:05:27.870 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
11:05:27.870 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:05:27.870 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
11:05:28.324 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:05:29.096 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
11:05:29.097 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
11:05:29.097 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:05:33.460 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:05:35.292 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
11:05:35.882 [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
11:05:35.946 [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
11:05:37.445 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5d389f71-9a4a-4faf-86b2-a97f26ce7bfa
11:05:37.445 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] RpcClient init label, labels = {module=naming, source=sdk}
11:05:37.449 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:05:37.449 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:05:37.450 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:05:37.451 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
11:05:37.570 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717556736691_192.168.110.235_63668
11:05:37.571 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Notify connected event to listeners.
11:05:37.571 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:05:37.572 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1417203230
11:05:37.626 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
11:05:37.660 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
11:05:38.150 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Receive server push request, request = NotifySubscriberRequest, requestId = 100
11:05:38.157 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Ack server push request, request = NotifySubscriberRequest, requestId = 100
11:05:38.542 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 19.363 seconds (JVM running for 21.767)
11:05:38.566 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
11:05:38.574 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
11:05:38.583 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
11:05:39.573 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:06:27.478 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_AiwoRadIpsqdx3vkXMpxYbGiFX1OPwQQEq4qI7iiYT68t6Qz8u_KwT6ay-8QDCXRNmps8Ep09iM6_0p4kDQ59a4ipzAL25qi5vWqYfbqBg-ttugqBYySPvqdq5gCDRaACALMA","expires_in":7200}
11:06:48.094 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Server healthy check fail, currentConnection = 1717556736691_192.168.110.235_63668
11:06:48.094 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Server healthy check fail, currentConnection = 1717556722772_192.168.110.235_63557
11:06:48.096 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:06:48.096 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:06:48.225 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717556807341_192.168.110.235_63773
11:06:48.225 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Success to connect a server [192.168.110.235:8848], connectionId = 1717556807341_192.168.110.235_63774
11:06:48.225 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717556722772_192.168.110.235_63557
11:06:48.225 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717556736691_192.168.110.235_63668
11:06:48.225 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717556736691_192.168.110.235_63668
11:06:48.225 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717556722772_192.168.110.235_63557
11:06:48.227 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717556736691_192.168.110.235_63668]Ignore complete event,isRunning:false,isAbandon=true
11:06:48.227 [nacos-grpc-client-executor-33] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717556722772_192.168.110.235_63557]Ignore complete event,isRunning:false,isAbandon=true
11:06:48.234 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Notify disconnected event to listeners
11:06:48.234 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Notify disconnected event to listeners
11:06:48.237 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Notify connected event to listeners.
11:06:48.242 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Notify connected event to listeners.
11:06:48.245 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Server check success, currentServer is 192.168.110.235:8848
11:06:51.619 [nacos-grpc-client-executor-29] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Receive server push request, request = NotifySubscriberRequest, requestId = 105
11:06:51.619 [nacos-grpc-client-executor-29] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Ack server push request, request = NotifySubscriberRequest, requestId = 105
11:08:38.198 [nacos-grpc-client-executor-52] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Receive server push request, request = NotifySubscriberRequest, requestId = 106
11:08:38.199 [nacos-grpc-client-executor-52] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Ack server push request, request = NotifySubscriberRequest, requestId = 106
11:09:10.468 [nacos-grpc-client-executor-54] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Receive server push request, request = ClientDetectionRequest, requestId = 107
11:09:10.468 [nacos-grpc-client-executor-58] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 117
11:09:10.476 [nacos-grpc-client-executor-54] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Ack server push request, request = ClientDetectionRequest, requestId = 107
11:09:10.477 [nacos-grpc-client-executor-58] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 117
11:09:22.895 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Server healthy check fail, currentConnection = 1717556807341_192.168.110.235_63773
11:09:22.895 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:09:22.893 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Server healthy check fail, currentConnection = 1717556807341_192.168.110.235_63774
11:09:22.901 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:09:22.902 [nacos-grpc-client-executor-58] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717556807341_192.168.110.235_63773]Ignore complete event,isRunning:false,isAbandon=false
11:09:22.908 [nacos-grpc-client-executor-54] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717556807341_192.168.110.235_63774]Ignore complete event,isRunning:false,isAbandon=false
11:09:28.043 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717556967157_192.168.110.235_63992
11:09:28.043 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Success to connect a server [192.168.110.235:8848], connectionId = 1717556967148_192.168.110.235_63991
11:09:28.043 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717556807341_192.168.110.235_63773
11:09:28.043 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717556807341_192.168.110.235_63774
11:09:28.043 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717556807341_192.168.110.235_63774
11:09:28.043 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717556807341_192.168.110.235_63773
11:09:28.044 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Notify disconnected event to listeners
11:09:28.044 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Notify disconnected event to listeners
11:09:28.045 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Notify connected event to listeners.
11:09:28.049 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Server check success, currentServer is 192.168.110.235:8848
11:09:28.051 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Notify connected event to listeners.
11:09:29.482 [nacos-grpc-client-executor-67] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Receive server push request, request = NotifySubscriberRequest, requestId = 118
11:09:29.483 [nacos-grpc-client-executor-67] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Ack server push request, request = NotifySubscriberRequest, requestId = 118
11:09:29.488 [nacos-grpc-client-executor-68] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Receive server push request, request = NotifySubscriberRequest, requestId = 121
11:09:29.489 [nacos-grpc-client-executor-68] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Ack server push request, request = NotifySubscriberRequest, requestId = 121
11:12:40.471 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Server healthy check fail, currentConnection = 1717556967148_192.168.110.235_63991
11:12:40.471 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:12:40.486 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Server healthy check fail, currentConnection = 1717556967157_192.168.110.235_63992
11:12:40.486 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:12:40.487 [nacos-grpc-client-executor-80] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Receive server push request, request = ClientDetectionRequest, requestId = 122
11:12:40.487 [nacos-grpc-client-executor-77] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 125
11:12:40.488 [nacos-grpc-client-executor-80] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Ack server push request, request = ClientDetectionRequest, requestId = 122
11:12:40.488 [nacos-grpc-client-executor-77] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 125
11:12:40.489 [nacos-grpc-client-executor-80] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717556967148_192.168.110.235_63991]Ignore complete event,isRunning:false,isAbandon=false
11:12:40.489 [nacos-grpc-client-executor-77] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717556967157_192.168.110.235_63992]Ignore complete event,isRunning:false,isAbandon=false
11:12:40.598 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Success to connect a server [192.168.110.235:8848], connectionId = 1717557159722_192.168.110.235_64309
11:12:40.598 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717556967148_192.168.110.235_63991
11:12:40.598 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717556967148_192.168.110.235_63991
11:12:40.599 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Notify disconnected event to listeners
11:12:40.600 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d389f71-9a4a-4faf-86b2-a97f26ce7bfa] Notify connected event to listeners.
11:12:40.613 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717557159728_192.168.110.235_64310
11:12:40.613 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717556967157_192.168.110.235_63992
11:12:40.614 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717556967157_192.168.110.235_63992
11:12:40.615 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [229ebe14-3483-42bf-bb52-dba822e23434_config-0] Notify disconnected event to listeners
11:12:55.464 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
11:12:56.532 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1577ee1d-bacf-4529-9392-23fe035b35b1_config-0
11:12:56.656 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 77 ms to scan 1 urls, producing 3 keys and 6 values 
11:12:56.729 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 1 urls, producing 4 keys and 9 values 
11:12:56.757 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 3 keys and 10 values 
11:12:57.245 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 481 ms to scan 272 urls, producing 0 keys and 0 values 
11:12:57.273 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 1 keys and 5 values 
11:12:57.301 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 1 keys and 7 values 
11:12:57.322 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values 
11:12:57.803 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 476 ms to scan 272 urls, producing 0 keys and 0 values 
11:12:57.809 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
11:12:57.810 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/57151543
11:12:57.811 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/609825180
11:12:57.813 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:12:57.816 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:12:57.836 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
11:12:59.921 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717557178898_192.168.110.235_64379
11:12:59.922 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] Notify connected event to listeners.
11:12:59.922 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:12:59.923 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1577ee1d-bacf-4529-9392-23fe035b35b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1482714257
11:13:00.048 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
11:13:04.348 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
11:13:04.349 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:13:04.349 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
11:13:04.849 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:13:05.791 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
11:13:05.793 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
11:13:05.793 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:13:11.757 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:13:13.871 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
11:13:14.389 [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
11:13:14.509 [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
11:13:16.087 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a60e088a-5f2a-4615-9bfd-9117d6942fd4
11:13:16.087 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] RpcClient init label, labels = {module=naming, source=sdk}
11:13:16.089 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:13:16.090 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:13:16.090 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:13:16.091 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
11:13:16.235 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717557195330_192.168.110.235_64619
11:13:16.235 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Notify connected event to listeners.
11:13:16.235 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:13:16.236 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1482714257
11:13:16.282 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
11:13:16.315 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
11:13:16.854 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Receive server push request, request = NotifySubscriberRequest, requestId = 137
11:13:16.861 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Ack server push request, request = NotifySubscriberRequest, requestId = 137
11:13:17.236 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 22.986 seconds (JVM running for 25.335)
11:13:17.260 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
11:13:17.269 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
11:13:17.275 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
11:13:17.973 [RMI TCP Connection(1)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:16:01.066 [http-nio-9205-exec-3] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_Q9qZROLAVqmDrSGNxnFEZjADk73rCG_l5eJIT03ofW3GusPHY9mbq9-oGV5eK5k0_MTLQJB7oQ4HDtQ0XJYpu2Zslzb6x7PSYTRulhd-pIvhkXQiRANOIswtA4YIYEiACARHN","expires_in":7200}
11:16:15.412 [nacos-grpc-client-executor-47] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Receive server push request, request = NotifySubscriberRequest, requestId = 161
11:16:15.413 [nacos-grpc-client-executor-47] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Ack server push request, request = NotifySubscriberRequest, requestId = 161
11:16:25.678 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a60e088a-5f2a-4615-9bfd-9117d6942fd4] Server check success, currentServer is 192.168.110.235:8848
11:17:20.005 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
11:17:21.041 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0
11:17:21.163 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 66 ms to scan 1 urls, producing 3 keys and 6 values 
11:17:21.226 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 4 keys and 9 values 
11:17:21.248 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values 
11:17:21.702 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 449 ms to scan 272 urls, producing 0 keys and 0 values 
11:17:21.716 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
11:17:21.736 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
11:17:21.754 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
11:17:22.118 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 362 ms to scan 272 urls, producing 0 keys and 0 values 
11:17:22.122 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
11:17:22.123 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/665641137
11:17:22.123 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1716411886
11:17:22.124 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:17:22.125 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:17:22.143 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
11:17:24.066 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717557443060_192.168.110.235_64910
11:17:24.067 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Notify connected event to listeners.
11:17:24.067 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:17:24.068 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1446291553
11:17:24.186 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
11:17:28.201 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
11:17:28.202 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:17:28.202 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
11:17:28.695 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:17:29.680 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
11:17:29.682 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
11:17:29.683 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:17:34.121 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:17:35.939 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
11:17:36.419 [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
11:17:36.495 [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
11:17:37.932 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 26d73057-ebe3-4845-8900-d606366afd29
11:17:37.932 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] RpcClient init label, labels = {module=naming, source=sdk}
11:17:37.935 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:17:37.935 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:17:37.936 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:17:37.936 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
11:17:38.064 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717557457174_192.168.110.235_65010
11:17:38.065 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Notify connected event to listeners.
11:17:38.065 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:17:38.066 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1446291553
11:17:38.107 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
11:17:38.137 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
11:17:38.625 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Receive server push request, request = NotifySubscriberRequest, requestId = 164
11:17:38.633 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Ack server push request, request = NotifySubscriberRequest, requestId = 164
11:17:38.945 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 20.124 seconds (JVM running for 22.425)
11:17:38.966 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
11:17:38.973 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
11:17:38.980 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
11:17:39.521 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:17:48.333 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_eFEQGNo3be7Q_rCD5cMhfeyyqUs8TK8A5zioyoy4J_YqPMm5d3NzGBSNgo5wDq6KiHk6tQZgN_RbBhcfewX5j2xCFEDjHSssOk12_nrB1XutDyDv-mRZGA1v4gYMLAbAFAEDS","expires_in":7200}
11:18:02.521 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Receive server push request, request = NotifySubscriberRequest, requestId = 168
11:18:02.522 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Ack server push request, request = NotifySubscriberRequest, requestId = 168
11:53:36.538 [nacos-grpc-client-executor-423] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 169
11:53:36.551 [nacos-grpc-client-executor-423] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 169
11:51:52.404 [nacos-grpc-client-executor-415] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Receive server push request, request = ClientDetectionRequest, requestId = 170
11:53:37.192 [nacos-grpc-client-executor-415] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Ack server push request, request = ClientDetectionRequest, requestId = 170
11:53:38.019 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Server healthy check fail, currentConnection = 1717557443060_192.168.110.235_64910
11:53:38.020 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Server healthy check fail, currentConnection = 1717557457174_192.168.110.235_65010
11:53:38.025 [nacos-grpc-client-executor-415] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717557457174_192.168.110.235_65010]Ignore complete event,isRunning:false,isAbandon=false
11:53:38.414 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:53:38.414 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:53:38.545 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Success to connect a server [192.168.110.235:8848], connectionId = 1717559617660_192.168.110.235_49518
11:53:38.546 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717557457174_192.168.110.235_65010
11:53:38.546 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717557457174_192.168.110.235_65010
11:53:38.560 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717559617661_192.168.110.235_49519
11:53:38.561 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717557443060_192.168.110.235_64910
11:53:38.561 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717557443060_192.168.110.235_64910
11:53:38.563 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Notify disconnected event to listeners
11:53:38.566 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Server check success, currentServer is 192.168.110.235:8848
11:53:38.567 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Notify connected event to listeners.
11:53:38.568 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Notify disconnected event to listeners
11:53:38.577 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [de1efb46-82c3-4d0c-8b1e-695a26e01a3a_config-0] Notify connected event to listeners.
11:53:38.638 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Server check success, currentServer is 192.168.110.235:8848
11:53:48.357 [nacos-grpc-client-executor-431] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Receive server push request, request = NotifySubscriberRequest, requestId = 175
11:53:48.357 [nacos-grpc-client-executor-431] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Ack server push request, request = NotifySubscriberRequest, requestId = 175
11:53:53.972 [nacos-grpc-client-executor-432] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Receive server push request, request = NotifySubscriberRequest, requestId = 176
11:53:53.973 [nacos-grpc-client-executor-432] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Ack server push request, request = NotifySubscriberRequest, requestId = 176
11:53:54.990 [nacos-grpc-client-executor-435] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Receive server push request, request = NotifySubscriberRequest, requestId = 177
11:53:54.990 [nacos-grpc-client-executor-435] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26d73057-ebe3-4845-8900-d606366afd29] Ack server push request, request = NotifySubscriberRequest, requestId = 177
11:57:00.035 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
11:57:01.030 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0
11:57:01.116 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 3 keys and 6 values 
11:57:01.162 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
11:57:01.181 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
11:57:01.572 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 387 ms to scan 272 urls, producing 0 keys and 0 values 
11:57:01.586 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
11:57:01.602 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values 
11:57:01.618 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
11:57:01.990 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 368 ms to scan 272 urls, producing 0 keys and 0 values 
11:57:01.993 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
11:57:01.994 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/102709691
11:57:01.994 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/614335089
11:57:01.995 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:57:01.996 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:57:02.007 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
11:57:03.615 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717559822617_192.168.110.235_49644
11:57:03.617 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] Notify connected event to listeners.
11:57:03.618 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:57:03.622 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8428d30-7d0d-40e4-a4e0-a5d0d0157c8c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/729710660
11:57:03.745 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
11:57:07.364 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
11:57:07.365 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:57:07.365 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
11:57:07.807 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:57:08.759 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
11:57:08.760 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
11:57:08.760 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:57:12.815 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:57:14.504 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
11:57:14.931 [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
11:57:15.031 [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
11:57:16.379 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 42e2ea5a-8480-4122-9c8e-b45dac61289e
11:57:16.379 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] RpcClient init label, labels = {module=naming, source=sdk}
11:57:16.382 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:57:16.383 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:57:16.383 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:57:16.384 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
11:57:16.504 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717559835620_192.168.110.235_49747
11:57:16.504 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:57:16.504 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] Notify connected event to listeners.
11:57:16.504 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/729710660
11:57:16.539 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
11:57:16.566 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
11:57:17.118 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] Receive server push request, request = NotifySubscriberRequest, requestId = 180
11:57:17.124 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42e2ea5a-8480-4122-9c8e-b45dac61289e] Ack server push request, request = NotifySubscriberRequest, requestId = 180
11:57:17.356 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.341 seconds (JVM running for 20.264)
11:57:17.378 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
11:57:17.386 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
11:57:17.394 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
11:57:18.284 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
12:30:40.165 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
12:30:40.169 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
12:30:40.509 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
12:30:40.509 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1adff751[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
12:30:40.509 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717559835620_192.168.110.235_49747
12:30:40.511 [nacos-grpc-client-executor-412] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717559835620_192.168.110.235_49747]Ignore complete event,isRunning:false,isAbandon=false
12:30:40.516 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@590a4a1e[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 413]
12:30:40.647 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
12:30:40.657 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
12:30:40.669 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
12:30:40.670 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
12:31:42.487 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
12:31:43.508 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0
12:31:43.588 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 48 ms to scan 1 urls, producing 3 keys and 6 values 
12:31:43.647 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values 
12:31:43.666 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values 
12:31:44.079 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 408 ms to scan 272 urls, producing 0 keys and 0 values 
12:31:44.103 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 1 keys and 5 values 
12:31:44.122 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
12:31:44.137 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
12:31:44.491 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 351 ms to scan 272 urls, producing 0 keys and 0 values 
12:31:44.492 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
12:31:44.494 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/238654703
12:31:44.494 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1745701482
12:31:44.495 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
12:31:44.496 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
12:31:44.507 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
12:31:46.131 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717561905139_192.168.110.235_50660
12:31:46.132 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Notify connected event to listeners.
12:31:46.133 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
12:31:46.134 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1825983295
12:31:46.249 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
12:31:49.962 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
12:31:49.963 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
12:31:49.963 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
12:31:50.427 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
12:31:51.209 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
12:31:51.210 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
12:31:51.211 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
12:31:55.334 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
12:31:57.084 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
12:31:57.518 [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
12:31:57.578 [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
12:31:58.951 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b77481b2-3fac-4539-a83e-3d3b3425cfee
12:31:58.951 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] RpcClient init label, labels = {module=naming, source=sdk}
12:31:58.954 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
12:31:58.954 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
12:31:58.955 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
12:31:58.956 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
12:31:59.080 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717561918192_192.168.110.235_50759
12:31:59.080 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
12:31:59.080 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Notify connected event to listeners.
12:31:59.081 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1825983295
12:31:59.116 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
12:31:59.203 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
12:31:59.658 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Receive server push request, request = NotifySubscriberRequest, requestId = 187
12:31:59.665 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Ack server push request, request = NotifySubscriberRequest, requestId = 187
12:32:00.006 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.656 seconds (JVM running for 20.674)
12:32:00.034 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
12:32:00.041 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
12:32:00.050 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
12:32:00.365 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
12:40:44.098 [http-nio-9205-exec-3] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_5WL2BglFB0yaHr3DMTdH5Ah2qDaCzaHgjCc8xEBBeYw9ozwXYVDUkOuXp9aNjNRq0LYJgpqJJu_FmdSx6ihiHCOTJws0xtJxxrTv0cG9AowbKMT510iJadjRwCkHCIaABAXSY","expires_in":7200}
12:40:55.402 [nacos-grpc-client-executor-117] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Receive server push request, request = NotifySubscriberRequest, requestId = 188
12:40:55.405 [nacos-grpc-client-executor-117] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Ack server push request, request = NotifySubscriberRequest, requestId = 188
12:42:05.509 [nacos-grpc-client-executor-122] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Receive server push request, request = ClientDetectionRequest, requestId = 190
12:42:05.509 [nacos-grpc-client-executor-127] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 189
12:42:06.597 [nacos-grpc-client-executor-127] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 189
12:42:06.597 [nacos-grpc-client-executor-122] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Ack server push request, request = ClientDetectionRequest, requestId = 190
12:42:16.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Server healthy check fail, currentConnection = 1717561918192_192.168.110.235_50759
12:42:16.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:42:16.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Server healthy check fail, currentConnection = 1717561905139_192.168.110.235_50660
12:42:16.825 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:42:19.769 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Success to connect a server [192.168.110.235:8848], connectionId = 1717562536069_192.168.110.235_51124
12:42:19.771 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717561918192_192.168.110.235_50759
12:42:21.393 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717561918192_192.168.110.235_50759
12:42:21.403 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Notify disconnected event to listeners
12:42:21.403 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:42:21.405 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Notify connected event to listeners.
12:42:21.501 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717562537541_192.168.110.235_51123
12:42:21.501 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717561905139_192.168.110.235_50660
12:42:21.501 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717561905139_192.168.110.235_50660
12:42:21.502 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Notify disconnected event to listeners
12:42:21.502 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:42:21.511 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Notify connected event to listeners.
12:42:21.547 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Success to connect a server [192.168.110.235:8848], connectionId = 1717562540652_192.168.110.235_51128
12:42:21.548 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717562536069_192.168.110.235_51124
12:42:21.548 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717562536069_192.168.110.235_51124
12:42:21.552 [nacos-grpc-client-executor-135] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717562536069_192.168.110.235_51124]Ignore complete event,isRunning:true,isAbandon=true
12:42:21.552 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Notify disconnected event to listeners
12:42:21.553 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Notify connected event to listeners.
12:42:21.638 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717562540749_192.168.110.235_51129
12:42:21.638 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717562537541_192.168.110.235_51123
12:42:21.639 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717562537541_192.168.110.235_51123
12:42:21.639 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Notify disconnected event to listeners
12:42:21.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c60f7ca-6eea-42f1-8459-95dc18d6c24d_config-0] Notify connected event to listeners.
12:42:25.026 [nacos-grpc-client-executor-140] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Receive server push request, request = NotifySubscriberRequest, requestId = 194
12:42:25.027 [nacos-grpc-client-executor-140] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Ack server push request, request = NotifySubscriberRequest, requestId = 194
12:42:25.030 [nacos-grpc-client-executor-141] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Receive server push request, request = NotifySubscriberRequest, requestId = 193
12:42:25.030 [nacos-grpc-client-executor-141] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b77481b2-3fac-4539-a83e-3d3b3425cfee] Ack server push request, request = NotifySubscriberRequest, requestId = 193
13:00:15.959 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
13:00:17.039 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0
13:00:17.134 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values 
13:00:17.193 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 4 keys and 9 values 
13:00:17.213 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values 
13:00:17.628 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 409 ms to scan 272 urls, producing 0 keys and 0 values 
13:00:17.640 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
13:00:17.664 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 1 keys and 7 values 
13:00:17.684 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values 
13:00:18.038 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 351 ms to scan 272 urls, producing 0 keys and 0 values 
13:00:18.041 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
13:00:18.042 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2090589929
13:00:18.043 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2063332705
13:00:18.044 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
13:00:18.045 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
13:00:18.056 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
13:00:19.729 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717563618727_192.168.110.235_51981
13:00:19.733 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] Notify connected event to listeners.
13:00:19.735 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
13:00:19.738 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5872d3a7-becb-4cb2-b161-2970b4303d5b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/32749970
13:00:19.874 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
13:00:24.531 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
13:00:24.531 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
13:00:24.532 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
13:00:25.649 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
13:00:26.540 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
13:00:26.541 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
13:00:26.542 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
13:00:30.874 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
13:00:32.782 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
13:00:33.211 [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
13:00:33.282 [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
13:00:34.645 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1e4bba72-8676-471d-a855-66869c5faee2
13:00:34.645 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] RpcClient init label, labels = {module=naming, source=sdk}
13:00:34.648 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
13:00:34.648 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
13:00:34.649 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
13:00:34.649 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
13:00:34.763 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717563633890_192.168.110.235_52087
13:00:34.763 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
13:00:34.763 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Notify connected event to listeners.
13:00:34.763 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/32749970
13:00:34.799 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
13:00:34.826 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
13:00:35.395 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Receive server push request, request = NotifySubscriberRequest, requestId = 199
13:00:35.403 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Ack server push request, request = NotifySubscriberRequest, requestId = 199
13:00:35.618 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 20.79 seconds (JVM running for 24.665)
13:00:35.643 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
13:00:35.652 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
13:00:35.658 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
13:00:36.194 [RMI TCP Connection(1)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
13:56:30.460 [http-nio-9205-exec-1] INFO  c.b.w.m.a.i.BaseWxMaServiceImpl - [extractAccessToken,320] - resultContent: {"access_token":"81_I-6qaa2fJelRoM8uf8W-vC2nGxKTF05uD5q2z6EVWzjLxyGPOvuZ3F_qGEPW-YBfkYXmhuBzm2huurfzDhe_U9q3GKF6BWjYQ-omEofUgry4L3H6QujJB1U0mboBWFiABAKFO","expires_in":7200}
13:56:45.958 [nacos-grpc-client-executor-679] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Receive server push request, request = NotifySubscriberRequest, requestId = 202
13:56:45.958 [nacos-grpc-client-executor-679] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Ack server push request, request = NotifySubscriberRequest, requestId = 202
15:04:12.848 [nacos-grpc-client-executor-1489] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Receive server push request, request = NotifySubscriberRequest, requestId = 263
15:04:12.919 [nacos-grpc-client-executor-1489] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Ack server push request, request = NotifySubscriberRequest, requestId = 263
15:04:43.145 [nacos-grpc-client-executor-1495] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Receive server push request, request = NotifySubscriberRequest, requestId = 265
15:04:43.148 [nacos-grpc-client-executor-1495] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Ack server push request, request = NotifySubscriberRequest, requestId = 265
15:33:13.953 [nacos-grpc-client-executor-1839] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Receive server push request, request = NotifySubscriberRequest, requestId = 363
15:33:13.963 [nacos-grpc-client-executor-1839] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Ack server push request, request = NotifySubscriberRequest, requestId = 363
15:35:09.998 [nacos-grpc-client-executor-1863] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Receive server push request, request = NotifySubscriberRequest, requestId = 366
15:35:10.001 [nacos-grpc-client-executor-1863] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Ack server push request, request = NotifySubscriberRequest, requestId = 366
15:39:21.697 [nacos-grpc-client-executor-1914] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Receive server push request, request = NotifySubscriberRequest, requestId = 377
15:39:21.781 [nacos-grpc-client-executor-1914] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Ack server push request, request = NotifySubscriberRequest, requestId = 377
15:39:50.284 [nacos-grpc-client-executor-1919] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Receive server push request, request = NotifySubscriberRequest, requestId = 382
15:39:50.287 [nacos-grpc-client-executor-1919] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Ack server push request, request = NotifySubscriberRequest, requestId = 382
15:40:29.524 [nacos-grpc-client-executor-1927] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Receive server push request, request = NotifySubscriberRequest, requestId = 390
15:40:29.528 [nacos-grpc-client-executor-1927] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e4bba72-8676-471d-a855-66869c5faee2] Ack server push request, request = NotifySubscriberRequest, requestId = 390
15:40:32.816 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
15:40:32.821 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
15:40:33.188 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
15:40:33.189 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2d683f4f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
15:40:33.189 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717563633890_192.168.110.235_52087
15:40:33.233 [nacos-grpc-client-executor-1930] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717563633890_192.168.110.235_52087]Ignore complete event,isRunning:false,isAbandon=false
15:40:33.289 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1b60ad1c[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 1931]
15:40:33.703 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
15:40:33.707 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
15:40:33.743 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
15:40:33.744 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
15:41:24.331 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
15:41:25.614 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 427c1c71-6300-456e-8db1-1f9870a21918_config-0
15:41:25.694 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values 
15:41:25.757 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values 
15:41:25.773 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
15:41:26.343 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 566 ms to scan 272 urls, producing 0 keys and 0 values 
15:41:26.373 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 1 urls, producing 1 keys and 5 values 
15:41:26.404 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 1 keys and 7 values 
15:41:26.431 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 2 keys and 8 values 
15:41:26.981 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 544 ms to scan 272 urls, producing 0 keys and 0 values 
15:41:26.983 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
15:41:26.984 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1088818894
15:41:26.985 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1066561773
15:41:26.986 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
15:41:26.988 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
15:41:27.010 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:41:29.555 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717573288471_192.168.110.235_60960
15:41:29.556 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] Notify connected event to listeners.
15:41:29.557 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:41:29.558 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [427c1c71-6300-456e-8db1-1f9870a21918_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/535687332
15:41:29.740 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
15:41:36.178 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
15:41:36.179 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:41:36.179 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
15:41:36.995 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:41:38.355 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
15:41:38.357 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
15:41:38.358 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:41:46.543 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:41:49.743 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
15:41:50.378 [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
15:41:50.555 [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
15:41:53.072 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7ad69f06-da00-44b0-8397-99e497ea2581
15:41:53.073 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] RpcClient init label, labels = {module=naming, source=sdk}
15:41:53.077 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:41:53.077 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:41:53.078 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:41:53.079 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:41:53.201 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717573312321_192.168.110.235_61392
15:41:53.201 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] Notify connected event to listeners.
15:41:53.201 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:41:53.201 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/535687332
15:41:53.294 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
15:41:53.590 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
15:41:53.828 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] Receive server push request, request = NotifySubscriberRequest, requestId = 410
15:41:53.835 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ad69f06-da00-44b0-8397-99e497ea2581] Ack server push request, request = NotifySubscriberRequest, requestId = 410
15:41:54.606 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 32.277 seconds (JVM running for 36.508)
15:41:54.627 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
15:41:54.634 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
15:41:54.640 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
15:41:55.414 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:17:55.076 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:17:56.115 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0
16:17:56.218 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 63 ms to scan 1 urls, producing 3 keys and 6 values 
16:17:56.272 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values 
16:17:56.292 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values 
16:17:56.718 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 420 ms to scan 272 urls, producing 0 keys and 0 values 
16:17:56.731 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
16:17:56.749 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
16:17:56.764 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:17:57.146 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 379 ms to scan 272 urls, producing 0 keys and 0 values 
16:17:57.148 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_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:57.149 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1716411886
16:17:57.149 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1126112943
16:17:57.151 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:17:57.152 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:17:57.163 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:17:58.914 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717575477934_192.168.110.235_63590
16:17:58.915 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0] Notify connected event to listeners.
16:17:58.915 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:17:58.916 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cc2f0429-ba2d-470d-8013-08b4312bb6f6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/722321959
16:17:59.058 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:18:02.932 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:18:02.934 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:18:02.934 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:18:03.386 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:18:04.130 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:18:04.131 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:18:04.131 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:18:08.570 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:18:10.383 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:18:10.869 [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:18:10.942 [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:12.533 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8d4bf21f-2764-454f-87c1-a93e9aa2208e
16:18:12.533 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] RpcClient init label, labels = {module=naming, source=sdk}
16:18:12.535 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:18:12.536 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:18:12.537 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:18:12.537 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:18:12.663 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717575491781_192.168.110.235_63689
16:18:12.663 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] Notify connected event to listeners.
16:18:12.663 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:18:12.664 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/722321959
16:18:12.714 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:18:12.758 [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:13.238 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] Receive server push request, request = NotifySubscriberRequest, requestId = 463
16:18:13.247 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d4bf21f-2764-454f-87c1-a93e9aa2208e] Ack server push request, request = NotifySubscriberRequest, requestId = 463
16:18:13.875 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 19.939 seconds (JVM running for 21.947)
16:18:13.902 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:18:13.912 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:18:13.919 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:18:14.942 [RMI TCP Connection(4)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:18:49.050 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:18:50.072 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0
16:18:50.160 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values 
16:18:50.206 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
16:18:50.228 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values 
16:18:50.630 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 397 ms to scan 272 urls, producing 0 keys and 0 values 
16:18:50.644 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
16:18:50.670 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 1 keys and 7 values 
16:18:50.686 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:18:51.041 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 352 ms to scan 272 urls, producing 0 keys and 0 values 
16:18:51.045 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_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:51.046 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/22874185
16:18:51.046 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1077464378
16:18:51.047 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:18:51.048 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:18:51.058 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:18:52.664 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717575531675_192.168.110.235_63775
16:18:52.667 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0] Notify connected event to listeners.
16:18:52.668 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:18:52.672 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [835377e1-92bf-4f4b-8228-f0877f3e6fba_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/312560500
16:18:52.799 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:18:56.443 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:18:56.443 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:18:56.443 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:18:56.893 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:18:57.785 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:18:57.786 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:18:57.786 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:19:01.907 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:19:03.616 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:19:04.051 [redisson-netty-4-9] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
16:19:04.128 [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:19:05.481 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 646c705d-aa93-4a8b-8c52-a89b47b6de83
16:19:05.482 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] RpcClient init label, labels = {module=naming, source=sdk}
16:19:05.484 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:19:05.484 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:19:05.485 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:19:05.485 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:19:05.599 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717575544730_192.168.110.235_63884
16:19:05.599 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:19:05.599 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] Notify connected event to listeners.
16:19:05.599 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/312560500
16:19:05.636 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:19:05.661 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:19:06.222 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] Receive server push request, request = NotifySubscriberRequest, requestId = 466
16:19:06.229 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [646c705d-aa93-4a8b-8c52-a89b47b6de83] Ack server push request, request = NotifySubscriberRequest, requestId = 466
16:19:06.453 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.422 seconds (JVM running for 20.342)
16:19:06.474 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:19:06.482 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:19:06.489 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:19:06.960 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:21:09.655 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:21:10.643 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0
16:21:10.726 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values 
16:21:10.775 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:21:10.792 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
16:21:11.189 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 390 ms to scan 272 urls, producing 0 keys and 0 values 
16:21:11.204 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
16:21:11.221 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
16:21:11.239 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
16:21:11.590 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 347 ms to scan 272 urls, producing 0 keys and 0 values 
16:21:11.593 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:21:11.594 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1920098017
16:21:11.594 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1088818894
16:21:11.595 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:21:11.596 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:21:11.607 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:21:13.245 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717575672259_192.168.110.235_64017
16:21:13.246 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Notify connected event to listeners.
16:21:13.246 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:21:13.247 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/411408557
16:21:13.367 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:21:16.971 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:21:16.972 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:21:16.973 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:21:17.414 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:21:18.241 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:21:18.242 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:21:18.242 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:21:22.335 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:21:24.021 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:21:24.484 [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:21:24.545 [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:21:25.897 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 06892683-113e-4183-b1a8-c1bd9e6c49dd
16:21:25.898 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] RpcClient init label, labels = {module=naming, source=sdk}
16:21:25.900 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:21:25.900 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:21:25.901 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:21:25.901 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:21:26.020 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717575685145_192.168.110.235_64116
16:21:26.020 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:21:26.020 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Notify connected event to listeners.
16:21:26.020 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/411408557
16:21:26.055 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:21:26.081 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:21:26.652 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Receive server push request, request = NotifySubscriberRequest, requestId = 469
16:21:26.662 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Ack server push request, request = NotifySubscriberRequest, requestId = 469
16:21:26.880 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.229 seconds (JVM running for 20.335)
16:21:26.903 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:21:26.913 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:21:26.920 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:21:27.332 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:22:23.916 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Server healthy check fail, currentConnection = 1717575685145_192.168.110.235_64116
16:22:23.916 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Server healthy check fail, currentConnection = 1717575672259_192.168.110.235_64017
16:22:23.917 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 471
16:22:23.917 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 471
16:22:23.917 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:22:23.918 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:22:23.918 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717575672259_192.168.110.235_64017]Ignore complete event,isRunning:false,isAbandon=false
16:22:24.138 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Success to connect a server [192.168.110.235:8848], connectionId = 1717575743206_192.168.110.235_64177
16:22:24.138 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717575685145_192.168.110.235_64116
16:22:24.138 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717575685145_192.168.110.235_64116
16:22:24.146 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Notify disconnected event to listeners
16:22:24.148 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06892683-113e-4183-b1a8-c1bd9e6c49dd] Notify connected event to listeners.
16:22:24.149 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717575743205_192.168.110.235_64176
16:22:24.149 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717575672259_192.168.110.235_64017
16:22:24.149 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717575672259_192.168.110.235_64017
16:22:24.150 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Notify disconnected event to listeners
16:22:24.168 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717575685145_192.168.110.235_64116]Ignore complete event,isRunning:true,isAbandon=true
16:22:24.174 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6b28d855-a9a5-4a47-a0b7-e8fd28c8e0d6_config-0] Notify connected event to listeners.
16:22:40.164 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:22:41.243 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0
16:22:41.326 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 49 ms to scan 1 urls, producing 3 keys and 6 values 
16:22:41.376 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:22:41.396 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values 
16:22:41.853 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 453 ms to scan 272 urls, producing 0 keys and 0 values 
16:22:41.866 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
16:22:41.883 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
16:22:41.898 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:22:42.254 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 354 ms to scan 272 urls, producing 0 keys and 0 values 
16:22:42.256 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:22:42.257 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1472494238
16:22:42.257 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1680147911
16:22:42.258 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:22:42.260 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:22:42.277 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:22:44.101 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717575763096_192.168.110.235_64231
16:22:44.102 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] Notify connected event to listeners.
16:22:44.103 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:22:44.104 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bd16dd5-16a6-4f98-9e99-36f3ede0047c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1975171943
16:22:44.255 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:22:47.936 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:22:47.937 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:22:47.937 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:22:48.396 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:22:49.197 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:22:49.198 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:22:49.199 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:22:53.667 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:22:55.553 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:22:55.997 [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:22:56.127 [redisson-netty-4-18] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
16:22:57.592 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 24fd3d64-5ee5-4e40-8d74-e7b075f81ea3
16:22:57.592 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] RpcClient init label, labels = {module=naming, source=sdk}
16:22:57.594 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:22:57.594 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:22:57.595 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:22:57.595 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:22:58.175 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717575776847_192.168.110.235_64335
16:22:58.175 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:22:58.175 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] Notify connected event to listeners.
16:22:58.176 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1975171943
16:22:58.225 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:22:58.260 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:22:58.718 [nacos-grpc-client-executor-8] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] Receive server push request, request = NotifySubscriberRequest, requestId = 473
16:22:58.726 [nacos-grpc-client-executor-8] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [24fd3d64-5ee5-4e40-8d74-e7b075f81ea3] Ack server push request, request = NotifySubscriberRequest, requestId = 473
16:22:59.147 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 20.048 seconds (JVM running for 22.391)
16:22:59.167 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:22:59.175 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:22:59.182 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:22:59.968 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:27:04.539 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:27:05.519 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0
16:27:05.595 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 46 ms to scan 1 urls, producing 3 keys and 6 values 
16:27:05.646 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
16:27:05.673 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 3 keys and 10 values 
16:27:06.078 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 401 ms to scan 272 urls, producing 0 keys and 0 values 
16:27:06.091 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
16:27:06.108 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
16:27:06.124 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:27:06.479 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 352 ms to scan 272 urls, producing 0 keys and 0 values 
16:27:06.482 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:27:06.483 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/112200409
16:27:06.483 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/864864095
16:27:06.484 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:27:06.485 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:27:06.496 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:27:08.093 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576027111_192.168.110.235_64529
16:27:08.094 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] Notify connected event to listeners.
16:27:08.094 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:27:08.095 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fbe112b-f139-424d-82cd-f1bbaf8171d2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1330415865
16:27:08.207 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:27:11.873 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:27:11.874 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:27:11.874 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:27:12.315 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:27:13.281 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:27:13.282 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:27:13.283 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:27:17.457 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:27:19.395 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:27:19.988 [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:27:20.060 [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:27:21.933 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5934fa2e-ffc7-4051-8bac-ea993e8acaa4
16:27:21.934 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] RpcClient init label, labels = {module=naming, source=sdk}
16:27:21.937 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:27:21.938 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:27:21.939 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:27:21.940 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:27:22.068 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576041189_192.168.110.235_64631
16:27:22.069 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:27:22.069 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] Notify connected event to listeners.
16:27:22.069 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1330415865
16:27:22.193 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:27:22.252 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:27:22.650 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] Receive server push request, request = NotifySubscriberRequest, requestId = 476
16:27:22.657 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5934fa2e-ffc7-4051-8bac-ea993e8acaa4] Ack server push request, request = NotifySubscriberRequest, requestId = 476
16:27:23.284 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 19.76 seconds (JVM running for 21.683)
16:27:23.305 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:27:23.312 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:27:23.320 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:27:23.893 [RMI TCP Connection(6)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:29:25.048 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
16:29:25.052 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
16:29:25.387 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
16:29:25.388 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@15a6968[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
16:29:25.388 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717576041189_192.168.110.235_64631
16:29:25.390 [nacos-grpc-client-executor-38] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717576041189_192.168.110.235_64631]Ignore complete event,isRunning:false,isAbandon=false
16:29:25.393 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@62a9108d[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 39]
16:29:25.524 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
16:29:25.527 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
16:29:25.537 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
16:29:25.538 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
16:29:32.434 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:29:33.413 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0
16:29:33.492 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values 
16:29:33.543 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:29:33.564 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values 
16:29:33.969 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 399 ms to scan 272 urls, producing 0 keys and 0 values 
16:29:33.981 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values 
16:29:33.996 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values 
16:29:34.011 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
16:29:34.367 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 353 ms to scan 272 urls, producing 0 keys and 0 values 
16:29:34.370 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:29:34.372 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/569959775
16:29:34.373 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/224192895
16:29:34.374 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:29:34.375 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:29:34.389 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:29:35.985 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576175003_192.168.110.235_64741
16:29:35.987 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] Notify connected event to listeners.
16:29:35.987 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:29:35.988 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e63dc8d0-99d2-4f74-861c-f8c75d03baab_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1591505133
16:29:36.100 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:29:40.118 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:29:40.121 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:29:40.122 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:29:40.678 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:29:41.689 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:29:41.690 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:29:41.691 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:29:45.915 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:29:47.742 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:29:48.244 [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:29:48.340 [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:29:49.914 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a850ec49-0e19-4cb2-8f30-192ddeccd770
16:29:49.914 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] RpcClient init label, labels = {module=naming, source=sdk}
16:29:49.918 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:29:49.918 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:29:49.920 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:29:49.920 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:29:50.047 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576189166_192.168.110.235_64842
16:29:50.047 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:29:50.047 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] Notify connected event to listeners.
16:29:50.047 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1591505133
16:29:50.083 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:29:50.110 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:29:50.670 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] Receive server push request, request = NotifySubscriberRequest, requestId = 479
16:29:50.678 [nacos-grpc-client-executor-7] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a850ec49-0e19-4cb2-8f30-192ddeccd770] Ack server push request, request = NotifySubscriberRequest, requestId = 479
16:29:51.235 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 19.833 seconds (JVM running for 22.133)
16:29:51.257 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:29:51.265 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:29:51.271 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:29:51.885 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:31:32.154 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
16:31:32.157 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
16:31:32.496 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
16:31:32.497 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2858fc92[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
16:31:32.497 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717576189166_192.168.110.235_64842
16:31:32.499 [nacos-grpc-client-executor-31] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717576189166_192.168.110.235_64842]Ignore complete event,isRunning:false,isAbandon=false
16:31:32.503 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@78ef182f[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 32]
16:31:32.640 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
16:31:32.642 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
16:31:32.652 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
16:31:32.652 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
16:31:47.817 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:31:48.845 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0
16:31:48.928 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values 
16:31:48.978 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values 
16:31:48.997 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
16:31:49.572 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 571 ms to scan 272 urls, producing 0 keys and 0 values 
16:31:49.584 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values 
16:31:49.601 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
16:31:49.616 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
16:31:49.978 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 359 ms to scan 272 urls, producing 0 keys and 0 values 
16:31:49.982 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:31:49.982 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1716411886
16:31:49.983 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1126112943
16:31:49.984 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:31:49.984 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:31:49.995 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:31:51.767 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576310765_192.168.110.235_64963
16:31:51.768 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] Notify connected event to listeners.
16:31:51.769 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:31:51.769 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e6720aa-3aef-4e15-8d8d-6465e1f33219_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/722321959
16:31:51.888 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:31:56.012 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:31:56.013 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:31:56.013 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:31:56.471 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:31:57.229 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:31:57.230 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:31:57.231 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:32:01.626 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:32:03.297 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:32:03.769 [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:32:03.846 [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:32:05.413 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 009915ad-3e28-43ad-ba5f-5b7865d64c2f
16:32:05.414 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] RpcClient init label, labels = {module=naming, source=sdk}
16:32:05.418 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:32:05.418 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:32:05.419 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:32:05.420 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:32:05.540 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576324664_192.168.110.235_65071
16:32:05.540 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] Notify connected event to listeners.
16:32:05.540 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:32:05.540 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/722321959
16:32:05.585 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:32:05.620 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:32:06.093 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] Receive server push request, request = NotifySubscriberRequest, requestId = 485
16:32:06.100 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [009915ad-3e28-43ad-ba5f-5b7865d64c2f] Ack server push request, request = NotifySubscriberRequest, requestId = 485
16:32:06.480 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 19.719 seconds (JVM running for 21.773)
16:32:06.503 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:32:06.511 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:32:06.519 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:32:07.395 [RMI TCP Connection(5)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:37:40.934 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:37:41.912 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0
16:37:41.996 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values 
16:37:42.042 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:37:42.061 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
16:37:42.469 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 404 ms to scan 272 urls, producing 0 keys and 0 values 
16:37:42.482 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values 
16:37:42.504 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 1 keys and 7 values 
16:37:42.522 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values 
16:37:42.868 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 343 ms to scan 272 urls, producing 0 keys and 0 values 
16:37:42.873 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:37:42.874 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/280862192
16:37:42.874 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/987805552
16:37:42.875 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:37:42.876 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:37:42.886 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:37:44.523 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576663522_192.168.110.235_65479
16:37:44.525 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] Notify connected event to listeners.
16:37:44.526 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:37:44.528 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e847e0d-635e-400c-825d-a5e9bfe1a56a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/205023576
16:37:44.693 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:37:48.352 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:37:48.353 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:37:48.353 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:37:48.802 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:37:49.599 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:37:49.600 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:37:49.600 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:37:53.845 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:37:55.549 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:37:55.976 [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:37:56.056 [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:37:57.411 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of da4889df-e727-4264-bd64-36fe919dd719
16:37:57.411 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] RpcClient init label, labels = {module=naming, source=sdk}
16:37:57.414 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:37:57.414 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:37:57.415 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:37:57.415 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:37:57.550 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576676663_192.168.110.235_49201
16:37:57.551 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:37:57.551 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] Notify connected event to listeners.
16:37:57.551 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/205023576
16:37:57.588 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:37:57.612 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:37:58.141 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] Receive server push request, request = NotifySubscriberRequest, requestId = 488
16:37:58.148 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [da4889df-e727-4264-bd64-36fe919dd719] Ack server push request, request = NotifySubscriberRequest, requestId = 488
16:37:58.400 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.466 seconds (JVM running for 20.423)
16:37:58.420 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:37:58.427 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:37:58.433 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:37:58.976 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:39:29.341 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:39:30.323 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of cfa4a110-810e-4853-8c4d-842b681780aa_config-0
16:39:30.402 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 47 ms to scan 1 urls, producing 3 keys and 6 values 
16:39:30.454 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
16:39:30.476 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values 
16:39:30.897 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 417 ms to scan 272 urls, producing 0 keys and 0 values 
16:39:30.912 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values 
16:39:30.927 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values 
16:39:30.941 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values 
16:39:31.292 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 348 ms to scan 272 urls, producing 0 keys and 0 values 
16:39:31.297 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:39:31.298 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1010156357
16:39:31.298 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/57151543
16:39:31.300 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:39:31.301 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:39:31.312 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:39:32.905 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576771918_192.168.110.235_49370
16:39:32.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] Notify connected event to listeners.
16:39:32.907 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:39:32.908 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [cfa4a110-810e-4853-8c4d-842b681780aa_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1039245740
16:39:33.018 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:39:36.674 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
16:39:36.675 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:39:36.675 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:39:37.115 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:39:38.189 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:39:38.192 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:39:38.193 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:39:42.330 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:39:44.033 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:39:44.461 [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:39:44.679 [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:39:46.035 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 71a8c822-2dab-4ead-a30d-0a8a836da76e
16:39:46.036 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] RpcClient init label, labels = {module=naming, source=sdk}
16:39:46.039 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:39:46.039 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:39:46.040 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:39:46.040 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:39:46.172 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717576785286_192.168.110.235_49474
16:39:46.172 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:39:46.173 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1039245740
16:39:46.173 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] Notify connected event to listeners.
16:39:46.211 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
16:39:46.297 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
16:39:46.764 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] Receive server push request, request = NotifySubscriberRequest, requestId = 491
16:39:46.772 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [71a8c822-2dab-4ead-a30d-0a8a836da76e] Ack server push request, request = NotifySubscriberRequest, requestId = 491
16:39:47.101 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.804 seconds (JVM running for 21.041)
16:39:47.121 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
16:39:47.129 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
16:39:47.134 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
16:39:47.787 [RMI TCP Connection(1)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:04:29.454 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:04:30.479 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0
17:04:30.580 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 59 ms to scan 1 urls, producing 3 keys and 6 values 
17:04:30.650 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 4 keys and 9 values 
17:04:30.669 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values 
17:04:31.115 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 439 ms to scan 272 urls, producing 0 keys and 0 values 
17:04:31.132 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 5 values 
17:04:31.150 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
17:04:31.167 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values 
17:04:31.522 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 352 ms to scan 272 urls, producing 0 keys and 0 values 
17:04:31.523 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:04:31.524 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/866370634
17:04:31.524 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1607453282
17:04:31.526 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:04:31.527 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:04:31.538 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:04:33.269 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717578272283_192.168.110.235_51076
17:04:33.270 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Notify connected event to listeners.
17:04:33.271 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:04:33.271 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/645717550
17:04:33.406 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:04:38.134 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
17:04:38.135 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:04:38.135 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:04:38.610 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:04:39.423 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:04:39.425 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:04:39.425 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:04:44.190 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:04:46.103 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:04:46.552 [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
17:04:46.614 [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:04:48.140 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 216af329-7023-42ab-885f-8b1ccecb8ece
17:04:48.140 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] RpcClient init label, labels = {module=naming, source=sdk}
17:04:48.143 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:04:48.144 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:04:48.144 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:04:48.145 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:04:48.267 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717578287391_192.168.110.235_51187
17:04:48.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Notify connected event to listeners.
17:04:48.268 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:04:48.268 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/645717550
17:04:48.304 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
17:04:48.333 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
17:04:48.834 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Receive server push request, request = NotifySubscriberRequest, requestId = 508
17:04:48.843 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Ack server push request, request = NotifySubscriberRequest, requestId = 508
17:04:49.313 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 20.985 seconds (JVM running for 23.336)
17:04:49.335 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
17:04:49.344 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
17:04:49.350 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
17:04:50.112 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:14:21.689 [nacos-grpc-client-executor-125] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 510
17:14:21.689 [nacos-grpc-client-executor-114] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Receive server push request, request = ClientDetectionRequest, requestId = 511
17:14:21.695 [nacos-grpc-client-executor-114] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Ack server push request, request = ClientDetectionRequest, requestId = 511
17:14:21.695 [nacos-grpc-client-executor-125] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 510
17:14:21.704 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Server healthy check fail, currentConnection = 1717578272283_192.168.110.235_51076
17:14:21.704 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Server healthy check fail, currentConnection = 1717578287391_192.168.110.235_51187
17:14:21.704 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:14:21.704 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:14:21.819 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Success to connect a server [192.168.110.235:8848], connectionId = 1717578860952_192.168.110.235_51781
17:14:21.819 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717578860952_192.168.110.235_51782
17:14:21.819 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717578287391_192.168.110.235_51187
17:14:21.819 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717578272283_192.168.110.235_51076
17:14:21.819 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717578272283_192.168.110.235_51076
17:14:21.819 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717578287391_192.168.110.235_51187
17:14:21.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:14:21.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:14:21.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Notify disconnected event to listeners
17:14:21.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Notify disconnected event to listeners
17:14:21.826 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Notify connected event to listeners.
17:14:21.830 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Notify connected event to listeners.
17:14:21.959 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Success to connect a server [192.168.110.235:8848], connectionId = 1717578861079_192.168.110.235_51783
17:14:21.959 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717578861079_192.168.110.235_51784
17:14:21.959 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717578860952_192.168.110.235_51781
17:14:21.959 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717578860952_192.168.110.235_51782
17:14:21.959 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717578860952_192.168.110.235_51781
17:14:21.959 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717578860952_192.168.110.235_51782
17:14:21.962 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Notify disconnected event to listeners
17:14:21.962 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Notify disconnected event to listeners
17:14:21.962 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Notify connected event to listeners.
17:14:21.962 [nacos-grpc-client-executor-123] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717578860952_192.168.110.235_51781]Ignore complete event,isRunning:true,isAbandon=true
17:14:21.963 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Notify connected event to listeners.
17:14:21.967 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Server check success, currentServer is 192.168.110.235:8848
17:14:25.251 [nacos-grpc-client-executor-128] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Receive server push request, request = NotifySubscriberRequest, requestId = 513
17:14:25.252 [nacos-grpc-client-executor-128] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Ack server push request, request = NotifySubscriberRequest, requestId = 513
17:15:16.069 [nacos-grpc-client-executor-131] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Receive server push request, request = ClientDetectionRequest, requestId = 515
17:15:16.070 [nacos-grpc-client-executor-131] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Ack server push request, request = ClientDetectionRequest, requestId = 515
17:15:16.070 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Server healthy check fail, currentConnection = 1717578861079_192.168.110.235_51784
17:15:16.070 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:15:16.071 [nacos-grpc-client-executor-137] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 516
17:15:16.073 [nacos-grpc-client-executor-137] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 516
17:15:16.073 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Server healthy check fail, currentConnection = 1717578861079_192.168.110.235_51783
17:15:16.075 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:15:16.080 [nacos-grpc-client-executor-137] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717578861079_192.168.110.235_51784]Ignore complete event,isRunning:false,isAbandon=false
17:15:16.222 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Success to connect a server [192.168.110.235:8848], connectionId = 1717578915352_192.168.110.235_51841
17:15:16.222 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1717578915351_192.168.110.235_51840
17:15:16.222 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717578861079_192.168.110.235_51784
17:15:16.222 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717578861079_192.168.110.235_51783
17:15:16.222 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717578861079_192.168.110.235_51784
17:15:16.222 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717578861079_192.168.110.235_51783
17:15:16.223 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:15:16.223 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Notify disconnected event to listeners
17:15:16.223 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Notify disconnected event to listeners
17:15:16.224 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Notify connected event to listeners.
17:15:16.229 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8817ccb-7ea5-4bad-9c6a-3d9f1053801d_config-0] Notify connected event to listeners.
17:15:16.348 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Success to connect a server [192.168.110.235:8848], connectionId = 1717578915469_192.168.110.235_51843
17:15:16.348 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1717578915352_192.168.110.235_51841
17:15:16.348 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717578915352_192.168.110.235_51841
17:15:16.348 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Notify disconnected event to listeners
17:15:16.349 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Notify connected event to listeners.
17:15:19.633 [nacos-grpc-client-executor-142] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Receive server push request, request = NotifySubscriberRequest, requestId = 518
17:15:19.634 [nacos-grpc-client-executor-142] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [216af329-7023-42ab-885f-8b1ccecb8ece] Ack server push request, request = NotifySubscriberRequest, requestId = 518
17:50:29.418 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
17:50:29.436 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
17:50:29.791 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
17:50:29.792 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@e06b807[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
17:50:29.792 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717578915469_192.168.110.235_51843
17:50:29.793 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@709b132[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 567]
17:50:29.950 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
17:50:29.954 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
17:50:29.964 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
17:50:29.965 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
17:51:33.895 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:51:35.583 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0
17:51:35.706 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 77 ms to scan 1 urls, producing 3 keys and 6 values 
17:51:35.773 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values 
17:51:35.791 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
17:51:36.239 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 442 ms to scan 272 urls, producing 0 keys and 0 values 
17:51:36.253 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
17:51:36.277 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values 
17:51:36.300 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
17:51:36.703 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 398 ms to scan 272 urls, producing 0 keys and 0 values 
17:51:36.706 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:51:36.707 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/836386144
17:51:36.707 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1621939721
17:51:36.709 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:51:36.710 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:51:36.726 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:51:39.553 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717581098517_192.168.110.235_54930
17:51:39.554 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] Notify connected event to listeners.
17:51:39.555 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:51:39.555 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [43b203bd-65f1-47e0-a275-8b4f9c9b4fdf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1189496672
17:51:39.681 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:51:45.208 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
17:51:45.209 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:51:45.210 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:51:45.886 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:51:47.106 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:51:47.108 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:51:47.108 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:51:54.090 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:51:57.562 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:51:58.177 [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:51:58.250 [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:52:00.454 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 56a95b59-7804-433b-a0d9-5ebd52047936
17:52:00.455 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] RpcClient init label, labels = {module=naming, source=sdk}
17:52:00.458 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:52:00.458 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:52:00.459 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:52:00.460 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:52:00.586 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717581119706_192.168.110.235_55340
17:52:00.586 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:52:00.586 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] Notify connected event to listeners.
17:52:00.587 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1189496672
17:52:00.635 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
17:52:00.670 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
17:52:01.153 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] Receive server push request, request = NotifySubscriberRequest, requestId = 559
17:52:01.160 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56a95b59-7804-433b-a0d9-5ebd52047936] Ack server push request, request = NotifySubscriberRequest, requestId = 559
17:52:02.479 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 29.977 seconds (JVM running for 32.556)
17:52:02.521 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
17:52:02.530 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
17:52:02.539 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
17:52:03.464 [RMI TCP Connection(8)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:22:10.200 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
18:22:11.240 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0
18:22:11.325 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values 
18:22:11.386 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
18:22:11.403 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
18:22:11.773 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 367 ms to scan 272 urls, producing 0 keys and 0 values 
18:22:11.787 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
18:22:11.802 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values 
18:22:11.816 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values 
18:22:12.203 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 384 ms to scan 272 urls, producing 0 keys and 0 values 
18:22:12.206 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
18:22:12.207 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/804347788
18:22:12.207 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2124978601
18:22:12.209 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
18:22:12.209 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
18:22:12.221 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:22:13.877 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717582932705_192.168.110.235_57661
18:22:13.880 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] Notify connected event to listeners.
18:22:13.881 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:22:13.883 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4a4299e0-b978-485d-b7d6-f435c6c2dbf7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1504154691
18:22:14.010 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
18:22:17.675 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
18:22:17.675 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
18:22:17.675 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
18:22:18.132 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
18:22:18.917 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
18:22:18.918 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
18:22:18.919 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:22:23.310 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:22:25.025 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
18:22:25.491 [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
18:22:25.569 [redisson-netty-4-18] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
18:22:27.111 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e7f6809d-f2d5-4f2e-996e-96914a408d90
18:22:27.112 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] RpcClient init label, labels = {module=naming, source=sdk}
18:22:27.115 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:22:27.116 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:22:27.116 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:22:27.117 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:22:27.232 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717582946268_192.168.110.235_57767
18:22:27.232 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:22:27.232 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] Notify connected event to listeners.
18:22:27.232 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1504154691
18:22:27.272 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
18:22:27.300 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
18:22:27.835 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] Receive server push request, request = NotifySubscriberRequest, requestId = 613
18:22:27.843 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e7f6809d-f2d5-4f2e-996e-96914a408d90] Ack server push request, request = NotifySubscriberRequest, requestId = 613
18:22:28.207 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 18.991 seconds (JVM running for 20.885)
18:22:28.232 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
18:22:28.241 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
18:22:28.248 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
18:22:28.795 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:38:40.844 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
18:38:40.847 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
18:38:41.193 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
18:38:41.193 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@33c4ea20[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
18:38:41.193 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717582946268_192.168.110.235_57767
18:38:41.195 [nacos-grpc-client-executor-206] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717582946268_192.168.110.235_57767]Ignore complete event,isRunning:false,isAbandon=false
18:38:41.202 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2918a5cd[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 207]
18:38:41.344 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
18:38:41.348 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
18:38:41.361 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
18:38:41.362 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
18:39:28.910 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
18:39:30.266 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0
18:39:30.385 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 75 ms to scan 1 urls, producing 3 keys and 6 values 
18:39:30.460 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 4 keys and 9 values 
18:39:30.492 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 3 keys and 10 values 
18:39:31.125 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 627 ms to scan 272 urls, producing 0 keys and 0 values 
18:39:31.146 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 1 keys and 5 values 
18:39:31.172 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 7 values 
18:39:31.202 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 2 keys and 8 values 
18:39:31.676 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 467 ms to scan 272 urls, producing 0 keys and 0 values 
18:39:31.678 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
18:39:31.679 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1790229151
18:39:31.680 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/665641137
18:39:31.681 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
18:39:31.682 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
18:39:31.697 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:39:33.784 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717583972624_192.168.110.235_58909
18:39:33.785 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] Notify connected event to listeners.
18:39:33.786 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:39:33.786 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56423ac0-5cd3-41b8-aaba-faa190cfa57f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1002762002
18:39:33.934 [main] INFO  c.r.m.RuoYiMemberApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
18:39:39.190 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9205"]
18:39:39.191 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
18:39:39.191 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
18:39:39.735 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
18:39:40.653 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
18:39:40.654 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
18:39:40.655 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:39:45.989 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:39:48.138 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
18:39:48.674 [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
18:39:48.756 [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
18:39:50.798 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 56421038-3dcc-4419-abfc-df6db9f55fe7
18:39:50.798 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] RpcClient init label, labels = {module=naming, source=sdk}
18:39:50.802 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:39:50.802 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:39:50.803 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:39:50.804 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:39:50.928 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1717583989901_192.168.110.235_59354
18:39:50.929 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:39:50.929 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] Notify connected event to listeners.
18:39:50.929 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1002762002
18:39:50.975 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9205"]
18:39:51.009 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-member 192.168.110.235:9205 register finished
18:39:51.522 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] Receive server push request, request = NotifySubscriberRequest, requestId = 630
18:39:51.528 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [56421038-3dcc-4419-abfc-df6db9f55fe7] Ack server push request, request = NotifySubscriberRequest, requestId = 630
18:39:51.994 [main] INFO  c.r.m.RuoYiMemberApplication - [logStarted,61] - Started RuoYiMemberApplication in 24.921 seconds (JVM running for 27.995)
18:39:52.020 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member, group=DEFAULT_GROUP
18:39:52.028 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member-dev.yml, group=DEFAULT_GROUP
18:39:52.038 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-member.yml, group=DEFAULT_GROUP
18:39:52.559 [RMI TCP Connection(4)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:41:27.325 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
18:41:27.330 [SpringApplicationShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
18:41:27.666 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
18:41:27.666 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@f2f04ea[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
18:41:27.666 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1717583989901_192.168.110.235_59354
18:41:27.668 [nacos-grpc-client-executor-29] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1717583989901_192.168.110.235_59354]Ignore complete event,isRunning:false,isAbandon=false
18:41:27.672 [SpringApplicationShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3fa0af05[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 30]
18:41:27.808 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
18:41:27.811 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
18:41:27.823 [SpringApplicationShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
18:41:27.823 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye