similar to: Cannot join domain Samba PDC with ldap

Displaying 20 results from an estimated 40000 matches similar to: "Cannot join domain Samba PDC with ldap"

2005 Dec 01
2
LDAP Implementations (was: Linking against a specifi c Berkeley DB install)
From: Bryan J. Smith [mailto:thebs413 at earthlink.net] > > Bowie Bailey <Bowie_Bailey at BUC.com> wrote: > > It is an interesting choice. It supports multi-master > > replication which I will need and has some GUI management > > utilities. > > Anyone know of any problems with it? > > Only that many people on this list have been ignorant of what >
2020 Aug 18
1
Re: [PATCH nbdkit 7/9] server: Add hand-written replacement for poll for Windows.
On 8/18/20 5:50 AM, Richard W.M. Jones wrote: > --- > configure.ac | 1 + > common/replacements/Makefile.am | 2 + > common/replacements/poll.h | 60 ++++++++++++++++++ > server/public.c | 2 +- > server/sockets.c | 2 +- > common/replacements/poll.c | 106 ++++++++++++++++++++++++++++++++ > 6
2008 Aug 22
3
How to Join Samba Client to a Samba PDC Domain with ldap?
Hi People. I have a domain running samba 3.0.28 with Gentoo+ LDAP+smbldap-tools. Is running very well, I have about 15 WinXP clients + 1 Win2K3 server. Is easy to add a win machine to the domain, but now I need to add a linux box running Centos 5.2, But I have my doubts: Do I need to edit in my client the openldap settings? I just need samba? How my samba client is going to read
2008 Jan 09
3
Sync passwords unix/smb with FDS backend?
Using simple authentication I have been able to tie FDS to Samba 3.x.24. Knowing that the unix passwd and smb passwd are different, dare I ask how difficult it would be to have them sync? Most of my users are using netatalk w/ posix user info and MD5 password. I would like to swing this over to samba without the worries of two passwords per user. I have seen blips on this but not directly related
2002 Jul 02
3
Cannot join Win2k with Samba+LDAP PDC
I cannot join a Win2k machine to the Samba LDAP PDC. Have added a root account in ldap added the machine in /etc/passwd and added the machine via smbpasswd but to no avail. I have turned up logging to level 3 and can't find anything. Below are the following errors.: On Win2k PC : Logon Failure: unknown user or bad password Samba LDAP PDC: Jul 2 14:54:24 devel smbd[19074]: No user to
2020 Feb 26
2
[PATCH] lib: command: switch from select() to poll()
select() has a maximum value for the FDs it can monitor, and since the libguestfs library can be used in other applications, this limit may be hit by users in case lots of FDs are opened. As solution, switch to poll(): it has a slightly better interface to check what changed and for which FD, and it does not have a limit in the value of the FDs monitored. poll() is supported on the platforms we
2020 Feb 26
1
Re: [PATCH] lib: command: switch from select() to poll()
On Wednesday, 26 February 2020 15:08:24 CET Daniel P. Berrangé wrote: > On Wed, Feb 26, 2020 at 02:39:04PM +0100, Pino Toscano wrote: > > select() has a maximum value for the FDs it can monitor, and since > > the libguestfs library can be used in other applications, this limit > > may be hit by users in case lots of FDs are opened. > > > > As solution, switch to
2006 May 01
1
fedora directory server (FDS)
Thanks Craig for your soon answer.. I've now the FDS up and running... I am now creating my users in FDS because I want to unify the authentication of my 3 centos servers. BUT, When I create my users in FDS I don't see any option of UID, GID, home directory, etc, so the FDS server return an error and my remote users can't authenticate....... my question is? 1. Can I use FDS to
2010 Dec 04
0
Samba as PDC and FDS
I think I'm almost there getting Samba (3.4.9-60) to authenticate against FDS (1.2.6.1) but I'm at a loss to get over this last hurdle.? Total LDAP newbie here so nothing about any of this is obvious to me right now. I've been using http://directory.fedoraproject.org/wiki/Howto:Samba as a guide.? I've configured FDS and put in groups and users.? AFAIK I've configured Samba to
2005 Dec 14
2
Patch: ioloop using kqueue/kevent for FreeBSD
Hi, I would like to submit the attached patch. It implements IO loop using FreeBSD's kqueue/kevent syscalls. It is based on snapshot of CVS HEAD as of 2005-12-12. I could only give it limited testing on FreeBSD 5.4 but it works fine so far. Vaclav Haisman -------------- next part -------------- diff -rN -u old-dovecot-cvs/autogen.sh new-dovecot-cvs/autogen.sh ---
2019 Aug 27
1
[PATCH nbdkit] server: Try hard to maintain invariant that fds 0, 1 and 2 are always open.
https://www.redhat.com/archives/libguestfs/2019-August/thread.html#00347 Thanks: Eric Blake and Daniel P. Berrangé --- common/utils/utils.h | 1 + server/connections.c | 4 ++-- server/crypto.c | 5 +++-- server/main.c | 23 +++++++++++++++++++++++ common/utils/utils.c | 29 +++++++++++++++++++++++++++++ 5 files changed, 58 insertions(+), 4 deletions(-) diff --git
2019 Nov 21
2
[ARM] Peephole optimization ( instructions tst + add )
Hello! I noticed that in some cases clang generates sequence of AND+TST instructions: For example: AND x3, x2, x1 TST x2, x1 I think these instructions should be merged to one: ANDS x3, x2, x1 ( because TST <Xn>, <Xm> is alias for ANDS XZR, <Xn>, <Xm> -
2005 Dec 06
2
OpenLDAP to FDS 7.1
I am intending to test FDS 7.1 for our LDAP database. We have a custom schema currently set up with OpenLDAP. I am looking for a script ton convert those schema files to the FDS LDIF format. I could have sworn someone posted a link in the previous LDAP thread, but I can't find it now. If anyone has that script, I would appreciate a pointer. Thanks, Bowie
2002 Apr 03
1
[PATCH] connect() timeout
Here is a version of this widely used patch specific for OpenSSH 3.1p1, as it is still not in the main tree (perhap one day...) The patch avoids spending too much time when doing an ssh()/scp() on a down host, as it does not depend off the default TCP timeout used by connect(). Patch was tested on Linux, Solaris and HP-UX. The patch can also be found on:
2011 Feb 07
1
[PATCH] ssh: set proctitle for mux master
Preserving the command line from the invoking ssh command doesn't make much sense, so use setproctitle() to hide the arguments. --- ssh.c | 20 +++++++++++++++++--- 1 files changed, 17 insertions(+), 3 deletions(-) diff --git a/ssh.c b/ssh.c index d32ef78..8ebcc88 100644 --- a/ssh.c +++ b/ssh.c @@ -230,12 +230,25 @@ main(int ac, char **av) struct servent *sp; Forward fwd; - /* Ensure
2020 Sep 23
2
[PATCH 0/6] drm/nouveau: Support sync FDs and sync objects
On Wed, Sep 23, 2020 at 11:18:53AM +0200, Thierry Reding wrote: > On Fri, Aug 28, 2020 at 12:40:10PM +0200, Thierry Reding wrote: > > From: Thierry Reding <treding at nvidia.com> > > > > Hi, > > > > This series implements a new IOCTL to submit push buffers that can > > optionally return a sync FD or sync object to userspace. This is useful > >
2009 Apr 01
5
Samba + LDAP = SLOW Help plesase
Hi Guys! Samba suspiciously slow i have: CentOS 5.2 final Samba 3.0.28-0.e15.8 LDAP server placed on anoter (not Samba) Server In ldap container "ou=Users" about 5000 entries When Windows client's connect to samba - Authentification process S.L.O.W. (about 20-30 seconds). When number entries less - performance grow (when 10 users - authentification process go 1-2 seconds) How i
2019 May 25
1
[nbdkit PATCH] nbd: Rewrite thread passing to use semaphore rather than pipe
I ran some local testing on my Fedora 29 system via: $ ./nbdkit memory 1m $ for i in `seq 10`; do ./nbdkit -U - --filter=stats nbd \ statsappend=true statsfile=$file hostname=localhost port=10809 \ --run '~/libnbd/examples/threaded-reads-and-writes $unixsocket' done Pre-patch, the runs averaged 1.266s, 1.30E+08 bits/s Post-patch, the runs averaged 1.154s, 1.42E+08
2004 Dec 29
2
Cluster size not supported
Hi, I'm having a similar problem, I get "The cluster size in this system is not supported." I get this when running wine InstMsiA.exe (using the version from microsoft.com). It comes up in a windows message box. I'm running wine from yesterday's cvs. I tried running Rein's test program from this old email and I get the following output: % wine fds 'c:\'
2008 Jan 22
4
PDC Multiple users
Hi list: I've been using samba+ldap as a PDC with roaming profiles for some time but recently I joined some machines to the domain wich are used by several users and then started the problems, the profiles loaded are not the ones owned by the users, I mean user1 loads the profile of the user2 and so on. I'm using Debian Etch (stable) with samba 3.0.24. Any Help Thanks Harol Hunter