這篇文章將為大家詳細(xì)講解有關(guān)spring cloud consul注冊(cè)的服務(wù)報(bào)critical錯(cuò)誤怎么辦,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)專注于湘東網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供湘東營銷型網(wǎng)站建設(shè),湘東網(wǎng)站制作、湘東網(wǎng)頁設(shè)計(jì)、湘東網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造湘東網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供湘東網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
測(cè)試spring cloud 使用consul注冊(cè)服務(wù)的時(shí)候,出現(xiàn)critical,如下:
怎么解決這個(gè)問題,現(xiàn)在只能看到health check檢查失敗了。
受限調(diào)用這個(gè)請(qǐng)求Get http://consulIp:8500/v1/agent/checks,調(diào)完請(qǐng)求,就會(huì)拿到返回?cái)?shù)據(jù):
{ ...... "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:Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Fri Mar 15 11:03:30 CST 2019There was an unexpected error (type=Not Found, status=404).No message available", "ServiceID": "test-service-xx-xx-xx-xx", "ServiceName": "test-service", "ServiceTags": [ "version=1.0", "secure=false" ], "Definition": {}, "CreateIndex": 0, "ModifyIndex": 0 } ........ }
就能看到consul調(diào)用http://xxx.xx.xxx.xxx:19008/actuator/health來檢查servoce健康,卻發(fā)現(xiàn)接口404,所以才會(huì)在頁面出現(xiàn)錯(cuò)誤。
我的測(cè)試環(huán)境是:
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不能在這個(gè)服務(wù)上找到actuator/health接口,因?yàn)槲矣昧薬ctuator,所以service中應(yīng)該配置了spring cloud actuator。
經(jīng)過檢查發(fā)現(xiàn)沒有配置,所以actuator這個(gè)端點(diǎn)不能使用,加上這個(gè)包,問題就解決了。
關(guān)于“spring cloud consul注冊(cè)的服務(wù)報(bào)critical錯(cuò)誤怎么辦”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。