kirklund commented on PR #7543: URL: https://github.com/apache/geode/pull/7543#issuecomment-1090448498
The tests are failing with BindExceptions because ports are already in use. ``` [error 2022/04/06 04:38:35.665 GMT locator1 <main> tid=0x1] Jmx manager could not be started because HTTP service failed to start org.apache.geode.management.ManagementException: HTTP service failed to start at org.apache.geode.management.internal.ManagementAgent.loadWebApplications(ManagementAgent.java:268) at org.apache.geode.management.internal.ManagementAgent.startAgent(ManagementAgent.java:144) at org.apache.geode.management.internal.SystemManagementService.startManager(SystemManagementService.java:383) at org.apache.geode.distributed.internal.InternalLocator.lambda$startClusterManagementService$3(InternalLocator.java:826) at java.base/java.util.Optional.ifPresent(Optional.java:183) at org.apache.geode.distributed.internal.InternalLocator.startClusterManagementService(InternalLocator.java:817) at org.apache.geode.distributed.internal.InternalLocator.startClusterManagementService(InternalLocator.java:783) at org.apache.geode.distributed.internal.InternalLocator.startCache(InternalLocator.java:776) at org.apache.geode.distributed.internal.InternalLocator.startDistributedSystem(InternalLocator.java:757) at org.apache.geode.distributed.internal.InternalLocator.startLocator(InternalLocator.java:388) at org.apache.geode.distributed.LocatorLauncher.start(LocatorLauncher.java:721) at org.apache.geode.distributed.LocatorLauncher.run(LocatorLauncher.java:626) at org.apache.geode.distributed.LocatorLauncher.main(LocatorLauncher.java:220) Caused by: java.io.IOException: Failed to bind to 0.0.0.0/0.0.0.0:7070 at org.eclipse.jetty.server.ServerConnector.openAcceptChannel(ServerConnector.java:349) at org.eclipse.jetty.server.ServerConnector.open(ServerConnector.java:310) at org.eclipse.jetty.server.AbstractNetworkConnector.doStart(AbstractNetworkConnector.java:80) at org.eclipse.jetty.server.ServerConnector.doStart(ServerConnector.java:234) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:73) at org.eclipse.jetty.server.Server.doStart(Server.java:401) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:73) at org.apache.geode.internal.cache.InternalHttpService.addWebApplication(InternalHttpService.java:209) at org.apache.geode.management.internal.ManagementAgent.loadWebApplications(ManagementAgent.java:238) ... 12 more Caused by: java.net.BindException: Address already in use at java.base/sun.nio.ch.Net.bind0(Native Method) at java.base/sun.nio.ch.Net.bind(Net.java:459) at java.base/sun.nio.ch.Net.bind(Net.java:448) at java.base/sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:227) at java.base/sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:80) at org.eclipse.jetty.server.ServerConnector.openAcceptChannel(ServerConnector.java:344) ... 20 more ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@geode.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org