LDAP configuration

2011-01-28 Thread David
Hi, I am trying to get reviewboard authentificate through our LDAP infrastructure, but I cannot make it work (got "the specified object does not exist"). I don't know much about LDAP unfortunately, so I am not sure where the error lies. We got trac connecting to LDAP, but at the apache level, as

LDAP configuration

2011-09-30 Thread jack jack
Hi, If i configure LDAP in reviewboard, Do i need to change apache-modpython.conf i.e httpd.conf file? -Jack -- Want to help the Review Board project? Donate today at http://www.reviewboard.org/donate/ Happy user? Let us know at http://www.reviewboard.org/users/ -~--~~~~---

LDAP Configuration

2009-04-22 Thread Noam
I set up the LDAP settings that I use with all of the other open source tools that we are using here at the company I work for, however the authentication does not seem to be working. Any advice on how to figure out whats wrong? Thanks. --~--~-~--~~~---~--~~ You re

LDAP Configuration

2017-03-31 Thread Martin Dew-Hattens
New to Review Board and trying to get LDAP config to work. in log file getting 2017-03-31 10:14:41,923 - WARNING - - LDAP error: {'desc': "Can't contact LDAP server"} I know the parameters I use are correct since they are used elsewhere ldap://host:389 Bindaccount accountusedbefore pass

LDAP Configuration

2019-07-16 Thread Sagar Veerla
Hi All, Am using LDAP Authentication for Reviewboard, post adding the configuration details and trying to login. It fails to login. Do we need to create the users explicitly or do they get populated automatically? Thanks, Sagar -- Supercharge your Review Board with Power Pack: https://www.re

Re: LDAP configuration

2011-01-28 Thread Rob
I struggled a bit to make it work too, but here's what I finally used. I am running ReviewBoard on CentOS 5.2 under Apache/mod_python/Python 2.5.1/linux64. (The Python ldap module, linking to openldap libs I believe, is responsible for the actual connection.) LDAP server: ldap://serverhostname

Re: LDAP configuration

2011-02-02 Thread Christian Hammond
I'd be happy for someone with more knowledge and expertise with LDAP to step up and help get our LDAP configuration settings under control, provide better names, maybe some docs. Anyone want to help with that? Christian -- Christian Hammond - chip...@chipx86.com Review Board -

Re: LDAP configuration

2011-02-02 Thread Jan Koprowski
sing Apache Directory Studio and just be careful about the details. On Thu, Feb 3, 2011 at 1:29 AM, Christian Hammond wrote: > I'd be happy for someone with more knowledge and expertise with LDAP to step > up and help get our LDAP configuration settings under control, provide >

Re: LDAP configuration

2011-02-04 Thread Dan Young
On Thu, Jan 27, 2011 at 11:47 PM, David wrote: > FWIW, I could not make it work using the python ldap library either: > >  l = ldap.open("x.x.x.x:389") >  username = "cn=admin,dc=x,dc=y,dc=z" >  password = "x" > >  l.simple_bind(username, password) # fails with (2, 'No such file or > direc

Re: LDAP configuration

