学习spring cloud中遇到的一些问题-eureka添加认证之后,client端注册失败的问题
最进在用springcloud,其中遇到一些问题,记录一下:eureka服务端添加security验证之后,客户端怎么都注册不上,报错如下此错误意思是未发现eureka,导致服务注册失败。2018-08-09 14:50:06.042WARN 13256 — [nfoReplicator-0] c.n.discovery.InstanceInfoReplicator...
·
最近在用springcloud,其中遇到一些问题,记录一下:
eureka服务端添加security验证之后,客户端怎么都注册不上,报错如下
此错误意思是未发现eureka,导致服务注册失败。
2018-08-09 14:50:06.042 WARN 13256 --- [nfoReplicator-0] c.n.discovery.InstanceInfoReplicator : There was a problem with the instance info replicator
com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server
解决方法:
首先说配置方法,老版本配置如下:
在application.yml里配置
security:
basic:
enabled: true # 开启基于HTTP basic的认证
user:
name: user # 配置登录的账号是user
password: password123 #配置登录的密码是password123
在pom.xml中加入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
这个时候就可以实现访问了
我用的新版本其中application.yml中配置如下 ,其中没有basic这个配置,但是新版本需要打开这个配置,我用的新版本,故而一直报错
当然了新版本也要加这个依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
spring:
application:
name: serviceEureka
security:
user:
name: user
password: 1
解决方法新版本需要这样改造启动类,从而打开basisc这个配置,解决问题 加入如下代码:
@SpringBootApplication
@EnableEurekaServer
public class EurekaApplication extends WebSecurityConfigurerAdapter{
public static void main(String[] args) {
SpringApplication.run(EurekaApplication.class, args);
}
@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://${user}:${password}@${host}:${port}/eureka/ 这种方式登录,所以必须是httpBasic,
// 如果是form方式,不能使用url格式登录
http.authorizeRequests().anyRequest().authenticated().and().httpBasic();
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)