OpenGaussDB图形化部署方式笔记

链接openGauss/openGauss-workbench

DataKIt (摘抄自原文)

openGauss的安装、运维场景对于初级用户或单纯想要测试openGauss数据库基本特性的使用者来说技术难度较大、过程较为复杂、学习曲线较为陡峭,尤其企业版安装对一般用户来说操作难度很大。使用可视化运维平台可以屏蔽openGauss的技术细节,让普通用户能够快速上手体验功能,让运维人员能够快速在企业环境中部署、卸载各类openGauss集群,减少了用户的学习成本和运维成本,实现了对openGauss各种常见操作的可视化,屏蔽了各种不同openGauss版本中的运维命令差异,可以让用户使用相同的方式操作数据库,不用知道命令细节也可以使用openGauss数据库的各项能力,让用户可以专注于自身的业务领域。

因此需要开发一些有针对性的运维监控工具,为不同配置不同运维要求的客户提供运维技术支撑,这些都将是openGauss社区的宝贵资产。而社区急需一个一体化的平台通过插件的方式将这些工具进行整合,并支持方便快捷的个性化配置。

本项目是基于Web的openGauss的可视化的平台系统,目的是方便客户使用和管理openGauss可视化工具,可以为客户降低openGauss数据库安装使用门槛,做到安全中心管理,插件管理,以及其它功能包括一键化部署、卸载、组件化安装、多版本升级、日常运维和监控。

软件包 | openGauss

这个位置下载软件包,

然后就是解压,压缩包

[root@datakit ~]# tar -zxvf Datakit-6.0.0-RC1.tar.gz -C /ops/
./application-temp.yml
./build_commit_id.log
./doc/
./doc/datasync-mysql-README.md
./doc/data-migration-README.md
./doc/datakit-README.md
./doc/datakit-demo-plugin-README.md
./doc/observability-log-search-README.md
./doc/observability-instance-README.md
./doc/data-studio-README.md
./doc/alert-monitor-README.md
./doc/observability-sql-diagnosis-README.md
./doc/intelligent-parameter-tuning-README.md
./doc/compatibility-assessment-README.md
./doc/openGauss-tools-monitor-README.md
./doc/base-ops-README.md
./openGauss-datakit-6.0.0-RC1.jar
./run.sh
./visualtool-plugin/
./visualtool-plugin/data-migration-6.0.0-RC1-repackage.jar
./visualtool-plugin/observability-sql-diagnosis-6.0.0-RC1-repackage.jar
./visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar
./visualtool-plugin/observability-log-search-6.0.0-RC1-repackage.jar
./visualtool-plugin/webds-plugin-6.0.0-RC1-repackage.jar
./visualtool-plugin/MetaTune-6.0.0-RC1-repackage.jar
./visualtool-plugin/datasync-mysql-6.0.0-RC1-repackage.jar
./visualtool-plugin/alert-monitor-6.0.0-RC1-repackage.jar
./visualtool-plugin/monitor-tools-6.0.0-RC1-repackage.jar
./visualtool-plugin/compatibility-assessment-6.0.0-RC1-repackage.jar
./visualtool-plugin/datakit-demo-plugin-6.0.0-RC1-repackage.jar
./visualtool-plugin/observability-instance-6.0.0-RC1-repackage.jar

修改配置文件application-temp.yml,使用Intarkdb 

为了减少困难度,直接使用内置数据库,不使用opengaussdb的极简版。

 启动服务