2011-02-04 Thread David Cournapeau
On Thu, Feb 3, 2011 at 2:22 PM, Jan Koprowski wrote: > 1) Please try use Your data "exactly" in some other tool. I prefere > Apache Directory Studio (http://directory.apache.org/studio/). Just > use this same informations to connect with Your LDAP server > 2) Maybe LDAP base dn need more specific

Re: LDAP configuration

2011-09-30 Thread Christian Hammond
No, you should only need to provide the settings in the admin UI. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org VMware, Inc. - http://www.vmware.com On Fri, Sep 30, 2011 at 11:56 AM, jack jack wrote: > Hi, > > If i configure LDAP in reviewboar

Re: LDAP configuration

2011-09-30 Thread jack jack
After configuration of LDAP we need create specfic user in the review board right? *I added following entries * LDAP host = ldap://nascmroot01:3268 BaseDN = dc=xxware,dc=com Do i need to fill all the information in LDAP setting. In the reviewboard log i can see following error message, wh

Re: LDAP configuration

2011-10-02 Thread jack jack
Hi Chris, If we configure LDAP in reviewboard, do we need to create LDAP user explicitly in RB. Thanks, Jack On Sat, Oct 1, 2011 at 12:43 AM, jack jack wrote: > After configuration of LDAP we need create specfic user in the review board > right? > > *I added following entries > > * > > LDAP ho

Re: LDAP configuration

2011-10-02 Thread Christian Hammond
Hi Jack, No, the first log in for a user should automatically contact the LDAP server and add that user to the database. I'm no expert in LDAP, though, so I won't be able to do much to help with any errors you get there. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http:

Re: LDAP configuration

2011-10-03 Thread jack jack
Earlier in RB 1.0 we have the drop down menu item as "Custom" for Authentication method, Do we support custom Authentication method for ReviewBoard 1.6.1 On Mon, Oct 3, 2011 at 11:49 AM, Christian Hammond wrote: > Hi Jack, > > No, the first log in for a user should automatically contact the LDAP

Reviewboard LDAP configuration

2011-10-03 Thread jack jack
Dear All, Had anybody successfully configured LDAP configuration in ReviewBoard. I am facing issue while doing so. When i try to login using LDAP user, Reviewboard log says error message as below WARNING - LDAP error: {'desc': "Can't contact LDAP server"} Pleas

Re: LDAP configuration

2011-10-03 Thread Stephen Gallagher
ns all the djblets-provided mappings as well. settings_map = { 'auth_ldap_anon_bind_uid':'LDAP_ANON_BIND_UID', 'auth_ldap_anon_bind_passwd': 'LDAP_ANON_BIND_PASSWD', ... in siteconfig.py, which suggests that these options ARE availab

Re: LDAP configuration

2011-10-03 Thread jack jack
gs as well. > settings_map = { >'auth_ldap_anon_bind_uid':'LDAP_ANON_BIND_UID', >'auth_ldap_anon_bind_passwd': 'LDAP_ANON_BIND_PASSWD', >... > > in siteconfig.py, which suggests that these options ARE available. > >

Re: LDAP configuration

2011-10-03 Thread Stephen Gallagher
On Mon, 2011-10-03 at 19:09 +0530, jack jack wrote: > I added following entries as suggested. > > Anonymous User Mask: uid=%s,CN=ldapquery,OU=Service > Accounts,OU=Exception Accounts,DC=na,DC=companyname,DC=com Do not use %s. It must be a specific user. > Anonymous User Password: > > After sav

Re: LDAP configuration

2011-10-03 Thread jack jack
Stephen,Chris, I have also seen in the scmtools/repository section when i save the user name and password, password field get empty but its password is present in the database. Anonymous User Password: field in the LDAP section after saving the page the password field got empty. Could you please

Re: LDAP configuration

2011-10-03 Thread jack jack
Hello Stephen,Chris, Here is my old custom method of authenticating through LDAP, I have taken these snippet from httpd.conf Please help me with these entries to configure LDAP in RB AuthType Basic AuthBasicProvider ldap AuthName "Enter your Windows login (without domain qualifier)" AuthzLDAPAuth

Re: LDAP configuration

2011-10-05 Thread jack jack
Dear All, Could you please help me with your input. After adding entry ( Anonymous User Password:) in the LDAP configuration and save the configuration, but when i open the page again the password field got empty. If this is the bug then what should be the workaround for thisI got stuck now

Re: LDAP configuration

2011-10-05 Thread Christian Hammond
ou please help me with your input. > > After adding entry ( Anonymous User Password:) in the LDAP configuration > and save the configuration, but when i open the page again the password > field got empty. > > If this is the bug then what should be the workaround for thisI go

Re: LDAP configuration

2011-10-05 Thread jack jack
.com > Review Board - http://www.reviewboard.org > VMware, Inc. - http://www.vmware.com > > > On Wed, Oct 5, 2011 at 1:56 AM, jack jack wrote: > >> Dear All, >> >> Could you please help me with your input. >> >> After adding entry ( Anonymous User Pass

LDAP configuration problem

2012-08-20 Thread Raymond Meng
hi guys: I'm quite a freshman of reviewboard. I met problems during my LDAP configuration. my settings: LDAP server: 10.10.192.41:389 LDAP base DN: ou=example,dc=example,dc= example given name attribute: givenName surname attribute: sn full name attribute: cn E-mail Domain: example.com E

Re: LDAP configuration

2013-12-18 Thread Mayur T
>> > wrote: >> >>> Dear All, >>> >>> Could you please help me with your input. >>> >>> After adding entry ( Anonymous User Password:) in the LDAP configuration >>> and save the configuration, but when i open the page again the pas

Re: LDAP configuration

2014-03-04 Thread Tanweer Noor
t; Christian Hammond - chi...@chipx86.com >>> Review Board - http://www.reviewboard.org >>> VMware, Inc. - http://www.vmware.com >>> >>> >>> On Wed, Oct 5, 2011 at 1:56 AM, jack jack wrote: >>> >>>> Dear All, >>>> >>>>

Re: LDAP Configuration

2009-04-22 Thread Christian Hammond
Enable logging and check the resulting error logs after you authenticate. There may be more information there, which will at least tell us which error you hit. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.review-board.org VMware, Inc. - http://www.vmware.com O

Re: LDAP Configuration

2009-04-23 Thread Noam Bunder
I enabled logging and this is what I see: 2009-04-23 06:40:22,467 - WARNING - An error while LDAP-authenticating: KeyError('givenName',) I am using the following settings: LDAP Server: ldap://.com:389 Base DN: cn=users,dc=mycompany,dc=com E-Mail Domain: mycompany.com E-Mail LDAP Attribute: mail

Re: LDAP Configuration

2009-04-23 Thread Noam
I enabled logging and this is what I see: 2009-04-23 06:40:22,467 - WARNING - An error while LDAP- authenticating: KeyError('givenName',) I am using the following settings: LDAP Server: ldap://.com:389 Base DN: cn=users,dc=mycompany,dc=com E-Mail Domain: mycompany.com E-Mail LDAP Attribute: mai

Re: LDAP Configuration

2009-04-23 Thread Christian Hammond
Looks like your LDAP server doesn't support the "givenName" field, which our code requires. What LDAP server are you using? If you feel at all comfortable with Python and happen to know what field should contain the first name of the user, you can look at modifying reviewboard/accounts/backends.py

Re: LDAP Configuration

2009-04-23 Thread Gavin M. Roy
Perhaps it would be better to create a mapping config for this, with the defaults being what they are, as to not break pre-existing LDAP implementations? Gavin On Thu, Apr 23, 2009 at 7:48 PM, Christian Hammond wrote: > Looks like your LDAP server doesn't support the "givenName" field, which ou

Re: LDAP Configuration

2009-04-23 Thread Christian Hammond
Yeah we definitely don't want to break any existing clients. I'd like to know the correct keys for this particular LDAP server so that we can check for the existence of the givenName field and then, if not found, check for this other one, before giving up and returning an empty string and warning i

Re: LDAP Configuration

2009-04-27 Thread Noam
We are using Oracle LDAP, please let me know if you need the specifics with regard to version/platform, or anything else I can help with. Thanks, - Noam Bunder On Apr 23, 8:02 pm, Christian Hammond wrote: > Yeah we definitely don't want to break any existing clients. I'd like to > know the corre

Re: LDAP Configuration

2009-04-27 Thread Christian Hammond
I have a change up for review that will go in today (so try tomorrow's nightly) that should hopefully fix this. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.review-board.org VMware, Inc. - http://www.vmware.com On Mon, Apr 27, 2009 at 7:20 AM, Noam wrote: >

Re: LDAP Configuration

2009-05-01 Thread Noam
How do I upgrade to a new build? On Apr 27, 3:16 pm, Christian Hammond wrote: > I have a change up for review that will go in today (so try tomorrow's > nightly) that should hopefully fix this. > > Christian > > -- > Christian Hammond - chip...@chipx86.com > Review Board -http://www.review-board

Re: LDAP Configuration

2009-05-01 Thread Christian Hammond
For actual releases: easy_install -U ReviewBoard. For nightlies: easy_install -f http://downloads.review-board.org/nightlies/-U ReviewBoard You'll want to do the same for Djblets as well. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.review-board.org VMware, In

Re: LDAP Configuration

2017-04-05 Thread Christian Hammond
What version of Review Board are you using? Can you verify that the server can resolve that hostname from a terminal? Christian On Fri, Mar 31, 2017 at 07:53 Martin Dew-Hattens wrote: > New to Review Board and trying to get LDAP config to work. > > in log file getting > > 2017-03-31 10:14:41,

Re: LDAP Configuration

2019-07-16 Thread Christian Hammond
Hi Sagar, When a user with an account on the LDAP server tries to log into Review Board for the first time, Review Board will ask the LDAP server for details on that username and create an account locally. The LDAP server will continue to be used for authentication. If this isn't working, then it

Re: LDAP Configuration

2019-07-16 Thread Sagar Veerla
Thanks for reply Christian. Here are errors from log when I tried to login post providing LDAP Config: [Tue Jul 16 09:02:10.804190 2019] [:error] [pid 20450] WARNING:root:LDAP error: The specified object does not exist in the Directory or provided invalid credentials: sveerla [Tue Jul 16 09:02:2

Re: LDAP Configuration

2019-09-26 Thread Paul Mansfield
I was testing my reviewboard backups are good, so I restored from the mysqldump, and copied over the saved settings_local.py I can login as the admin user, and the ldap settings are the same as the live server, but I can't login using ldap, and I get this error in the log: [Thu Sep 26 14:20:40

Re: LDAP Configuration

2019-10-01 Thread Christian Hammond
Hi Paul, Does the LDAP server restrict access by IP address? Christian On Thu, Sep 26, 2019 at 8:22 AM Paul Mansfield < paul.mansfi...@agileanalog.com> wrote: > > I was testing my reviewboard backups are good, so I restored from the > mysqldump, and copied over the saved settings_local.py > > I

Re: LDAP Configuration

2019-10-03 Thread Paul Mansfield
Hi, thanks for coming back to me. I don't see any outbound packets to the ldap server on the new reviewboard server, but I do on the old one - I am looking for any outbound traffic to the ldap server, or, any traffic to tcp:389 If I compare the ldap settings page on both servers, they look iden

Re: LDAP Configuration

2019-10-05 Thread Christian Hammond
There’s nothing on our end that should be impacting this. It sounds more like a name resolution, routing, firewall, etc. sort of problem. Particularly if the same configuration worked on a different server. Christian On Thu, Oct 3, 2019 at 05:53 Paul Mansfield wrote: > Hi, > thanks for coming

Re: LDAP Configuration

2019-10-08 Thread Paul Mansfield
I found the problem. facepalm. I should have guessed. damn selinux. I found it because I realised that the avatars weren't working as after fixing the directory permissions under .../htdocs/media they still didn't work, so I did a "setenforce permissive" and then discovered that, ldap login wor

Re: LDAP Configuration

2019-10-08 Thread Stephen Gallagher
On Tue, Oct 8, 2019 at 6:35 AM Paul Mansfield < paul.mansfi...@agileanalog.com> wrote: > I found the problem. facepalm. I should have guessed. damn selinux. > > I found it because I realised that the avatars weren't working as after > fixing the directory permissions under .../htdocs/media they st

Re: LDAP Configuration

2019-10-08 Thread Paul Mansfield
BTW, the secret magic command is sudo setsebool -P authlogin_nsswitch_use_ldap=1 -- Supercharge your Review Board with Power Pack: https://www.reviewboard.org/powerpack/ Want us to host Review Board for you? Check out RBCommons: https://rbcommons.com/ Happy user? Let us know! https://www.revi

Re: LDAP Configuration

2019-10-08 Thread Paul Mansfield
yes please, I had to use this flag: authlogin_nsswitch_use_ldap I already had the other flags in my deployment scripts in puppet. On Tuesday, 8 October 2019 11:54:38 UTC+1, Stephen Gallagher wrote: > > > > On Tue, Oct 8, 2019 at 6:35 AM Paul Mansfield > wrote: > >> I found the problem. facepalm.

Re: Reviewboard LDAP configuration

2011-10-05 Thread jack jack
3, 2011 at 5:54 PM, jack jack wrote: > Dear All, > > Had anybody successfully configured LDAP configuration in ReviewBoard. I am > facing issue while doing so. When i try to login using LDAP user, > > Reviewboard log says error message as below > > WARNING - LDAP error:

Re: Reviewboard LDAP configuration

2011-10-05 Thread Stephen Gallagher
ike. > Can someone help me whats is going wrong here. > > -Jack > > On Mon, Oct 3, 2011 at 5:54 PM, jack jack wrote: > Dear All, > > Had anybody successfully configured LDAP configuration in > ReviewBoard. I am facing issue while d

Re: Reviewboard LDAP configuration

2011-10-07 Thread jack jack
layout of your server >> uid=%s,cn=Accounts,DC=xxxware,DC=com >> >> Or something like that. You probably need to ask your admin to tell you >> what the full DN of a user looks like. >> >> > Can someone help me whats is going wrong here. >> > &g

Re: LDAP configuration problem

2012-08-20 Thread Tucker
example.com, your E-mail domain is wrong. * Leave the anonymous user mask blank, unless you know what you're doing. On Mon, Aug 20, 2012 at 12:40 AM, Raymond Meng wrote: > hi guys: > > I'm quite a freshman of reviewboard. I met problems during my LDAP > configuration. > >

Re: LDAP configuration problem

2013-01-07 Thread Rolando Nieves
f with your LDAP schema or find someone who knows > what that should be. > * Unless you actually own example.com, your E-mail domain is wrong. > * Leave the anonymous user mask blank, unless you know what you're doing. > > On Mon, Aug 20, 2012 at 12:40 AM, Raymond Meng > &

Re: LDAP configuration problem

2013-01-08 Thread Rolando Nieves
ot;ldap://";. Probably >> "ldap://10.10.192.42:389"; >> * Your LDAP base DN is most likely wrong. You'll either need to >> familiarize yourself with your LDAP schema or find someone who knows >> what that should be. >> * Unless you actually

Reg:reviewboard email and ldap configuration

2014-11-16 Thread suresh kamini
Hi Team, Email configuration has been done and checked test email is working But, when publish new request, reviewer is not getting email notifications Pls provide step by step how to configure email and ldap settings in reviewboard Regards, Suresh -- Get the Review Board Power Pack at http

LDAP configuration issue - Reviewboard 4.0.4

2021-09-08 Thread Deviprasad Tummidi
Hi Community Members, I have installed Reviewboard 4.0.4 version and trying setup LDAP authentication but unable to progress. *OS* : CentOS 8 *ReviewBoard Version* : 4.0.4 LDAP Config: LDAP Server: ldaps://ldaps.mycompany.com:636 *Use TLS for authentication*: Checked Review Board LDAP Bind Acc

Re: Reg:reviewboard email and ldap configuration

2014-11-16 Thread Christian Hammond
: reviewboard@googlegroups.com > Date: November 16, 2014 at 9:44:55 PM To: reviewboard@googlegroups.com > Subject:  Reg:reviewboard email and ldap configuration > Hi Team, > > Email configuration has been done and checked test email is working > > But, when publish new request, re

Re: Reg:reviewboard email and ldap configuration

2014-11-16 Thread suresh kamini
eviewboard@googlegroups.com > > Subject: Reg:reviewboard email and ldap configuration > > > Hi Team, > > > > Email configuration has been done and checked test email is working > > > > But, when publish new request, reviewer is not getting email > notific

Re: Reg:reviewboard email and ldap configuration

2014-11-16 Thread Christian Hammond
://www.beanbaginc.com -Original Message- From: suresh kamini Reply: reviewboard@googlegroups.com > Date: November 16, 2014 at 11:06:08 PM To: Christian Hammond > Cc: reviewboard@googlegroups.com > Subject:  Re: Reg:reviewboard email and ldap configuration > HI Christian, > > Am usi

Re: Reg:reviewboard email and ldap configuration

2014-11-17 Thread suresh kamini
6:08 PM > To: Christian Hammond > > Cc: reviewboard@googlegroups.com > > Subject: Re: Reg:reviewboard email and ldap configuration > > > HI Christian, > > > > Am using SMTP server for email > > > > Regards, > > Suresh > > > > On Mon, Nov 17, 2014

Re: Reg:reviewboard email and ldap configuration

2014-11-17 Thread suresh kamini
gt;> > > >> > > Are you using a mail server on localhost, or a corporate SMTP server? >> > > >> > > Christian >> > > >> > > -- >> > > Christian Hammond - christ...@beanbaginc.com >> > > Review Board - https:

Re: Ldap configuration getting an error

2014-11-17 Thread Stephen Gallagher
On Mon, 2014-11-17 at 03:29 -0800, suresh kamini wrote: > Hi Team, > > > > Review board,2.0.6 is installed on Ubuntu 14.0.4 > > Then logged into as a admin in review board > > Clicked on authentication, attached screen shots > > Pls let me know where i wrong > First thing to try wo

Re: Ldap configuration getting an error

2014-11-17 Thread suresh kamini
Even i uncheck of TLS authentication is not working Regards, Suresh On Mon, Nov 17, 2014 at 11:34 PM, Stephen Gallagher < step...@gallagherhome.com> wrote: > > > > On Mon, 2014-11-17 at 03:29 -0800, suresh kamini wrote: > > Hi Team, > > > > > > > > Review board,2.0.6 is installed on Ubuntu 14.0

Re: LDAP configuration issue - Reviewboard 4.0.4

2021-09-08 Thread Christian Hammond
Hi, The error from python-ldap isn't always useful. However, this usually means that it either can't communicate over the configured port, or there's some other issue preventing communication. This *could* be SSL-related, but that should usually result in a different error. >From the Review Board

Re: LDAP configuration issue - Reviewboard 4.0.4

2023-06-21 Thread 'Tom Schäfer' via Review Board Community
Hi there, I have the same issue now and i´m wondering if there is any solution to this. installed Reviewboard 6.0 beta1and tried setup LDAP authentication with LDAPS. *OS* : Ubuntu 22.04.2 *ReviewBoard Version* : 6.0 beta1 LDAP Config: LDAP Server: ldaps://ldaps.mycompany.com:636 *Use TLS f

Re: LDAP configuration issue - Reviewboard 4.0.4

2023-06-21 Thread Christian Hammond
Hi Tom, What LDAP server software are you using? While I’d expect a different error code here, to check, do you use self-signed SSL certs (or an in-house CA)? Is the cert still valid (not expired)? Are there any ACLs on the LDAP server that restrict what IPs can connect to it? Christian On We

Re: LDAP configuration issue - Reviewboard 4.0.4

2023-06-23 Thread 'Tom Schäfer' via Review Board Community
Hi Christian, the ports to the LDAP(s) server are open, no more restrictions and we are forced to use the 636 ports from IT. We use a selfsigned certificate and on other systems we had to import the ca certificate (for example in our Jenkins server). So i figured out how i can do this in Review

Re: LDAP configuration issue - Reviewboard 4.0.4

2023-06-23 Thread Christian Hammond
I'm glad you have a workaround, and verified the problem. We have a long-standing roadmap item to allow for selection of a SSL cert. We'll try to prioritize that for an upcoming release. Christian On Fri, Jun 23, 2023 at 2:37 AM 'Tom Schäfer' via Review Board Community < reviewboard@googlegroups.

Re: LDAP configuration issue - Reviewboard 4.0.4

2024-03-07 Thread 'Florian Miedniak' via Review Board Community
Hi Tom, quite late answer, but maybe it still helps: I had the very same problem using Reviewboard 6.0.2 and used the workaround as showed by you, also finding it working but ugly. If finally managed to solve it by: 1. cp /usr/local/share/ca-certificates/ 2. /usr/sbin/update-ca-certificates 3