i want to active console management for server wildfly swarm docker
i have dependecies in pom
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>management-console</artifactId>
<version>2017.1.1</version>
</dependency>
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>management</artifactId>
<version>2017.1.1</version>
<type>jar</type>
</dependency>
I have Management - STABLE in logs but also WFLYSRV0054: Admin console is not enabled.
I tried do enable the console via the project-stages file and i added:
swarm:
management:
security-realms:
ManagementRealm:
in-memory-authentication:
users:
admin:
password: admin
http-interface-management-interface:
allowed-origins:
- http://localhost:8080
security-realm: ManagementRealm
But didn't work. Does anyone can help me please?