You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Executing the image always auto assign an IP Address of the local network or the internal docker network, and can't be overridden using the AMQ_EXTRA_ARGS option.
For example: podman run -it --rm -p 5672:5672 -p 8161:8161 -e AMQ_USER=admin -e AMQ_PASSWORD=password --name artemis quay.io/artemiscloud/activemq-artemis-broker:artemis.2.37.0
Gives the output (at end)
ole(s): "admin" role principal classes: "org.apache.activemq.artemis.spi.core.security.jaas.RolePrincipal"
2024-10-25 22:52:42,001 INFO [io.hawt.web.auth.LoginRedirectFilter] Hawtio loginRedirectFilter is using 1800 sec. HttpSession timeout
2024-10-25 22:52:42,012 INFO [org.apache.activemq.artemis] AMQ241001: HTTP Server started at http://192.168.10.106:8161
2024-10-25 22:52:42,012 INFO [org.apache.activemq.artemis] AMQ241002: Artemis Jolokia REST API available at http://192.168.10.106:8161/console/jolokia
2024-10-25 22:52:42,012 INFO [org.apache.activemq.artemis] AMQ241004: Artemis Console available at http://192.168.10.106:8161/console
Creating Broker with args --user XXXXX --password XXXXX --role admin --name broker --allow-anonymous --http-host 192.168.10.106 --host 192.168.10.106 --force --http-host=0.0.0.0
option '--http-host' (<httpHost>) should be specified only once
Usage: artemis help [<args>...]
use 'help <command>' for more information
[<args>...]
Platform (please complete the following information):
OS: Fedora
Version 40
CEKit version Not Used
Container build tool: podman
Expected behavior
the AMQ_EXTRA_ARGS option with the param http-host should be overriden for example to assign a IP Address like 127.0.0.1 or localhost.
The text was updated successfully, but these errors were encountered:
Describe the bug
Executing the image always auto assign an IP Address of the local network or the internal docker network, and can't be overridden using the AMQ_EXTRA_ARGS option.
For example:
podman run -it --rm -p 5672:5672 -p 8161:8161 -e AMQ_USER=admin -e AMQ_PASSWORD=password --name artemis quay.io/artemiscloud/activemq-artemis-broker:artemis.2.37.0
Gives the output (at end)
To Reproduce
Steps to reproduce the behavior:
podman run -it --rm -p 5672:5672 -p 8161:8161 -e AMQ_USER=admin -e AMQ_PASSWORD=password -e AMQ_EXTRA_ARGS='--http-host=0.0.0.0' --name artemis quay.io/artemiscloud/activemq-artemis-broker:artemis.2.37.0
The output of the command is:
Platform (please complete the following information):
Expected behavior
the AMQ_EXTRA_ARGS option with the param
http-host
should be overriden for example to assign a IP Address like 127.0.0.1 or localhost.The text was updated successfully, but these errors were encountered: