Identity Manager (IDM) or Identity Suite services fail to start, reporting a failure in the Wildfly/JBoss management interface.
This typically occurs following a database upgrade, system migration, or when another service unexpectedly occupies the default management port.
Identity Manager 14.x & v15
The application server requires port 9990 for its HTTP management interface. The service cannot start because another process on the host is already bound to this port.
The server.log or startup console displays the following error: "WFLYCTL0080: Failed services" => {"org.wildfly.management.http.extensible" => "java.net.BindException: Address already in use: bind /:9990"
To resolve the port conflict, identify and terminate the process using port 9990:
netstat -ano | findstr 9990netstat -tulpn | grep 9990 or lsof -i :9990taskkill /F /PID <PID>kill -9 <PID>