客户端注册Cannot execute request on any known server解决
Posted zrk3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了客户端注册Cannot execute request on any known server解决相关的知识,希望对你有一定的参考价值。
在对eureka注册中心服务端添加安全验证后,新版本springcloud出现一个问题就是,在客户端注册到服务中心时报了一个错:Cannot execute request on any known server,重新仔细看了一下官方文档Securing The Eureka Server部分得以解决。
添加安全验证:https://www.cnblogs.com/zrk3/p/springcloud_securing_eurekaserver.html
一、官方文档
大意(英语不好,见谅):
只需通过Spring -boot-starter- security将Spring Security添加到服务路径中,就可以保护Eureka服务。默认情况下,当Spring Security位于类路径上时,它将要求在每次向应用程序发送请求时都发送一个有效的CSRF令牌。Eureka客户机通常不会拥有一个有效的跨站点请求伪造令牌(CSRF),您需要禁用/ Eureka /**端点的这个请求
2、添加配置文件
在eureka服务工程中添加配置文件:
package com.zrk.config; 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; /** * @Description: * @Author: zrk * @Date: 2019/9/12 */ @EnableWebSecurity class WebSecurityConfig extends WebSecurityConfigurerAdapter @Override protected void configure(HttpSecurity http) throws Exception http.csrf().ignoringAntMatchers("/eureka/**"); super.configure(http);
重启eureka服务,重启客户端就发现已经可以注册成功。
以上是关于客户端注册Cannot execute request on any known server解决的主要内容,如果未能解决你的问题,请参考以下文章
com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known serve
configure error C compiler cannot create executables错误解决
无法使用使用 firebase 创建的登录模块进行注册,并从客户端收到错误“TypeError: Cannot read property 'email' of null”