whenever dspace changes metadata, the changes are forwarded to the solr server - aka posted - so the index information can be updated; which server the UI talks to is configured in the build.properties - the default being solr.server=http://localhost:8080/solr <http://localhost:8080/solr>; the active setting for your instance can be found in /dspace/config/dspace.cfg;
assuming that your UI runs on the same server as your solr - POST from localhost are legit - unless of cause there is a rogue process on your machine you should though lock down access from remote servers to the solr web application; with apache I use proxy_jp and simply do not publicize the solr endpoint ProxyPass /jspui ajp://localhost:8009/jspui <ajp://localhost:8009/jspui> ProxyPass /rest ajp://localhost:8009/rest <ajp://localhost:8009/rest> ProxyPass /oai ajp://localhost:8009/oai <ajp://localhost:8009/oai> Monika ________________ Monika Mevenkamp [email protected] http://mo-meven.tumblr.com/ http://mcmprogramming.com/mo.meven/ > On Jan 28, 2016, at 5:10 AM, Francisco Monreal <[email protected]> wrote: > > Hello, > > We have a problem with Solr. Our logs are filling up with these calls: > > > POST /solr/statistics/update?wt=javabin&version=2.2 HTTP/1.1 > > > It´s the server itself that makes the call. These calls occur every second > and this sometimes causes server drops. We don´t use Solr statistics to our > repository. > > Does anyone know how to avoid these calls? > > Thanks, > A greeting. > > -- > You received this message because you are subscribed to the Google Groups > "DSpace Technical Support" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To post to this group, send email to [email protected] > <mailto:[email protected]>. > Visit this group at https://groups.google.com/group/dspace-tech > <https://groups.google.com/group/dspace-tech>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. -- You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/dspace-tech. For more options, visit https://groups.google.com/d/optout.
