I want to run Alfresco Community Edition 201611 EA with Solr 6.3 using Solr 6 Integration.
The alfresco-search-services-1.0.a\README.MD instruction:
Install & Run
To run, unzip then
solr/bin/solr start
... unfortunately it isn't enough ;(
Can anyone guide me how to reconfigure both Solr 6.3 and Alfresco 5.2EA to make they work together?
The document published today (20-12-2016) by Axel Faust on community.alfresco.com:
Using SOLR 6 in Alfresco Community Edition 5.2 (201612 GA)
... Installation ...
Related
I followed bitnami solr helm on my local k8s, it installed solr version 9.0.1. but I want to install specific solr 7.3.0 version for legacy issue of my project.
Any one can help. Thanks in advance
I'm a front-end developer and I need to do a Ckan Theme. To do so, I need a working source install of CKAN on my system. I'm using Mint 18.1 and installing Ckan 2.6.2.
Following the steps of the installation of ckan's docs I've got a warning and an error at step 6 as shown on the image.
As you can see the last line says SOLR schema version not supported: 2.7. Supported versions are [2.3] and I can't proceed with the installation. Searching on the Internet I found people having the same problem, but using Docker (have no idea what is this) and their solutions didn't work for me.
Because I have a really short time to build this theme I gave up CKAN 2.6.2 and installd 2.5.2 and everything worked fine.
The SOLR schema that comes with CKAN 2.6.2 is version 2.3, so somehow you have got 2.7, which is provided with later versions of CKAN. Maybe you installed CKAN master and the schema is lingering from then.
Here are some steps so that you can find out where the problem is:
You can check the version of the schema in the CKAN source repo on your disk:
grep 'name="ckan" version=' /usr/lib/ckan/default/src/ckan/ckan/config/solr/schema.xml
You would have then installed this file into Solr (in Step 5, using the 'ln' command). You can check the version in Solr:
grep 'name="ckan" version=' /etc/solr/conf/schema.xml
(When this file is changed, you need to restart SOLR (i.e. jetty) for it to take effect - see the docs again).
You can see what schema SOLR is actually using:
curl -s 'http://localhost:8983/solr/admin/file/?contentType=text/xml;charset=utf-8&file=schema.xml'|grep 'name="ckan" version='
Please do feed back on these.
It sounds like your Docker container for SOLR is a newer version than that is not compatible with CKAN 2.6.2.
I just successfully installed datastax enterprise 5.0 but I can't get solr running
I got "Connection refused" trying to use
dsetool create_core keyspace.table
Also port 8983 isn't listening
Is there something to do in order to launch the solr service ?
Regards
Yeah if it's a tarball start with dse cassandra -s for search. If it's a package install, edit /etc/defaults/dse to have SOLR_ENABLED=1
I want to deploy Solr 5.2.1 to tomcat 7 on a windows.Can you please provide me step by step guide to installing the same.
Solr team has discontinued support of Tomcat for newer versions.
https://cwiki.apache.org/confluence/display/solr/Running+Solr+on+Tomcat
I have followed this guide to install Solr in TomCat running on Windows Server 2008 R2.
http://drupal.org/node/1359598
As described in step 6 of the guide I can run Solr from the command line using the following:
java -Dsolr.solr.home=c:/solr/ -jar start.jar
As expected I can now see Solr at http://localhost:8983/solr/
If I reboot the server Solr does not start automatically. I have to run the start.jar file via the command line as shown above.
I have tried adding the following to the Java Options in the Configure TomCat UI.
-Dsolr.solr.home=c:\solr
This doesn't work. The only way I can run Solr is to use the command line. I'm sure that this is a simple problem to resolve but I can't work it out. Does anyone have any idea what I've configured incorrectly?
My technology stack is:
JRE 7
TomCat 7.0
Solr 3.6.0
Windows Server 2008 R2 (IIS 7.5)
Default servlet container in solr is jetty, not tomcat. So when you are running java -jar start.jar you are starting jetty.
Please refer to the following doc on running solr with tomcat .
Once you have done this, to start tomcat as a service that automatically restarts follow this doc http://tomcat.apache.org/tomcat-7.0-doc/windows-service-howto.html