[root@datakit ops]# mkdir logs
[root@datakit ops]# sh run.sh  start
Datakit started.
[root@datakit ops]# tail -f logs/visualtool-main.out
Application Version: ${system.version}
Spring Boot Version:
2024-04-21 19:19:23 [main] [com.gitee.starblues.loader.launcher.SpringMainProdBootstrap]-[INFO] Starting SpringMainProdBootstrap v6.0.0-RC1 using Java 11.0.22 on datakit with PID 9208 (/ops/openGauss-datakit-6.0.0-RC1.jar started by root in /ops)
2024-04-21 19:19:23 [main] [com.gitee.starblues.loader.launcher.SpringMainProdBootstrap]-[INFO] The following profiles are active: temp
2024-04-21 19:19:31 [main] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker]-[INFO] Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@7a8fa663' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2024-04-21 19:19:31 [main] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker]-[INFO] Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2024-04-21 19:19:33 [main] [org.springframework.boot.web.embedded.tomcat.TomcatWebServer]-[INFO] Tomcat initialized with port(s): 9494 (https)
2024-04-21 19:19:33 [main] [org.apache.coyote.http11.Http11NioProtocol]-[INFO] Initializing ProtocolHandler ["https-jsse-nio-9494"]
2024-04-21 19:19:33 [main] [org.apache.catalina.core.StandardService]-[INFO] Starting service [Tomcat]
2024-04-21 19:19:33 [main] [org.apache.catalina.core.StandardEngine]-[INFO] Starting Servlet engine: [Apache Tomcat/9.0.54]
2024-04-21 19:19:33 [main] [org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]]-[INFO] Initializing Spring embedded WebApplicationContext
2024-04-21 19:19:33 [main] [org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext]-[INFO] Root WebApplicationContext: initialization completed in 8788 ms
2024-04-21 19:19:35 [main] [com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure]-[INFO] Init DruidDataSource
2024-04-21 19:19:35 [main] [com.alibaba.druid.pool.DruidDataSource]-[INFO] {dataSource-1} inited
2024-04-21 19:19:37 [main] [com.baomidou.mybatisplus.core.metadata.TableInfoHelper]-[WARN] Can not find table primary key in Class: "org.opengauss.admin.system.domain.SysUserRole".
2024-04-21 19:19:37 [main] [com.baomidou.mybatisplus.core.injector.DefaultSqlInjector]-[WARN] class org.opengauss.admin.system.domain.SysUserRole ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
2024-04-21 19:19:38 [main] [com.baomidou.mybatisplus.core.metadata.TableInfoHelper]-[WARN] Can not find table primary key in Class: "org.opengauss.admin.system.domain.SysRoleMenu".
2024-04-21 19:19:38 [main] [com.baomidou.mybatisplus.core.injector.DefaultSqlInjector]-[WARN] class org.opengauss.admin.system.domain.SysRoleMenu ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
 _ _   |_  _ _|_. ___ _ |    _
| | |\/|_)(_| | |_\  |_)||_|_\
     /               |
                        null
2024-04-21 19:19:44 [main] [org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver]-[INFO] Exposing 1 endpoint(s) beneath base path ''
open=./data/datakit
intarkdb_open=0
2024-04-21 19:19:53 [main] [org.springframework.boot.autoconfigure.web.servlet.WelcomePageHandlerMapping]-[INFO] Adding welcome page: class path resource [static/index.html]
2024-04-21 19:19:55 [main] [org.springframework.security.web.DefaultSecurityFilterChain]-[INFO] Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6a756082, org.springframework.security.web.context.SecurityContextPersistenceFilter@55651434, org.springframework.security.web.header.HeaderWriterFilter@4fdca00a, org.springframework.web.filter.CorsFilter@771158fb, org.springframework.security.web.authentication.logout.LogoutFilter@4086d8fb, org.springframework.web.filter.CorsFilter@771158fb, org.opengauss.admin.framework.security.filter.JwtAuthenticationTokenFilter@676f0a60, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7f9fc8bd, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3c854752, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@cb39552, org.springframework.security.web.session.SessionManagementFilter@4ed4a7e4, org.springframework.security.web.access.ExceptionTranslationFilter@49d30c6f, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@75e27856]
2024-04-21 19:19:55 [main] [org.apache.coyote.http11.Http11NioProtocol]-[INFO] Starting ProtocolHandler ["https-jsse-nio-9494"]
2024-04-21 19:19:56 [main] [org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext]-[WARN] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat server
2024-04-21 19:19:56 [main] [com.alibaba.druid.pool.DruidDataSource]-[INFO] {dataSource-1} closing ...
2024-04-21 19:19:56 [main] [com.alibaba.druid.pool.DruidDataSource]-[INFO] {dataSource-1} closed
2024-04-21 19:19:56 [main] [org.opengauss.admin.framework.manager.ShutdownManager]-[INFO] ====Close background task thread pool====
2024-04-21 19:19:56 [main] [org.springframework.context.annotation.CommonAnnotationBeanPostProcessor]-[WARN] Destroy method on bean with name 'shutdownManager' threw an exception: java.lang.ExceptionInInitializerError
2024-04-21 19:19:56 [main] [org.apache.coyote.http11.Http11NioProtocol]-[INFO] Pausing ProtocolHandler ["https-jsse-nio-9494"]
2024-04-21 19:19:56 [main] [org.apache.catalina.core.StandardService]-[INFO] Stopping service [Tomcat]
2024-04-21 19:19:56 [main] [org.apache.coyote.http11.Http11NioProtocol]-[INFO] Stopping ProtocolHandler ["https-jsse-nio-9494"]
2024-04-21 19:19:56 [main] [org.apache.coyote.http11.Http11NioProtocol]-[INFO] Destroying ProtocolHandler ["https-jsse-nio-9494"]
2024-04-21 19:19:56 [main] [org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener]-[INFO]

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2024-04-21 19:19:56 [main] [org.springframework.boot.SpringApplication]-[ERROR] Application run failed
org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat server
        at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:181)
        at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:54)
        at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:356)
        at java.base/java.lang.Iterable.forEach(Iterable.java:75)
        at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:155)
        at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:123)
        at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:935)
        at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586)
        at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145)
        at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
        at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:434)
        at org.springframework.boot.SpringApplication.run(SpringApplication.java:338)
        at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
        at org.springframework.boot.SpringApplication.run(SpringApplication.java:1332)
        at org.opengauss.admin.AdminApplication.run(AdminApplication.java:52)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.base/java.lang.reflect.Method.invoke(Method.java:566)
        at com.gitee.starblues.loader.launcher.runner.MethodRunner.runMethod(MethodRunner.java:66)
        at com.gitee.starblues.loader.launcher.runner.MethodRunner.run(MethodRunner.java:49)
        at com.gitee.starblues.loader.launcher.isolation.IsolationBaseLauncher.launch(IsolationBaseLauncher.java:58)
        at com.gitee.starblues.loader.launcher.isolation.IsolationBaseLauncher.launch(IsolationBaseLauncher.java:35)
        at com.gitee.starblues.loader.launcher.AbstractMainLauncher.toLaunch(AbstractMainLauncher.java:62)
        at com.gitee.starblues.loader.launcher.AbstractMainLauncher.run(AbstractMainLauncher.java:53)
        at com.gitee.starblues.loader.launcher.ProdLauncher.run(ProdLauncher.java:84)
        at com.gitee.starblues.loader.launcher.ProdLauncher.run(ProdLauncher.java:45)
        at com.gitee.starblues.loader.launcher.SpringMainProdBootstrap.run(SpringMainProdBootstrap.java:35)
        at com.gitee.starblues.loader.launcher.SpringMainProdBootstrap.main(SpringMainProdBootstrap.java:30)
Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat server
        at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.start(TomcatWebServer.java:229)
        at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:43)
        at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:178)
        ... 28 common frames omitted
