Re: How to enable JMX to monitor Jetty

2016-11-28 Thread Yago Riveiro
Hi, Rallavagu, the jetty-jmx.xml file is the basic file of the github repository or something custom? I modified the file modules/http.mod and I can't see jetty stuff ... - Best regards -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-enable-JMX-to-monitor-Jetty-

Re: How to enable JMX to monitor Jetty

2016-09-15 Thread John Bickerstaff
I'm very interested in Solr Docker images... Is this the "official" thing? I see it's supported by Lucidworks... On Thu, Sep 15, 2016 at 1:27 AM, Georg Sorst wrote: > If you are using the Solr's Docker images this is even easier: > > FROM solr:6.0.0 > > USER $SOLR_USER > > # Expose JMX port >

Re: How to enable JMX to monitor Jetty

2016-09-15 Thread Georg Sorst
If you are using the Solr's Docker images this is even easier: FROM solr:6.0.0 USER $SOLR_USER # Expose JMX port EXPOSE 1${SOLR_UID} # Enable JMX RUN sed -i -e 's/^ENABLE_REMOTE_JMX_OPTS=.*$/ENABLE_REMOTE_JMX_OPTS="true"/' bin/ solr.in.sh RUN sed -i -e 's/^SOLR_JETTY_CONFIG=()$/SOLR_JETTY_CONFI

Re: How to enable JMX to monitor Jetty

2016-09-12 Thread Rallavagu
I have modified modules/http.mod as following (for solr 5.4.1, Jetty 9). As you can see I have referred jetty-jmx.xml. # # Jetty HTTP Connector # [depend] server [xml] etc/jetty-http.xml etc/jetty-jmx.xml On 5/21/16 3:59 AM, Georg Sorst wrote: Hi list, how do I correctly enable JMX in Sol