[
https://issues.jboss.org/browse/ISPN-9294?page=com.atlassian.jira.plugin....
]
Diego Lovison closed ISPN-9294.
-------------------------------
Resolution: Rejected
This is not a bug.
You need to configure as the following:
{code:xml}
<transport type="UDP" socket-binding="jgroups-udp"
diagnostics-socket-binding="diag-socket-binding" />
<socket-binding-group name="standard-sockets"
default-interface="public"
port-offset="${jboss.socket.binding.port-offset:0}">
........
<socket-binding name="diag-socket-binding"
interface="public" multicast-address="224.0.75.75"
multicast-port="7500" fixed-port="true"/>
{code}
For more details check:
https://github.com/belaban/jdg-client/blob/e2d72b1c1881e9ab21ea42a6c17a52...
It is not possible override enable_diagnostics
----------------------------------------------
Key: ISPN-9294
URL:
https://issues.jboss.org/browse/ISPN-9294
Project: Infinispan
Issue Type: Bug
Reporter: Diego Lovison
Attachments: pasted_image.png
I would like to set enable_diagnostics=true but the following configuration is not
working.
Edit standalone/configuration/clustered.xml file adding the new property
{code:xml}
<transport type="UDP" socket-binding="jgroups-udp">
<property name="enable_diagnostics">true</property>
</transport>
{code}
Start the server ./standalone.sh -c clustered.xml
Open jcm and check the property. It is still false. See the attachment.
The desirable solution could be a change in the following files to:
- default-configs/default-jgroups-udp.xml
- default-configs/default-jgroups-tcp.xml
{noformat}
enable_diagnostics="${jgroups.udp.enable_diagnostics:false}"
{noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)