Caused by: java.lang.IllegalArgumentException: standardService.connector.startFailed
        at org.apache.catalina.core.StandardService.addConnector(StandardService.java:238)
        at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.addPreviouslyRemovedConnectors(TomcatWebServer.java:282)
        at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.start(TomcatWebServer.java:213)
        ... 30 common frames omitted
Caused by: org.apache.catalina.LifecycleException: Protocol handler start failed
        at org.apache.catalina.connector.Connector.startInternal(Connector.java:1075)
        at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
        at org.apache.catalina.core.StandardService.addConnector(StandardService.java:234)
        ... 32 common frames omitted
Caused by: java.lang.IllegalArgumentException: /ops/ssl/keystore.p12 (No such file or directory)
        at org.apache.tomcat.util.net.AbstractJsseEndpoint.createSSLContext(AbstractJsseEndpoint.java:99)
        at org.apache.tomcat.util.net.AbstractJsseEndpoint.initialiseSsl(AbstractJsseEndpoint.java:71)
        at org.apache.tomcat.util.net.NioEndpoint.bind(NioEndpoint.java:231)
        at org.apache.tomcat.util.net.AbstractEndpoint.bindWithCleanup(AbstractEndpoint.java:1208)
        at org.apache.tomcat.util.net.AbstractEndpoint.start(AbstractEndpoint.java:1294)
        at org.apache.coyote.AbstractProtocol.start(AbstractProtocol.java:614)
        at org.apache.catalina.connector.Connector.startInternal(Connector.java:1072)
        ... 34 common frames omitted
Caused by: java.io.FileNotFoundException: /ops/ssl/keystore.p12 (No such file or directory)
        at java.base/java.io.FileInputStream.open0(Native Method)
        at java.base/java.io.FileInputStream.open(FileInputStream.java:219)
        at java.base/java.io.FileInputStream.<init>(FileInputStream.java:157)
        at java.base/java.io.FileInputStream.<init>(FileInputStream.java:112)
        at java.base/sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:86)
        at java.base/sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:184)
        at org.apache.catalina.startup.CatalinaBaseConfigurationSource.getResource(CatalinaBaseConfigurationSource.java:118)
        at org.apache.tomcat.util.net.SSLUtilBase.getStore(SSLUtilBase.java:197)
        at org.apache.tomcat.util.net.SSLHostConfigCertificate.getCertificateKeystore(SSLHostConfigCertificate.java:207)
        at org.apache.tomcat.util.net.SSLUtilBase.getKeyManagers(SSLUtilBase.java:281)
        at org.apache.tomcat.util.net.SSLUtilBase.createSSLContext(SSLUtilBase.java:245)
        at org.apache.tomcat.util.net.AbstractJsseEndpoint.createSSLContext(AbstractJsseEndpoint.java:97)
        ... 40 common frames omitted
^C
[root@datakit ops]#

生成证书,

 

