You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2011/05/17 23:53:39 UTC

[Solr Wiki] Trivial Update of "SolrJmx" by DanielSerodio

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "SolrJmx" page has been changed by DanielSerodio.
The comment on this change is: Fixing escaping of WikiNames.
http://wiki.apache.org/solr/SolrJmx?action=diff&rev1=14&rev2=15

--------------------------------------------------

  = Configuration =
  JMX configuration is provided in solrconfig.xml
  
- '''Note''' -- Enabling/disabling JMX and securing access to M!BeanServers is left upto the user by specifying appropriate JVM parameters and configuration. Please explore the [[http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/|JMX Technology Home Page]] for more details.
+ '''Note''' -- Enabling/disabling JMX and securing access to ``MBeanServers is left up to the user by specifying appropriate JVM parameters and configuration. Please explore the [[http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/|JMX Technology Home Page]] for more details.
  
  == Existing MBeanServer ==
  {{{
  <jmx />
  }}}
- Enables JMX support in Solr if and only if an existing M!BeanServer is found. Use this if you want to configure JMX through JVM parameters. Remove this to disable exposing Solr configuration and statistics to JMX. If this is specified then Solr will try to list all available M!BeanServers and use the first one to register MBeans.
+ Enables JMX support in Solr if and only if an existing ``MBeanServer is found. Use this if you want to configure JMX through JVM parameters. Remove this to disable exposing Solr configuration and statistics to JMX. If this is specified then Solr will try to list all available ``MBeanServers and use the first one to register MBeans.
  
  == Existing MBeanServer with agentId ==
  {{{
  <jmx agentId="myMBeanServer" />
  }}}
- Enables JMX support in Solr if and only if an existing M!BeanServer is found matching the given agentId. If multiple servers are found then the first one is used. If none is found, an exception is raised and depending on the configuration, Solr may refuse to start.
+ Enables JMX support in Solr if and only if an existing ``MBeanServer is found matching the given agentId. If multiple servers are found then the first one is used. If none is found, an exception is raised and depending on the configuration, Solr may refuse to start.
  
  == New MBeanServer ==
  {{{
  <jmx serviceUrl="service:jmx:rmi:///jndi/rmi://localhost:9999/solrjmx" />
  }}}
- Creates a new M!BeanServer exposed for remote monitoring at the specific service url. If the JMX!ConnectorServer can't be started (probably because the serviceUrl is bad) then an exception is thrown.
+ Creates a new ``MBeanServer exposed for remote monitoring at the specific service url. If the ``JMXConnectorServer can't be started (probably because the serviceUrl is bad) then an exception is thrown.
  
  = Quick Demo =