Я использую JBoss версии 7.0.9.
Когда я запускаю его, он записывает в консоль следующую строку:
<date> <loginfo> WFLYSRV0051: <german description that says, that this is the admin console>: http://127.0.0.1:9995
Теперь я хочу подключиться к CLI с помощью следующей команды:
jboss-cli.bat -c --controller:127.0.0.1:9995
OR
jboss-cli.bat -c --controller:localhost:9995
Оба бросают следующее
Failed to connect to the controller: The controller is not available at localhost:9990: java.net.ConnectException: WFLYPRT0053: Konnte keine Verbindung mit http-remoting://localhost:9990 herstellen. Die Verbindung ist fehlgeschlagen: WFLYPRT0053: Konnte keine Verbindung mit http-remoting://localhost:9990 herstellen. Die Verbindung ist fehlgeschlagen: Connection refused: no further information
Как вы можете видеть, он говорит, что пытается подключиться к localhost:9990
, хотя я сказал, что контроллер localhost:9995
.
Почему это так?