您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關spring cloud consul注冊的服務報critical錯誤怎么辦,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
測試spring cloud 使用consul注冊服務的時候,出現critical,如下:
怎么解決這個問題,現在只能看到health check檢查失敗了。
受限調用這個請求Get http://consulIp:8500/v1/agent/checks,調完請求,就會拿到返回數據:
{ ...... "service:test-service-xx-xx-xx-xx": { "Node": "zookeeper-server1", "CheckID": "service:test-service-xx-xx-xx-xx", "Name": "Service 'test-service' check", "Status": "critical", "Notes": "", "Output": "HTTP GET http://xxx.xx.xxx.xxx:19008/actuator/health: 404 Output: <html><body><h2>Whitelabel Error Page</h2><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Fri Mar 15 11:03:30 CST 2019</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>", "ServiceID": "test-service-xx-xx-xx-xx", "ServiceName": "test-service", "ServiceTags": [ "version=1.0", "secure=false" ], "Definition": {}, "CreateIndex": 0, "ModifyIndex": 0 } ........ }
就能看到consul調用http://xxx.xx.xxx.xxx:19008/actuator/health來檢查servoce健康,卻發現接口404,所以才會在頁面出現錯誤。
我的測試環境是:
spring cloud Finch2ey.SR2
consul v1.4.3
bootstrap.yml配置是:
spring: cloud: consul: host: xxx.xxx.xxx.xxx port: 8500 discovery: prefer-ip-address: true tags: version=1.0 instance-id: ${spring.application.name}:${spring.cloud.client.ip-address} healthCheckInterval: 15s health-check-url: http://${spring.cloud.client.ip-address}:${server.port}/actuator/health
顯然consul不能在這個服務上找到actuator/health接口,因為我用了actuator,所以service中應該配置了spring cloud actuator。
經過檢查發現沒有配置,所以actuator這個端點不能使用,加上這個包,問題就解決了。
關于“spring cloud consul注冊的服務報critical錯誤怎么辦”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。