我的docker-compose.yaml内容如下:
version: "3"
services:
halo:
image: halohub/halo:2.4
container_name: halo
restart: on-failure:1
network_mode: "host"
volumes:
- ./halo2:/root/.halo2
command:
- --spring.r2dbc.url=r2dbc:pool:mysql://127.0.0.1:3306/halo
- --spring.r2dbc.username=root
- --spring.r2dbc.password=12345678
- --spring.sql.init.platform=mysql
- --halo.external-url=http://localhost:8090/
- --halo.security.initializer.superadminusername=admin
- --halo.security.initializer.superadminpassword=admin
- --server.port=8090
halo容器启动日志如下:
2023-11-29 20:42:18
2023-11-29 20:42:18 __ __ __
2023-11-29 20:42:18 / / / /___ / /__
2023-11-29 20:42:18 / // / __ `/ / __ \
2023-11-29 20:42:18 / __ / // / / // /
2023-11-29 20:42:18 // //_,//____/
2023-11-29 20:42:18
2023-11-29 20:42:18 Version: 2.4.3
2023-11-29 20:42:18 2023-11-29T20:42:18.770+08:00 INFO 7 --- [ main] run.halo.app.Application : Starting Application v2.4.3 using Java 17.0.6 with PID 7 (/application/BOOT-INF/classes started by root in /application)
2023-11-29 20:42:18 2023-11-29T20:42:18.776+08:00 INFO 7 --- [ main] run.halo.app.Application : No active profile set, falling back to 1 default profile: "default"
2023-11-29 20:42:19 2023-11-29T20:42:19.514+08:00 INFO 7 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-11-29 20:42:19 2023-11-29T20:42:19.518+08:00 INFO 7 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data R2DBC repositories in DEFAULT mode.
2023-11-29 20:42:19 2023-11-29T20:42:19.628+08:00 INFO 7 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 101 ms. Found 1 R2DBC repository interfaces.
2023-11-29 20:42:20 2023-11-29T20:42:20.054+08:00 INFO 7 --- [ main] c.g.j.r.m.MysqlConnectionFactoryProvider : set jasync.mysql.CLIENT_FOUND_ROWS=true
2023-11-29 20:42:20 2023-11-29T20:42:20.089+08:00 INFO 7 --- [ main] c.github.jasync.sql.db.util.NettyUtils : jasync selected transport - nio
2023-11-29 20:42:20 2023-11-29T20:42:20.597+08:00 INFO 7 --- [ main] org.pf4j.DefaultPluginStatusProvider : Enabled plugins: []
2023-11-29 20:42:20 2023-11-29T20:42:20.600+08:00 INFO 7 --- [ main] org.pf4j.DefaultPluginStatusProvider : Disabled plugins: []
2023-11-29 20:42:20 2023-11-29T20:42:20.603+08:00 INFO 7 --- [ main] org.pf4j.DefaultPluginManager : PF4J version 3.9.0 in 'deployment' mode
2023-11-29 20:42:21 2023-11-29T20:42:21.641+08:00 INFO 7 --- [ main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 5 endpoint(s) beneath base path '/actuator'
2023-11-29 20:42:22 2023-11-29T20:42:22.032+08:00 INFO 7 --- [ main] o.s.b.web.embedded.netty.NettyWebServer : Netty started on port 8090
2023-11-29 20:42:22 2023-11-29T20:42:22.035+08:00 INFO 7 --- [ main] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.metrics.VisitedEventReconciler
2023-11-29 20:42:22 2023-11-29T20:42:22.039+08:00 INFO 7 --- [ main] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.metrics.ReplyEventReconciler
2023-11-29 20:42:22 2023-11-29T20:42:22.039+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.metrics.VisitedEventReconciler-worker-1 started
2023-11-29 20:42:22 2023-11-29T20:42:22.041+08:00 INFO 7 --- [ main] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.search.post.PostEventReconciler
2023-11-29 20:42:22 2023-11-29T20:42:22.043+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.metrics.ReplyEventReconciler-worker-1 started
2023-11-29 20:42:22 2023-11-29T20:42:22.043+08:00 INFO 7 --- [ main] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.plugin.PluginCreatedEventReconciler
2023-11-29 20:42:22 2023-11-29T20:42:22.044+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.search.post.PostEventReconciler-worker-1 started
2023-11-29 20:42:22 2023-11-29T20:42:22.048+08:00 INFO 7 --- [ main] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.metrics.VotedEventReconciler
2023-11-29 20:42:22 2023-11-29T20:42:22.048+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.plugin.PluginCreatedEventReconciler-worker-1 started
2023-11-29 20:42:22 2023-11-29T20:42:22.056+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.metrics.VotedEventReconciler-worker-1 started
2023-11-29 20:42:22 2023-11-29T20:42:22.074+08:00 INFO 7 --- [ scheduling-1] r.h.a.s.a.login.impl.RsaKeyService : Generating RSA keys...
2023-11-29 20:42:22 2023-11-29T20:42:22.075+08:00 INFO 7 --- [ main] run.halo.app.Application : Started Application in 3.634 seconds (process running for 3.938)
2023-11-29 20:42:22 2023-11-29T20:42:22.361+08:00 INFO 7 --- [ scheduling-1] r.h.a.s.a.login.impl.RsaKeyService : Generated RSA keys. Usage: 285 ms.
2023-11-29 20:42:22 2023-11-29T20:42:22.515+08:00 INFO 7 --- [ main] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.content.Post) synchronizer...
2023-11-29 20:42:22 2023-11-29T20:42:22.580+08:00 INFO 7 --- [ main] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.content.Post) synchronizer.
2023-11-29 20:42:22 2023-11-29T20:42:22.584+08:00 INFO 7 --- [ main] r.h.app.infra.DefaultThemeInitializer : Initializing default theme from classpath:themes/theme-earth.zip
2023-11-29 20:42:22 2023-11-29T20:42:22.828+08:00 INFO 7 --- [-netty-thread-2] r.h.app.infra.DefaultThemeInitializer : Initialized default theme: theme-earth
2023-11-29 20:42:23 2023-11-29T20:42:23.086+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller garbage-collector-controller
2023-11-29 20:42:23 2023-11-29T20:42:23.088+08:00 INFO 7 --- [-controller-t-1] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.089+08:00 INFO 7 --- [-controller-t-3] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-3 started
2023-11-29 20:42:23 2023-11-29T20:42:23.091+08:00 INFO 7 --- [-controller-t-5] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-5 started
2023-11-29 20:42:23 2023-11-29T20:42:23.091+08:00 INFO 7 --- [-controller-t-4] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-4 started
2023-11-29 20:42:23 2023-11-29T20:42:23.092+08:00 INFO 7 --- [-controller-t-7] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-7 started
2023-11-29 20:42:23 2023-11-29T20:42:23.093+08:00 INFO 7 --- [-controller-t-9] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-9 started
2023-11-29 20:42:23 2023-11-29T20:42:23.093+08:00 INFO 7 --- [-controller-t-8] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-8 started
2023-11-29 20:42:23 2023-11-29T20:42:23.093+08:00 INFO 7 --- [-controller-t-6] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-6 started
2023-11-29 20:42:23 2023-11-29T20:42:23.096+08:00 INFO 7 --- [-controller-t-2] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-2 started
2023-11-29 20:42:23 2023-11-29T20:42:23.098+08:00 INFO 7 --- [controller-t-10] r.h.a.e.controller.DefaultController : Controller worker garbage-collector-controller-worker-10 started
2023-11-29 20:42:23 2023-11-29T20:42:23.098+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.UserReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.104+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.RoleBindingReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.104+08:00 INFO 7 --- [rReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.UserReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.105+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.RoleBindingReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.105+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.attachment.AttachmentReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.106+08:00 INFO 7 --- [rReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.User) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.107+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.RoleBinding) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.114+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.SystemSettingReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.114+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.attachment.AttachmentReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.115+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.RoleBinding) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.117+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.attachment.Attachment) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.118+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.SystemSettingReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.118+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.MenuItemReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.119+08:00 INFO 7 --- [rReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.User) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.120+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.extension.ConfigMap) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.121+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.CommentReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.121+08:00 INFO 7 --- [mReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.MenuItemReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.121+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.attachment.Attachment) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.137+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.PluginReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.137+08:00 INFO 7 --- [mReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.MenuItem) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.138+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.ReverseProxyReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.140+08:00 INFO 7 --- [nReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PluginReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.142+08:00 INFO 7 --- [nReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.Plugin) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.144+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.TagReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.144+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.CommentReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.144+08:00 INFO 7 --- [yReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.ReverseProxyReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.146+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.ReplyReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.146+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.content.Comment) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.146+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.TagReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.148+08:00 INFO 7 --- [yReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.ReverseProxy) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.150+08:00 INFO 7 --- [nReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.Plugin) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.151+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.CategoryReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.151+08:00 INFO 7 --- [yReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.ReplyReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.152+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.content.Comment) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.152+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.content.Tag) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.155+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.content.Tag) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.156+08:00 INFO 7 --- [yReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.ReverseProxy) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.160+08:00 INFO 7 --- [yReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.content.Reply) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.160+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.PostReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.162+08:00 INFO 7 --- [yReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.CategoryReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.164+08:00 INFO 7 --- [yReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.content.Category) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.170+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.170+08:00 INFO 7 --- [tReconciler-t-2] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-2 started
2023-11-29 20:42:23 2023-11-29T20:42:23.171+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.content.Post) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.172+08:00 INFO 7 --- [tReconciler-t-2] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.content.Post) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.173+08:00 INFO 7 --- [tReconciler-t-3] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-3 started
2023-11-29 20:42:23 2023-11-29T20:42:23.175+08:00 INFO 7 --- [tReconciler-t-4] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-4 started
2023-11-29 20:42:23 2023-11-29T20:42:23.179+08:00 INFO 7 --- [tReconciler-t-6] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-6 started
2023-11-29 20:42:23 2023-11-29T20:42:23.180+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.extension.ConfigMap) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.182+08:00 INFO 7 --- [yReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.content.Category) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.182+08:00 INFO 7 --- [tReconciler-t-2] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.content.Post) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.183+08:00 INFO 7 --- [mReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.MenuItem) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.184+08:00 INFO 7 --- [tReconciler-t-5] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-5 started
2023-11-29 20:42:23 2023-11-29T20:42:23.184+08:00 INFO 7 --- [tReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.content.Post) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.187+08:00 INFO 7 --- [tReconciler-t-8] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-8 started
2023-11-29 20:42:23 2023-11-29T20:42:23.186+08:00 INFO 7 --- [tReconciler-t-7] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-7 started
2023-11-29 20:42:23 2023-11-29T20:42:23.193+08:00 INFO 7 --- [tReconciler-t-9] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-9 started
2023-11-29 20:42:23 2023-11-29T20:42:23.194+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.theme.router.SinglePageRoute
2023-11-29 20:42:23 2023-11-29T20:42:23.195+08:00 INFO 7 --- [Reconciler-t-10] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.PostReconciler-worker-10 started
2023-11-29 20:42:23 2023-11-29T20:42:23.203+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.SinglePageReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.204+08:00 INFO 7 --- [ task-1] run.halo.app.search.IndicesInitializer : Initialize post indices...
2023-11-29 20:42:23 2023-11-29T20:42:23.209+08:00 INFO 7 --- [lePageRoute-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.theme.router.SinglePageRoute-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.210+08:00 INFO 7 --- [lePageRoute-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.content.SinglePage) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.220+08:00 INFO 7 --- [lePageRoute-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.content.SinglePage) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.223+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.ThemeReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.223+08:00 INFO 7 --- [eReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.SinglePageReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.225+08:00 INFO 7 --- [eReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.content.SinglePage) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.229+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.RoleReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.229+08:00 INFO 7 --- [ task-1] run.halo.app.search.IndicesInitializer : Initialized post indices. Usage: StopWatch 'PostIndicesWatch': running time = 23929542 ns; [rebuild] took 23929542 ns = 100%
2023-11-29 20:42:23 2023-11-29T20:42:23.229+08:00 INFO 7 --- [eReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.ThemeReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.232+08:00 INFO 7 --- [eReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.Theme) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.236+08:00 INFO 7 --- [eReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.Theme) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.239+08:00 INFO 7 --- [eReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.content.SinglePage) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.240+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.AnnotationSettingReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.243+08:00 INFO 7 --- [-netty-thread-6] r.h.a.e.controller.DefaultController : Starting controller run.halo.app.core.extension.reconciler.AuthProviderReconciler
2023-11-29 20:42:23 2023-11-29T20:42:23.245+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.AnnotationSettingReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.247+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.AnnotationSetting) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.250+08:00 INFO 7 --- [eReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.RoleReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.252+08:00 INFO 7 --- [eReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.Role) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.254+08:00 INFO 7 --- [yReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.content.Reply) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.257+08:00 INFO 7 --- [gReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.AnnotationSetting) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.259+08:00 INFO 7 --- [rReconciler-t-1] r.h.a.e.controller.DefaultController : Controller worker run.halo.app.core.extension.reconciler.AuthProviderReconciler-worker-1 started
2023-11-29 20:42:23 2023-11-29T20:42:23.265+08:00 INFO 7 --- [rReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Starting request(class run.halo.app.core.extension.AuthProvider) synchronizer...
2023-11-29 20:42:23 2023-11-29T20:42:23.272+08:00 INFO 7 --- [rReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.AuthProvider) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.485+08:00 INFO 7 --- [eReconciler-t-1] r.h.a.e.controller.RequestSynchronizer : Started request(class run.halo.app.core.extension.Role) synchronizer.
2023-11-29 20:42:23 2023-11-29T20:42:23.506+08:00 WARN 7 --- [rReconciler-t-1] r.h.a.e.controller.DefaultController : Optimistic locking failure when reconciling request: run.halo.app.core.extension.reconciler.UserReconciler-worker-1/Request[name=admin]
但我通过localhost:8090却无法访问,服务也没有报错日志