similar to: Samba unable to bind to LDAP server

Displaying 20 results from an estimated 6000 matches similar to: "Samba unable to bind to LDAP server"

2007 Nov 19
5
DNS problem?
I'm trying to join an XP SP2 PC called testpc to a test environment. Its network settings are statically set. IP address is 10.8.3.209. I have a PDC called gomer.mdah.state.ms.us w/ samba 3.0.26a and IP address is 10.8.3.37. On test PC I right click on my computer, properties, computer name, change from workgroup WORKGROUP to domain ADAMSTEST. But I get the error: Note: This information
2008 Jun 06
3
lazy samba server?
Hi, I recently installed samba (3.0.28) on a linux box as a PDC. The networks has about 20 windows xp professional and a few Linux (all Fedora 8). Basically the server works OK but I have run into a few problems: Initially windows roaming profile was not configured. At that time, sometimes when a user tries to log on a windows machines, it would say "server not found" and the user
2010 Feb 05
1
Windows 7 samba domain trust relatioshiop
I have upgraded both my PDC and BDC to samba-3.4.5 and restarted samba. Then I applied the registry changes to windows 7 aslisted in the wiki. Anyways I joind the domain without problems but when I go to login I get a trust relationship error. In my eventlog I see the following: The session setup to the Windows NT or Windows 2000 Domain Controller \\VS_LDAP1 for the domain RADIMG failed because
2007 Aug 08
2
Problem with LDAP failover config
Hi, I have working master & slave OpenLDAP servers the Samba PDC works correctly when using either as the passdb backend. However, when configuring for LDAP failover as per this doc: http://samba.org/samba/docs/man/Samba-Guide/2000users.html Samba doesn't work & the logs fill up with this: ldap_initialize: Bad parameter to an ldap routine Connection to LDAP server failed for the 1
2010 Mar 12
1
Samba4 Auth Against OpenDirectory (OpenLDAP)
I've been working through the instructions on the samba wiki: http://wiki.samba.org/index.php/Samba4/LDAP_Backend/OpenLDAP My OpenLDAP is running on Snow Leopard Server in an OpenDirectory environment. I run into this error: Administrator password will be set randomly! Traceback (most recent call last): File "setup/provision", line 222, in <module>
2004 Oct 05
1
Mac OS X winbind on Samba domain
Hi All, Has anyone managed to get a Mac (OS X I'm using) to authenticate to a Samba/NT domain? I've been playing with this all day, and am not getting very far - smbd, nmbd and winbind (3.0.2) all run fine, I can see the domain, can connect individually to windows shares, wbinfo shows users (and groups, I assume), but there's no hints as far as what the equivalent to
2007 Feb 05
2
WERR_ACCESS_DENIED trying to set printer driver in samba-3.0.23d
I am having problems getting Pont and Print to work with samba-3.0.23d, cups and ldap. I used an XP box to install the windows drivers on the samba server by adding the drivers in the "Printers and Faxes" section (using the server properties tab) for the samba server. This part worked fine but when I want to associate the driver to the printer I get an access denied in windows and in
2015 Apr 02
3
Allowing file permissions changes with mac os x clients.
Hi All, at work all our clients are macs (10.10 yosemite). We are trying to move from the classical afp file server to a samba based file server. After a lot of testing, things now works more or less: a mac server acts as Kerberos+OpenLDAP and a linux debian 7 box is doing the file server with samba 4.2.0. A client which has "joined" (which is bound in mac jargon) the
2009 Dec 15
2
[LLVMdev] Running a pass
Hello LLVM, I am following the document "Writing an LLVM Pass". When I ran "opt -load ../../../Debug/lib/MyPass.so -mypass < hello.bc > /dev/null" I got the next error: ***@ubuntu:~/test$ opt -load ../../llvm/Debug/lib/MyPass.so -mypass < hello.bc > /dev/null opt: Pass.cpp:159: void<unnamed>::PassRegistrar::RegisterPass(const llvm::PassInfo&): Assertion
2018 Jan 28
4
Polly Dependency Analysis in MyPass
Hello, I need to analyze dependencies in my llvm ir by using polly. i created a new pass called mypass there i added polly dependency analysis pass but when i execute this pass in gdb i get no data. Why is that so? My code is follows; namespace { struct mypass : public FunctionPass { static char ID; mypass() : FunctionPass(ID) { } virtual bool runOnFunction(Function &F) {
2012 Mar 28
2
patch for OSX
Attached is a patch to make sshd work on OSX when using plain ol' Kerberos authentication as opposed to opendirectory authentication. Cheers, Nick -------------------------------------------------------------------------- NOTICE: Morgan Stanley is not acting as a municipal advisor and the opinions or views contained herein are not intended to be, and do not constitute, advice within the
2012 Feb 20
1
the probelm in using libvirt to connect esx server
hi, I am a new user of libvirt ,i really appreciate libvirt?and want to use it in my work.I want to use it to conncet to a ESXi server.when I try to connect to the server ,I use the command :virsh -c esx://name at exmaple.com,And I get an 1.error :error: internal error curl_easy_perform() returned an error: Couldn't connect to server (7) : couldn't connect to host so I think maybe
2012 Mar 23
3
[LLVMdev] Function Pass Manager
Hi, I'm writing a function pass which is dynamically loaded by opt and I need some analysis and passes to be run before my pass: virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<LoopInfo>(); AU.addPreserved<LoopInfo>(); AU.addRequiredID(LoopSimplifyID); AU.addPreservedID(LoopSimplifyID);
2009 Dec 15
0
[LLVMdev] Running a pass
Juan Carlos Martinez Santos wrote: > Hello LLVM, > > I am following the document "Writing an LLVM Pass". When I ran "opt > -load ../../../Debug/lib/MyPass.so -mypass < hello.bc > /dev/null" I > got the next error: > > ***@ubuntu:~/test$ opt -load ../../llvm/Debug/lib/MyPass.so -mypass < > hello.bc > /dev/null > opt: Pass.cpp:159:
2018 Jan 29
0
Polly Dependency Analysis in MyPass
How do you compile the code? Within the Polly subdirectory using CMake? How do you run your pass. Using "opt -mypass inputfile.ll"? Michael 2018-01-28 9:30 GMT-06:00 hameeza ahmed via llvm-dev <llvm-dev at lists.llvm.org>: > Hello, > > I need to analyze dependencies in my llvm ir by using polly. i created a new > pass called mypass there i added polly dependency
2008 May 05
2
[LLVMdev] debugging LLVM generated executables???
Hi everyone, I have a question that seems simple, but has been confounding me for several hours. I'd like to debug a binary produced with LLVM. For the life of me, I can't get any symbols into gdb and llvm-db won't even start the program nor load any useful information about it. Here's my current strategy (which isn't working): llvm-gcc -g -O0 -c -emit-llvm
2012 Apr 12
0
[LLVMdev] Function Pass Manager
Hi again, I come back to this issue with an example. It's a pass which does nothing but throw the 'Unable to schedule' error. namespace { struct MyPass : public FunctionPass { static char ID; // Pass identification, replacement for typeid MyPass() : FunctionPass(ID) { initializeMyPassPass(*PassRegistry::getPassRegistry()); } virtual void
2011 Nov 21
5
[LLVMdev] Fwd: Problem getting LoopInfo inside non-LoopPass
I would have thought this would have been possible. On Thu, Nov 17, 2011 at 3:49 PM, Ryan Taylor <ryta1203 at gmail.com> wrote: > So is this simply not possible? > > > On Thu, Nov 17, 2011 at 10:31 AM, Ryan Taylor <ryta1203 at gmail.com> wrote: > >> Nick, >> >> Thanks for this info, though this didn't help my problem at all. >> >>
2008 May 06
2
[LLVMdev] debugging LLVM generated executables???
I think you probably need to pass -O0 to llvm-ld. The link-time optimizations are probably killing your debug info. --Owen On May 5, 2008, at 8:21 PM, Mark Oskin wrote: > Hi everyone again, > > I did discover the following works (see below). However, does anyone > know of the "proper" way with LLVM? > > llvm-gcc -g -c -emit-llvm helloworld.c > opt
2018 Jun 25
2
How to include a opt pass in clang driver
Hello, I have written a pass for the IR and I can run it with opt -load lib/LLVMMyPass.so -mypass -myarguments -S -o output.ll < output.bc I have registered my pass with the following code: static RegisterPass<MyPass> X("mypass", "MyPass Pass (with getAnalysisUsage implemented)"); How do I include the same pass in the clang driver. I tried running the pass: clang