0

How to disable ssl v3 in activemq Admin console (port 8161)? I did not found any document on line.

In my jetty.xml file I can see below lines:

<bean id="SecureConnector" class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">
    <property name="port" value="8161" />
    <property name="keystore" value="file:${activemq.conf}/broker.ks" />
    <property name="password" value="password" />
</bean> 
Andrea
  • 11,801
  • 17
  • 65
  • 72
user1726453
  • 41
  • 1
  • 9

1 Answers1

0

ActiveMQ uses a basic spring wired jetty server for the admin web-gui. Use the methods available in Jetty documentation - or look at this SO.

SslSelectChannelConnector takes a SslContextFactory as constructor arg. That factory has a excludeProtocols property which you can feed with "sslv3".

Wire that up in spring should be straight forward.

Community
  • 1
  • 1
Petter Nordlander
  • 22,053
  • 5
  • 50
  • 84