如何使用wildfly swarm docker启用管理控制台?

时间:2018-02-19 16:55:55

标签: docker wildfly wildfly-swarm

我想为服务器wildfly swarm docker激活控制台管理

我在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>

我有日志中的管理 - 稳定,但WFLYSRV0054:管理控制台未启用。

我尝试通过项目阶段文件启用控制台,我添加了:

swarm:
  management:
    security-realms:
      ManagementRealm:
        in-memory-authentication:
          users:
            admin:    
              password: admin                            
    http-interface-management-interface:
      allowed-origins:
      - http://localhost:8080
      security-realm: ManagementRealm

但没有奏效。 有人能帮帮我吗?

2 个答案:

答案 0 :(得分:2)

我在我的泊坞窗图片中添加了管理员用户。这样,您将在服务的所有任务(容器)中拥有相同的用户。

Dockerfile的一个例子:

FROM jboss/wildfly:latest
# create user
RUN /opt/jboss/wildfly/bin/add-user.sh admin Admin#123 --silent
# enable management console
CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0", "-bmanagement", "0.0.0.0"]

答案 1 :(得分:0)

以下配置对我有用。

<meta.*property="og:image(?::url)*".*content="([^"]+)".*\/>

以下是在pom文件中添加的依赖项

thorntail:
  management:
     audit-access:
       audit-log-logger:
         log-boot: true
         enabled: true
     security-realms:
       ApplicationRealm:
         ssl-server-identity:
           alias: my_app_ssl
           keystore-provider: PKCS12
           keystore-path: /home/keystore.p12
           keystore-password: changeit
       ManagementRealm:
         in-memory-authentication:
           users:
             admin:
               password: admin
         in-memory-authorization:
           users:
             admin:
               roles:
                 - admin
     http-interface-management-interface:
       console-enabled: true
       allowed-origins:
         - http://localhost:8080
       security-realm: ManagementRealm

这是我访问控制台的方式

http://127.0.0.1:8080/console/

有关更多信息,请参见下面的链接。

https://github.com/thorntail/thorntail-examples/blob/master/management-console/README.md