[root@datakit ops]# mkdir ssl
[root@datakit ops]# keytool -genkey -noprompt -dname "CN=opengauss, OU=opengauss, O=opengauss, L=Beijing, S=Beijing, C=CN" -alias opengauss -storetype PKCS12 -keyalg RSA -keysize 2048 -keystore /ops/ssl/keystore.p12 -validity 3650 -storepass 123456
[root@datakit ops]#

 重新启动并观察启动日志

[root@datakit ops]# sh run.sh restart
run.sh: line 48: kill: (9208) - No such process
Datakit stopped.
Datakit started.
[root@datakit ops]# tail -f logs/
sys-error.log        sys.log              visualtool-main.out
[root@datakit ops]# tail -f logs/visualtool-main.out
Application Version: ${system.version}
Spring Boot Version:
2024-04-21 19:22:53 [main] [com.gitee.starblues.loader.launcher.SpringMainProdBootstrap]-[INFO] Starting SpringMainProdBootstrap v6.0.0-RC1 using Java 11.0.22 on datakit with PID 9555 (/ops/openGauss-datakit-6.0.0-RC1.jar started by root in /ops)
2024-04-21 19:22:53 [main] [com.gitee.starblues.loader.launcher.SpringMainProdBootstrap]-[INFO] The following profiles are active: temp
2024-04-21 19:23:00 [main] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker]-[INFO] Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@7a8fa663' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2024-04-21 19:23:00 [main] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker]-[INFO] Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2024-04-21 19:23:02 [main] [org.springframework.boot.web.embedded.tomcat.TomcatWebServer]-[INFO] Tomcat initialized with port(s): 9494 (https)
2024-04-21 19:23:02 [main] [org.apache.coyote.http11.Http11NioProtocol]-[INFO] Initializing ProtocolHandler ["https-jsse-nio-9494"]
2024-04-21 19:23:02 [main] [org.apache.catalina.core.StandardService]-[INFO] Starting service [Tomcat]
2024-04-21 19:23:02 [main] [org.apache.catalina.core.StandardEngine]-[INFO] Starting Servlet engine: [Apache Tomcat/9.0.54]
2024-04-21 19:23:02 [main] [org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]]-[INFO] Initializing Spring embedded WebApplicationContext
2024-04-21 19:23:02 [main] [org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext]-[INFO] Root WebApplicationContext: initialization completed in 8652 ms
2024-04-21 19:23:04 [main] [com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure]-[INFO] Init DruidDataSource
2024-04-21 19:23:04 [main] [com.alibaba.druid.pool.DruidDataSource]-[INFO] {dataSource-1} inited
2024-04-21 19:23:05 [main] [com.baomidou.mybatisplus.core.metadata.TableInfoHelper]-[WARN] Can not find table primary key in Class: "org.opengauss.admin.system.domain.SysUserRole".
2024-04-21 19:23:05 [main] [com.baomidou.mybatisplus.core.injector.DefaultSqlInjector]-[WARN] class org.opengauss.admin.system.domain.SysUserRole ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
2024-04-21 19:23:06 [main] [com.baomidou.mybatisplus.core.metadata.TableInfoHelper]-[WARN] Can not find table primary key in Class: "org.opengauss.admin.system.domain.SysRoleMenu".
2024-04-21 19:23:06 [main] [com.baomidou.mybatisplus.core.injector.DefaultSqlInjector]-[WARN] class org.opengauss.admin.system.domain.SysRoleMenu ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
 _ _   |_  _ _|_. ___ _ |    _
| | |\/|_)(_| | |_\  |_)||_|_\
     /               |
                        null
