尝试使用具有MySQL存储的Zipkin服务器将配置外部化,但出现访问被拒绝错误

时间:2019-01-30 17:45:36

标签: java spring-boot zipkin

我想使用zipkin-server-2.12.0-exec.jar文件进行自定义配置。我的配置文件存储在jar文件所在的同一文件夹中。所以我输入以下命令-

java -jar zipkin-server-2.12.0-exec.jar --spring.config.location=file:./application.properties

它能够运行服务器。我在日志中看到以下消息-

2019-01-30 11:34:48.078  INFO 20788 --- [           main] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 9090 (http) with context path ''

但是当我尝试访问时-http://localhost:9090/zipkin/
我在ui上收到以下错误-

  

错误:无法加载服务名称:java.sql.SQLInvalidAuthorizationSpecException:用户'jahansa'@'localhost'的访问被拒绝(使用密码:NO)
  错误:无法加载跨度名称:java.sql.SQLInvalidAuthorizationSpecException:用户'jahansa'@'localhost'的访问被拒绝(使用密码:NO)

这是我的application.properties文件的内容-

server.port=9090
spring.application.name=zipkin-server
management.metrics.web.server.auto-time-requests= false

zipkin.storage.type=mysql
spring.datasource.url=jdbc:mysql://localhost:3306/test?autoReconnect=true&useSSL=false
spring.datasource.username=root
spring.datasource.password=root


spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.initialize=true   
spring.datasource.continue-on-error=true
spring.sleuth.enabled=false

我的用户名和密码均为-root

0 个答案:

没有答案