com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server

1.错误信息

com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server

2.错误背景

启动Eureka Server报错

3.错误原因

Spring2.0以后默认开的安全验证,你需要手动关闭,关闭方法为添加一个配置方法。

4.解决办法

(1)添加Maven依赖
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-security</artifactId>
</dependency>
(2)添加配置类
复制代码
package com.springcloud.blog.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.config.http.SessionCreationPolicy;

@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        // Configure HttpSecurity as needed (e.g. enable http basic).
        http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.NEVER);
        http.csrf().disable();
        //注意:为了可以使用 http://u s e r : {user}:user:{password}@h o s t : {host}:host:{port}/eureka/ 这种方式登录,所以必须是httpBasic,
        // 如果是form方式,不能使用url格式登录
        http.authorizeRequests().anyRequest().authenticated().and().httpBasic();
    }
}
复制代码
(3)完成(1)和(2)步骤,重启即可

参考资料如下:
com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known serve

5.补充说明

最奇葩的是,我后来尝试去除该配置也能正常启动Eureka Server成功,之前早上启动的时候一直报错,哪怕退出IDE重新登录也一样,同时也验证过配置文件是否有问题,但都没有解决,于是找到了上述的链接,加了maven依赖和配置类,一启动就成功了。

posted @   挑战者V  阅读(998)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· [AI/GPT/综述] AI Agent的设计模式综述
历史上的今天:
2019-11-07 《设计模式之禅》之单例模式
2017-11-07 oracle(环境搭建二)
2017-11-07 oracle(环境搭建一)
2017-11-07 虚拟机配置和环境搭建
2017-11-07 Linux系统学习之Linux账号管理
点击右上角即可分享
微信分享提示