Re: Solr Cloud permissions

2017-12-04 Thread Shawn Heisey
On 12/4/2017 9:54 AM, Steve Pruitt wrote: I used the -u option to provide the installer with a user id. The /var/solr folder has the user set as the owner. But, the /opt/solr folder is owned by root. How did this happen? When you install the service, Solr has no need to write to the

RE: Solr Cloud permissions

2017-12-04 Thread Steve Pruitt
I used the -u option to provide the installer with a user id. The /var/solr folder has the user set as the owner. But, the /opt/solr folder is owned by root. How did this happen? I checked the opt/solr/bin/init.d/solr and verified RUNAS is set to the user I entered. When I try to execute

Solr Cloud permissions

2017-12-04 Thread Steve Pruitt
The documentation states you cannot run Solr cloud as root. When I installed Solr I gave it another user. I checked the init.d script and RUNAS is set to the user I entered. This user doesn't have the permissions I need, but I am not exactly sure where to check permissions. Thanks. -S

Re: Solr and Permissions

2011-04-12 Thread Liam O'Boyle
to implement something outside of Solr for permission control. thanks, canal From: Jan Høydahl jan@cominvent.com To: solr-user@lucene.apache.org Sent: Fri, March 11, 2011 4:17:22 PM Subject: Re: Solr and Permissions Hi, Talk to the ManifoldCF guys

Re: Solr and Permissions

2011-03-12 Thread Geert-Jan Brits
Ahh yes, sorry about that. I assumed ExternalFileField would work for filtering as well. Note to self: never assume Geert-Jan 2011/3/12 Koji Sekiguchi k...@r.email.ne.jp (11/03/12 10:28), go canal wrote: Looking at the API doc, it seems that only floating value is currently supported, is it

Re: Solr and Permissions

2011-03-11 Thread Jan Høydahl
(Solr, Elastic Search ?) Then the last option is probably to build an application that works with a document repository with all necessary content management features and Solr which provides search capability; and handling the permissions outside Solr? thanks, canal

RE: Solr and Permissions

2011-03-11 Thread Tim Gilbert
...@intelligencebank.com] On Behalf Of Liam O'Boyle Sent: Thursday, March 10, 2011 7:53 PM To: solr-user@lucene.apache.org Subject: Solr and Permissions Morning, We use solr to index a range of content to which, within our application, access is restricted by a system of user groups and permissions. In order

Re: Solr and Permissions

2011-03-11 Thread go canal
, March 11, 2011 4:17:22 PM Subject: Re: Solr and Permissions Hi, Talk to the ManifoldCF guys - they have successfully implemented support for document level security for many repositories including CMC/ECMs and may have some hints for you to write your own Authority connector against your system

Re: Solr and Permissions

2011-03-11 Thread Walter Underwood
On Mar 10, 2011, at 10:48 PM, go canal wrote: But in real world, any content management systems need full text search; so the question is to how to support search with permission control. I have yet to see a Search Engine that provides some sort of Content Management features like we

Re: Solr and Permissions

2011-03-11 Thread Bill Bell
Why not just add a security field in Solr and use fq to limit to the users permissions? Bill Bell Sent from mobile On Mar 11, 2011, at 10:27 AM, Walter Underwood wun...@wunderwood.org wrote: On Mar 10, 2011, at 10:48 PM, go canal wrote: But in real world, any content management systems

Re: Solr and Permissions

2011-03-11 Thread Walter Underwood
On Mar 11, 2011, at 9:32 AM, Bill Bell wrote: Why not just add a security field in Solr and use fq to limit to the users permissions? You can. When permissions change, you need to reload every affected document. You also need to build the whole security filtering from scratch instead of

Re: Solr and Permissions

2011-03-11 Thread Geert-Jan Brits
About the 'having to reindex when permissions change'-problem: have a look at ExternalFileField http://lucene.apache.org/solr/api/org/apache/solr/schema/ExternalFileField.html http://lucene.apache.org/solr/api/org/apache/solr/schema/ExternalFileField.htmlwhich enables you to reload a file without

Re: Solr and Permissions

2011-03-11 Thread Sujit Pal
To: solr-user@lucene.apache.org Sent: Fri, March 11, 2011 10:39:27 AM Subject: Re: Solr and Permissions How about assigning content types to documents in the index, and map users to a set of content types they are allowed to access? That way you will pass in fewer parameters in the fq

Re: Solr and Permissions

2011-03-11 Thread go canal
Looking at the API doc, it seems that only floating value is currently supported, is it true? thanks, canal From: Geert-Jan Brits gbr...@gmail.com To: solr-user@lucene.apache.org Sent: Sat, March 12, 2011 1:42:38 AM Subject: Re: Solr and Permissions About

Re: Solr and Permissions

2011-03-11 Thread Koji Sekiguchi
(11/03/12 10:28), go canal wrote: Looking at the API doc, it seems that only floating value is currently supported, is it true? Right. And it is just for changing score by using float values in the file, so it cannot be used for filtering. Koji -- http://www.rondhuit.com/en/

Solr and Permissions

2011-03-10 Thread Liam O'Boyle
Morning, We use solr to index a range of content to which, within our application, access is restricted by a system of user groups and permissions. In order to ensure that search results don't reveal information about items which the user doesn't have access to, we need to somehow filter the

Re: Solr and Permissions

2011-03-10 Thread Sujit Pal
How about assigning content types to documents in the index, and map users to a set of content types they are allowed to access? That way you will pass in fewer parameters in the fq. -sujit On Fri, 2011-03-11 at 11:53 +1100, Liam O'Boyle wrote: Morning, We use solr to index a range of

Re: Solr and Permissions

2011-03-10 Thread go canal
correct? thanks, canal From: Sujit Pal sujit@comcast.net To: solr-user@lucene.apache.org Sent: Fri, March 11, 2011 10:39:27 AM Subject: Re: Solr and Permissions How about assigning content types to documents in the index, and map users to a set of content types

Re: Solr and Permissions

2011-03-10 Thread Liam O'Boyle
@lucene.apache.org Sent: Fri, March 11, 2011 10:39:27 AM Subject: Re: Solr and Permissions How about assigning content types to documents in the index, and map users to a set of content types they are allowed to access? That way you will pass in fewer parameters in the fq. -sujit On Fri

Re: Solr and Permissions

2011-03-10 Thread go canal
content management features and Solr which provides search capability; and handling the permissions outside Solr? thanks, canal From: Liam O'Boyle liam.obo...@intelligencebank.com To: solr-user@lucene.apache.org Cc: go canal goca...@yahoo.com Sent: Fri, March 11