akka Lagom -LagomServiceLocatorStart:无法启动嵌入式服务定位器或服务网关?

uqdfh47h  于 2023-03-08  发布在  Go
关注(0)|答案(2)|浏览(83)

我刚开始使用lagom,尝试运行lagom示例,但是我在启动服务器时遇到了一个错误。

> runAll
     [info] Starting Kafka
     [info] Starting Cassandra
     ....Kafka Server closed unexpectedly.
     ......
     [info] Cassandra server running at 127.0.0.1:4000
    [error] p.c.s.NettyServer - Failed to listen for HTTP on /0.0.0.0:8000!
    [error] ({.}/*:lagomServiceLocatorStart) Failed to start embedded               

    Service Locator or Service Gateway. Hint: Are ports 8000 and 9010     
    already in use?
    [error] Total time: 32 s, completed Jan 28, 2017 1:19:03 AM

我已经更改了构建中的三个参数。sbt仍然没有更改

lagomServiceGatewayPort in ThisBuild := 9010
     lagomServiceLocatorStart in ThisBuild := 9005
     lagomServicesPortRange in ThisBuild := PortRange(40000, 45000)

你知道我做错了什么吗?
谢谢

gojuced7

gojuced71#

您应该使用lagomServiceLocatorPort设置而不是lagomServiceLocatorStart来更改端口

lagomServiceLocatorPort in ThisBuild := 9005

请参见www.example.comhttp://www.lagomframework.com/documentation/1.2.x/java/ServiceLocator.html#default-port

lokaqttq

lokaqttq2#

使用jdk-8对我很有效

不适用于任何更高版本,必须是一些兼容性问题,以调试更多

相关问题