2024-04-21 19:23:10 [main] [org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver]-[INFO] Exposing 1 endpoint(s) beneath base path ''
open=./data/datakit
intarkdb_open=0
2024-04-21 19:23:17 [main] [org.springframework.boot.autoconfigure.web.servlet.WelcomePageHandlerMapping]-[INFO] Adding welcome page: class path resource [static/index.html]
2024-04-21 19:23:19 [main] [org.springframework.security.web.DefaultSecurityFilterChain]-[INFO] Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6a756082, org.springframework.security.web.context.SecurityContextPersistenceFilter@55651434, org.springframework.security.web.header.HeaderWriterFilter@4fdca00a, org.springframework.web.filter.CorsFilter@771158fb, org.springframework.security.web.authentication.logout.LogoutFilter@4086d8fb, org.springframework.web.filter.CorsFilter@771158fb, org.opengauss.admin.framework.security.filter.JwtAuthenticationTokenFilter@676f0a60, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7f9fc8bd, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3c854752, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@cb39552, org.springframework.security.web.session.SessionManagementFilter@4ed4a7e4, org.springframework.security.web.access.ExceptionTranslationFilter@49d30c6f, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@75e27856]
2024-04-21 19:23:19 [main] [org.apache.coyote.http11.Http11NioProtocol]-[INFO] Starting ProtocolHandler ["https-jsse-nio-9494"]
2024-04-21 19:23:20 [main] [org.springframework.boot.web.embedded.tomcat.TomcatWebServer]-[INFO] Tomcat started on port(s): 9494 (https) with context path ''
2024-04-21 19:23:21 [main] [springfox.documentation.swagger.readers.operation.OperationImplicitParameterReader]-[WARN] Unable to interpret the implicit parameter configuration with dataType: string, dataTypeClass: class java.lang.Void
2024-04-21 19:23:21 [main] [springfox.documentation.swagger.readers.operation.OperationImplicitParameterReader]-[WARN] Unable to interpret the implicit parameter configuration with dataType: string, dataTypeClass: class java.lang.Void
2024-04-21 19:23:22 [main] [springfox.documentation.swagger.readers.operation.OperationImplicitParameterReader]-[WARN] Unable to interpret the implicit parameter configuration with dataType: , dataTypeClass: class java.lang.Void
2024-04-21 19:23:22 [main] [springfox.documentation.swagger.readers.operation.OperationImplicitParameterReader]-[WARN] Unable to interpret the implicit parameter configuration with dataType: , dataTypeClass: class java.lang.Void
2024-04-21 19:23:22 [main] [springfox.documentation.swagger.readers.operation.OperationImplicitParameterReader]-[WARN] Unable to interpret the implicit parameter configuration with dataType: , dataTypeClass: class java.lang.Void
2024-04-21 19:23:22 [main] [springfox.documentation.swagger.readers.operation.OperationImplicitParameterReader]-[WARN] Unable to interpret the implicit parameter configuration with dataType: , dataTypeClass: class java.lang.Void
2024-04-21 19:23:23 [main] [com.gitee.starblues.loader.launcher.SpringMainProdBootstrap]-[INFO] Started SpringMainProdBootstrap in 30.657 seconds (JVM running for 39.928)
2024-04-21 19:23:23 [main] [com.gitee.starblues.integration.operator.DefaultPluginOperator]-[INFO] 插件加载环境: prod
2024-04-21 19:23:23 [main] [com.gitee.starblues.integration.operator.DefaultPluginOperator]-[INFO] 插件加载模式: isolation
2024-04-21 19:23:23 [main] [com.gitee.starblues.integration.operator.DefaultPluginOperator]-[INFO] 开始加载插件, 插件根路径为:
/ops/visualtool-plugin
2024-04-21 19:23:23 [main] [com.gitee.starblues.spring.web.PluginStaticResourceConfig]-[INFO] 插件静态资源访问前缀配置为: /static-plugin/{pluginId}
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[base-ops@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [base-ops] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[observability-sql-diagnosis@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [observability-sql-diagnosis] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[alert-monitor@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [alert-monitor] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[MetaTune@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [MetaTune] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[observability-instance@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [observability-instance] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[observability-log-search@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [observability-log-search] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[datakit-demo-plugin@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [datakit-demo-plugin] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[webds-plugin@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [webds-plugin] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[data-migration@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [data-migration] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[datasync-mysql@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [datasync-mysql] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[compatibility-assessment@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [compatibility-assessment] load success.
2024-04-21 19:23:23 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[monitor-tools@6.0.0-RC1]加载成功
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin [monitor-tools] load success.
2024-04-21 19:23:23 [main] [org.opengauss.admin.web.listener.MyPluginInitializerListener]-[INFO] My plugin init before.
2024-04-21 19:23:23 [main] [org.opengauss.admin.system.service.ops.impl.EncryptionUtils]-[INFO] encryption key not found, generate it.
2024-04-21 19:23:23 [main] [org.opengauss.admin.framework.config.AutoFillMetaObjectHandler]-[INFO] default user information not found, this is a new installation
2024-04-21 19:23:30.333  INFO 9555 --- [           main] o.o.a.p.listener.BaseOpsPluginListener   : base ops init env
2024-04-21 19:23:30.509  INFO 9555 --- [           main] o.o.a.p.listener.BaseOpsPluginListener   : base ops init complete
Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter.
Registered plugin: 'com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor@36463b09'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/modeling/ModelingDataFlowOperatorMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/modeling/ModelingVisualizationParamsMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/modeling/ModelingVisualizationSnapshotsMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/modeling/ModelingVisualizationReportsMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/modeling/ModelingDataFlowMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/modeling/ModelingVisualizationCustomDimensionsMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/modeling/ModelingVisualizationGeoFilesMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/modeling/ModelingDataFlowOperatorGroupMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/modeling/ModelingDataFlowTypeMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/ops/OpsBackupMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/ops/OpsHostMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/ops/OpsDisasterClusterMapper.xml]'
Parsed mapper file: 'URL [jar:file:/ops/visualtool-plugin/base-ops-6.0.0-RC1-repackage.jar!/classes/mapper/ops/OpsClusterNodeMapper.xml]'
 _ _   |_  _ _|_. ___ _ |    _
| | |\/|_)(_| | |_\  |_)||_|_\
     /               |
                        null
Can not find table primary key in Class: "org.opengauss.admin.plugin.domain.entity.ops.OpsCheckEntity".
2024-04-21 19:23:36.831  WARN 9555 --- [           main] c.b.m.core.injector.DefaultSqlInjector   : class org.opengauss.admin.plugin.domain.entity.ops.OpsCheckEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
2024-04-21 19:23:37.622  INFO 9555 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
open=./data/datakit
intarkdb_open=0
2024-04-21 19:23:38.968  INFO 9555 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2024-04-21 19:23:39.794  INFO 9555 --- [           main] o.o.a.p.listener.BaseOpsPluginListener   : base ops was refreshed
2024-04-21 19:23:39.937  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: { [/plugins/base-ops/modeling/dataflow/visualization/report/add]}
2024-04-21 19:23:39.939  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/modeling/dataflow/visualization/report/delete/{reportIds}]}
2024-04-21 19:23:39.939  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {PUT [/plugins/base-ops/modeling/dataflow/visualization/report/update]}
2024-04-21 19:23:39.940  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/visualization/report/getListByDataFlowId/{flowId}]}
2024-04-21 19:23:39.940  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/visualization/report/share/getByReportId/{reportId}]}
2024-04-21 19:23:39.946  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: { [/plugins/base-ops/modeling/dataflow/visualization/params/add]}
2024-04-21 19:23:39.946  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/modeling/dataflow/visualization/params/delete/{flowIds}]}
2024-04-21 19:23:39.946  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/modeling/dataflow/visualization/params/uploadGeo]}
2024-04-21 19:23:39.947  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {PUT [/plugins/base-ops/modeling/dataflow/visualization/params/edit]}
2024-04-21 19:23:39.947  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/visualization/params/getListByOperatorId/{operatorId}]}
2024-04-21 19:23:39.947  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/modeling/dataflow/visualization/params/generateChart/{paramsId}]}
2024-04-21 19:23:39.947  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/modeling/dataflow/visualization/params/generateChart]}
2024-04-21 19:23:39.948  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/visualization/params/getGeo/{dataFlowId}]}
2024-04-21 19:23:39.948  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/modeling/dataflow/visualization/params/deleteGeo/{geoId}]}
2024-04-21 19:23:39.950  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/workflow/count]}
2024-04-21 19:23:39.959  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: { [/plugins/base-ops/modeling/dataflow/visualization/customDimension/add]}
2024-04-21 19:23:40.042  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/modeling/dataflow/visualization/customDimension/delete/{dimensionIds}]}
2024-04-21 19:23:40.056  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {PUT [/plugins/base-ops/modeling/dataflow/visualization/customDimension/edit]}
2024-04-21 19:23:40.074  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/visualization/customDimension/getListByOperatorId/{operatorId}]}
2024-04-21 19:23:40.075  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/visualization/report/share/getMapGeo/{mapName}]}
2024-04-21 19:23:40.079  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/dataSourceDb/list]}
2024-04-21 19:23:40.079  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/dataSourceDb/getSchemaByClusterNodeId/{dbName}/{clusterNodeId}]}
2024-04-21 19:23:40.079  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/dataSourceDb/getTablesBySchema/{dbName}/{clusterNodeId}/{schema}]}
2024-04-21 19:23:40.080  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/dataSourceDb/getFieldsByTable/{dbName}/{clusterNodeId}/{schema}/{tableName}]}
2024-04-21 19:23:40.081  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/modeling/dataflow/getSql]}
2024-04-21 19:23:40.081  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/modeling/dataflow/runSql]}
2024-04-21 19:23:40.082  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/modeling/dataflow/getResultFieldsByOperator]}
2024-04-21 19:23:40.084  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: { [/plugins/base-ops/modeling/dataflow/visualization/snapshot/add]}
2024-04-21 19:23:40.084  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/modeling/dataflow/visualization/snapshot/delete/{snapshotIds}]}
2024-04-21 19:23:40.085  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {PUT [/plugins/base-ops/modeling/dataflow/visualization/snapshot/edit]}
2024-04-21 19:23:40.085  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/visualization/snapshot/getListByDataFlowId/{flowId}]}
2024-04-21 19:23:40.085  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/databaseDesign/count]}
2024-04-21 19:23:40.087  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: { [/plugins/base-ops/modeling/dataflow/add]}
2024-04-21 19:23:40.087  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/modeling/dataflow/delete/{flowIds}]}
2024-04-21 19:23:40.089  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/getById/{dataFlowId}]}
2024-04-21 19:23:40.089  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/count]}
2024-04-21 19:23:40.089  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {PUT [/plugins/base-ops/modeling/dataflow/edit]}
2024-04-21 19:23:40.089  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/list]}
2024-04-21 19:23:40.089  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/distribution]}
2024-04-21 19:23:40.089  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/modeling/dataflow/processInfo]}
2024-04-21 19:23:40.093  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/host/pathEmpty/{id}]}
2024-04-21 19:23:40.094  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/host/portUsed/{id}]}
2024-04-21 19:23:40.101  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/host/fileExist/{id}]}
2024-04-21 19:23:40.101  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/host/multiPathQuery/{id}]}
2024-04-21 19:23:40.110  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/wdr/generate]}
2024-04-21 19:23:40.111  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/wdr/del/{id}]}
2024-04-21 19:23:40.112  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/wdr/list]}
2024-04-21 19:23:40.112  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/wdr/listSnapshot]}
2024-04-21 19:23:40.112  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/wdr/createSnapshot]}
2024-04-21 19:23:40.113  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/wdr/downloadWdr]}
2024-04-21 19:23:40.119  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/installPackageManager/{id}]}
2024-04-21 19:23:40.119  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {PUT [/plugins/base-ops/installPackageManager]}
2024-04-21 19:23:40.119  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/installPackageManager/list]}
2024-04-21 19:23:40.119  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/installPackageManager]}
2024-04-21 19:23:40.120  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/installPackageManager/hasName]}
2024-04-21 19:23:40.120  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/installPackageManager/upload]}
2024-04-21 19:23:40.121  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/installPackageManager/page]}
2024-04-21 19:23:40.122  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/installPackageManager/getCpuArch]}
2024-04-21 19:23:40.130  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/installPackageManager/analysisPkg]}
2024-04-21 19:23:40.130  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/installPackageManager/delPkgTar]}
2024-04-21 19:23:40.131  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/installPackageManager/sysUploadPath]}
2024-04-21 19:23:40.132  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/installPackageManager/detail/{id}]}
2024-04-21 19:23:40.133  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/deviceManager/add]}
2024-04-21 19:23:40.134  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/deviceManager/list]}
2024-04-21 19:23:40.134  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/deviceManager/delete/{name}]}
2024-04-21 19:23:40.135  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/deviceManager/connect]}
2024-04-21 19:23:40.135  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/deviceManager/modify]}
2024-04-21 19:23:40.135  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/deviceManager/hasName]}
2024-04-21 19:23:40.147  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/disasterCluster/delete]}
2024-04-21 19:23:40.147  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/disasterCluster/monitor]}
2024-04-21 19:23:40.148  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/disasterCluster/install]}
2024-04-21 19:23:40.148  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/disasterCluster/listCluster]}
2024-04-21 19:23:40.148  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/disasterCluster/getHosts]}
2024-04-21 19:23:40.149  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/disasterCluster/listClusterAndDeviceManager]}
2024-04-21 19:23:40.149  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/disasterCluster/switchover]}
2024-04-21 19:23:40.180  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/env/{hostId}]}
2024-04-21 19:23:40.181  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/ls]}
2024-04-21 19:23:40.182  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/opsCluster/remove/{clusterId}]}
2024-04-21 19:23:40.182  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/check]}
2024-04-21 19:23:40.182  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/start]}
2024-04-21 19:23:40.183  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/stop]}
2024-04-21 19:23:40.184  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/build]}
2024-04-21 19:23:40.184  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/summary]}
2024-04-21 19:23:40.184  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/hasName]}
2024-04-21 19:23:40.185  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/monitor]}
2024-04-21 19:23:40.185  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/install]}
2024-04-21 19:23:40.185  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/uninstall]}
2024-04-21 19:23:40.185  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/upgrade]}
2024-04-21 19:23:40.186  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/listCluster]}
2024-04-21 19:23:40.186  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster]}
2024-04-21 19:23:40.186  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/import]}
2024-04-21 19:23:40.187  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/ssh]}
2024-04-21 19:23:40.187  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/download]}
2024-04-21 19:23:40.187  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/download]}
2024-04-21 19:23:40.188  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/restart]}
2024-04-21 19:23:40.188  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/logPath]}
2024-04-21 19:23:40.188  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/switchover]}
2024-04-21 19:23:40.188  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/upgradeOsCheck]}
2024-04-21 19:23:40.189  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/upgradeCommit]}
2024-04-21 19:23:40.189  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/upgradeRollback]}
2024-04-21 19:23:40.189  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/quickInstall]}
2024-04-21 19:23:40.190  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/auditLog]}
2024-04-21 19:23:40.190  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/listSession]}
2024-04-21 19:23:40.190  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/slowSql]}
2024-04-21 19:23:40.191  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/listHost]}
2024-04-21 19:23:40.191  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/generateconf]}
2024-04-21 19:23:40.191  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/listInstallPackage]}
2024-04-21 19:23:40.192  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/listGucSetting]}
2024-04-21 19:23:40.192  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/opsCluster/batchConfigGucSetting]}
2024-04-21 19:23:40.192  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/opsCluster/listEnterpriseCluster]}
2024-04-21 19:23:40.195  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/backup/del/{id}]}
2024-04-21 19:23:40.195  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/backup/backup]}
2024-04-21 19:23:40.195  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/backup/recover/{id}]}
2024-04-21 19:23:40.196  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/backup/page]}
2024-04-21 19:23:40.199  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/olk/page]}
2024-04-21 19:23:40.199  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/olk/remove/{id}]}
2024-04-21 19:23:40.199  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/olk/start/{id}]}
2024-04-21 19:23:40.200  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {GET [/plugins/base-ops/olk/stop/{id}]}
2024-04-21 19:23:40.200  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {DELETE [/plugins/base-ops/olk/destroy/{id}]}
2024-04-21 19:23:40.200  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/olk/install]}
2024-04-21 19:23:40.201  INFO 9555 --- [           main] c.g.s.b.p.web.PluginControllerProcessor  : 插件[base-ops]注册接口: {POST [/plugins/base-ops/olk/generateRuleYaml]}
2024-04-21 19:23:40 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=资源中心, path=/static-plugin/base-ops/resource, parentId=0
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.baomidou.mybatisplus.core.toolkit.SetAccessibleAction to field java.lang.invoke.SerializedLambda.capturingClass
WARNING: Please consider reporting this to the maintainers of com.baomidou.mybatisplus.core.toolkit.SetAccessibleAction
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
2024-04-21 19:23:40 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=集群管理, path=/static-plugin/base-ops/monitor/dailyOps, parentId=2
2024-04-21 19:23:40 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=OpenLooKeng管理, path=/static-plugin/base-ops/ops/olk, parentId=2
2024-04-21 19:23:40 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=磁阵管理, path=/static-plugin/base-ops/resource/deviceManager, parentId=2
2024-04-21 19:23:40 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=容灾集群管理, path=/static-plugin/base-ops/resource/disasterClusterManager, parentId=2
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=基础运维, path=/static-plugin/base-ops/monitor, parentId=0
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=集群监控, path=/static-plugin/base-ops/monitor/basic, parentId=707
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=日志分析, path=/static-plugin/base-ops/monitor/logCenter, parentId=707
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=WDR报告, path=/static-plugin/base-ops/monitor/wdr, parentId=707
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=SQL诊断, path=/static-plugin/base-ops/monitor/slowSql, parentId=707
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=安装包管理, path=/static-plugin/base-ops/monitor/packageManage, parentId=707
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=自定义控制台, path=/static-plugin/base-ops/monitor/customControl, parentId=707
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=备份恢复, path=/static-plugin/base-ops/ops/backup, parentId=707
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=业务建模, path=/static-plugin/base-ops/modeling, parentId=0
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=模型设计, path=/static-plugin/base-ops/modeling/modelDesign, parentId=715
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=报表设计, path=/static-plugin/base-ops/modeling/dataflow, parentId=715
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=数据流详情, path=/static-plugin/base-ops/modeling/dataflow/detail, parentId=715
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=安装部署, path=/static-plugin/base-ops/ops, parentId=0
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=一键安装, path=/static-plugin/base-ops/ops/simpleInstall, parentId=719
2024-04-21 19:23:41 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=集群安装, path=/static-plugin/base-ops/ops/install, parentId=719
2024-04-21 19:23:42 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=批量安装, path=/static-plugin/base-ops/ops/batchInstall, parentId=719
2024-04-21 19:23:42 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=批量升级, path=/static-plugin/base-ops/ops/upgrade, parentId=719
2024-04-21 19:23:42 [main] [org.opengauss.admin.system.plugin.facade.MenuFacade]-[INFO] call save menu, pluginId=base-ops, menuName=容灾集群安装, path=/static-plugin/base-ops/ops/disasterClusterInstall, parentId=719
2024-04-21 19:23:42.324  INFO 9555 --- [           main] o.o.a.p.listener.BaseOpsPluginListener   : base ops start complete
2024-04-21 19:23:42 [main] [com.gitee.starblues.spring.web.PluginStaticResourceResolver]-[INFO] 插件[base-ops@6.0.0-RC1]配置的静态资源: classpath[[resources/]], file[[]]
2024-04-21 19:23:42 [main] [com.gitee.starblues.core.DefaultPluginManager]-[INFO] 插件[base-ops@6.0.0-RC1]启动成功
2024-04-21 19:23:42 [main] [org.opengauss.admin.web.listener.MypluginListener]-[INFO] plugin[base-ops] start success

登录地址

https://192.168.184.188:9494

默认密码 admin   admin123

  • 5
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值