Re: how to make artemis webconsole generates https url without https binding

2022-06-10 Thread Thai Le
Hi, To answer my own question, the root cause is that I did not specify the customizer in the binding to take advantage of the X-forwarded-proto header. After adding the customizer, I see all the URLs generated are now https. Here is where I got my answer https://issues.apache.org/jira/browse/ARTE

Re: Request invitation to ASF Slack

2022-06-10 Thread Justin Bertram
Done. Justin On Fri, Jun 10, 2022 at 2:03 PM Pattamadai, Sundar < sundar.pattama...@allscripts.com> wrote: > > > Sundar Pattamadai > Principal Quality Engineer | Community Solutions > sundar.pattama...@allscripts.com > allscripts.com

Request invitation to ASF Slack

2022-06-10 Thread Pattamadai, Sundar
Sundar Pattamadai Principal Quality Engineer | Community Solutions sundar.pattama...@allscripts.com allscripts.com

Re: [External] - Re: Unable to Browse Messages in ActiveMQ Artemis Queue

2022-06-10 Thread Justin Bertram
> ...although I don't see when I can view the message content... When you're browsing the messages click the "Show" button on the far right of the row of the corresponding message. Justin On Fri, Jun 10, 2022 at 12:58 PM Richard Bergmann wrote: > Thank you Justin. I upgraded to 11 on my dev

Re: [External] - Re: Unable to Browse Messages in ActiveMQ Artemis Queue

2022-06-10 Thread Richard Bergmann
Thank you Justin. I upgraded to 11 on my dev box, then installed 2.22 and it now displays my messages -- although I don't see when I can view the message content, which is something I could do on the Classic console. I can live with that. I'm not entirely sure we can upgrade to 11 on our prod

Re: [External] - Re: Unable to Browse Messages in ActiveMQ Artemis Queue

2022-06-10 Thread Justin Bertram
> Is there a way to get it to run under Java 8? Unfortunately there isn't. Both ActiveMQ "Classic" and Artemis have moved on from Java 8 for the latest releases. "Classic" made the transition in 5.17.0 and Artemis in 2.20.0. That said, there are still branches where Java 8 releases are possible, b

Re: ActiveMQ Classic HA without SAN

2022-06-10 Thread Matt Pavlovich
Hello Yannick- When it comes to distributed systems and HA it generally boils down to a set of benefits and trade-offs. There is no ‘easy button’ to get perfect uptime. When you use replicated systems (filesystems, databases, messaging systems, etc) , you suffer from having to take a full-shutd

Re: [External] - Re: Unable to Browse Messages in ActiveMQ Artemis Queue

2022-06-10 Thread Richard Bergmann
Is there a way to get it to run under Java 8? I tried 2.22 but it cried about Java 11 and I'm not sure we can upgrade to it (we work on a secure network that is not always up to the latest and greatest). :( From: Justin Bertram Sent: Friday, June 10, 2022 12:0

Re: Unable to Browse Messages in ActiveMQ Artemis Queue

2022-06-10 Thread Justin Bertram
You're almost certainly hitting ARTEMIS-3677 [1]. It appears you migrated recently so I would have expected you to use a more recent version than 2.19.0 (which was released almost 8 months ago). You'll need to move to at least 2.21.0 although 2.22.0 would be better. Keep in mind that 2.23.0 is in t

Re: how to make artemis webconsole generates https url without https binding

2022-06-10 Thread Justin Bertram
> ...the webconsole then generates some urls with *http* scheme and send back the response telling the browser to open these urls... Can you provide an example of a URL that gets passed back as http? Justin On Fri, Jun 10, 2022 at 9:12 AM Thai Le wrote: > Hello, > > I have an artemis 2.19.1 b

Unable to Browse Messages in ActiveMQ Artemis Queue

2022-06-10 Thread Richard Bergmann
I migrated my application from Classic to Artemis 2.19 (Running Java 8) and messages that I used to be able to view are not shown in the new console. Note that there are over 25K messages in the queue and at the moment there are no consumers or producers and the service has been restarted (i.e.

Re: how to make artemis webconsole generates https url without https binding

2022-06-10 Thread Edson Richter
I've same problem with docker and HaProxy, and got no solution so far. I hope someone gives you a direction, so I can find a solution for our scenario as well. Regards, Edson Obter o BlueMail para Android Em 10 de jun. de 2022, em 11:12, Thai Le mailto:lnthai2...@gmail.co

Re: ActiveMQ Classic HA without SAN

2022-06-10 Thread Justin Bertram
I may have misunderstood, but I assumed based on your description of your problem (and the potential solutions) that you wanted a storage backend that could replicate to avoid a single point of failure. A replicating filesystem (e.g. GFS2) or database (e.g. MySQL) are the only ways to get that with

how to make artemis webconsole generates https url without https binding

2022-06-10 Thread Thai Le
Hello, I have an artemis 2.19.1 broker running in a kubernetes pod. The binding in the bootstrap.xml is set to bind="*http*://0.0.0.0:8161" path="web". I also have a virtual service that routes http requests matching a pattern to this pod so that I can access the webconsole from the internet. Howe