similar to: Samba + LDAP + TLS

Displaying 20 results from an estimated 400 matches similar to: "Samba + LDAP + TLS"

2005 Nov 04
2
Samba PDC + OpenLDAP replica
Hi! I would like to ask you Samba gurus if it is possible to set up Samba PDC which uses OpenLDAP replica as backend. I had two separate OpenLDAP master servers (2.2.13-4) for two different Samba PDC servers (3.0.14a-2) with TLS support in different virtual networks (VLANs), and all worked fine. However, I decided that it would be nice (from an administrative point of view) to have all
2007 Sep 21
1
mysql-proxy vs. acts_as_readonlyable vs. ?
I have replicated my db (mysql) and have hit roadblocks with both mysql-proxy and with acts_as_readonlyable . Firstly, is there something else I should be using? What would be the advantages of mysql-proxy over in-rails solutions? One is that it keeps the rails config and code simpler, puts the db redirection (kinda) where it should be, at the (kinda) db layer of the architecture. Has anyone
2005 Jan 10
2
Samba and Kerberos V
Hi, this is possibly a FAQ, but I couldn't find an answer to it so far, neither in the "Official HOWTO" nor somewhere else. Does Samba have native Kerberos V support, i.e. is it possible to authenticate against a (Heimdal, in our case) kdc? Hints are appreciated! TIA, Jukka -- bashian roulette: $ ((RANDOM%6)) || rm -rf ~
2005 Oct 07
3
panel data unit root tests
Hi, The question is as follows: has anyone coded panel data unit root tests with R? Even the "first generation" tests (see e.g. Levin & Lin 1993; Pesaran, & Smith & Im 1996; Maddala & Wu 1999) would be sufficient for my needs. To my understanding, these are rather easy to code, but as I have taken just my first steps in coding with R, existing code would save me
2020 Jun 05
2
Ticket 46201 - Missing LLVM NOTICE file is making redistributing LLVM difficult
Hello all, I was asked to bring attention to this LLVM ticket to the mailing list: https://bugs.llvm.org/show_bug.cgi?id=46201 - Missing LLVM NOTICE file is making redistributing LLVM difficult. It was recently noted by our legal review in release management that LLVM third-party licenses are scattered over different files, which complicates faithful license-preserving redistribution of LLVM to
2010 Sep 07
2
Plotting longitudinal data
Hello, Hope that someone could help me plotting longitudinal data below: 7213 3333330001 0.8300 13.05.09 1 1 3333330001 0.8700 09.02.05 NULL 4797 3333330001 0.7700 21.03.07 NULL 2399 3333330001 0.7800 12.04.06 NULL 2400 3333330002 NULL 27.03.06 NULL 7230 3333330002 0.8200 14.05.09 0 2 3333330002 0.8400 09.02.05 NULL 4798 3333330002 0.8700 20.03.07 0 4799 3333330003 0.9000 20.03.07 13 2401
2010 Dec 31
2
Class "coef.mer" into a data.frame?
Hello, Could somebody please tell me what am I doing wrong in following? I try extract coefficients (using arm-package) from the lmer frunction, but I get the following warning: a<-data.frame(coef(res)) Error in as.data.frame.default(x[[i]], optional = TRUE, stringsAsFactors = stringsAsFactors) : cannot coerce class "coef.mer" into a data.fram I think I have done it before
2007 May 16
2
read.table opening a website incl Password
Dear all, in the past I have been able to access websites with data directly. For example the following code works nicely mydata <- read.table("http://www.lifetable.de/data/MPIDR/POL_2004.txt", header=TRUE) But what happens if I need a username and password (a different site)? How do I do that? Or is it not possible to this in R? I tried something like this mydata.frame <-
2006 Jan 06
2
panel data unit root tests
When finally got some time to do some coding, I started and stopped right after. The stationary test is a good starting point because it demonstrates how we should be able to move the very basic R matrices. I have a real- world small N data set with rows: id(n=1)---t1---variable1 ... id=(N=20)---T=21---variable1 Thus, a good test case. For first id I was considering something like this: lag
2014 Mar 22
3
SCTP support for the common openssh source?
Greetings, Are there any plans to import SCTP support to OpenSSH? There have been SCTP patches for OSX and FreeBSD, and those seem to work pretty decently. I guess there might quite a number of potential users for SCTP were it part of the common source tree. A second benefit of having SCTP support as a standard feature in OpenSSH for all platforms supporting SCTP would be kind of social pressure
2010 Jul 02
9
Xen in Linux distributions
Hello, I have been using Xen for many years now. I have mainly used it on Ubuntu and Debian, but I have also tried it on CentOS 5. Most of my machines have been installed a few years back. Then there seemed to be good packages for most distributions and a lot of nice examples on how to get it working. Now that I am trying to install a new server with the latest version of my favorite
2002 May 20
1
Compilation problem with samba2.2.4
Hello from Finland. I have couple problem to compile Samba 2.2.4 I need LDAP options, and when I run ./configure --with-ldapsam everything going ok, but when I run make It gives couple error messages, thats are below: Compiling passdb/pdb_ldap.c "passdb/pdb_ldap.c", line 76: undefined symbol: LDAP_OPT_X_TLS_HARD "passdb/pdb_ldap.c", line 96: undefined symbol: LDAP_OPT_SUCCESS
2003 May 22
2
authentication h323
Hi all, i want to use authentication in h323.conf. How can i use it ? In the h323.conf is writed : "If you wish to use Authentication you need to set the appropriate auth keyword above" Where and how i have to set this keyword ??? I've tried "auth=yes",but it does not work. Thanks for Help, Thomas.
2003 Jun 11
1
some sip questions
<P>I write the email again, cause the first one I have had problems while sending it. Here is the email again:</P> <P>Hi everybody,</P> <P>I'm starting with SIP and I wanted to ask some questions, perhaps silly ones, but I hope people can answer me! </P> <P>1) Which codecs may I use? I want the SIP phones to call to the PSTN above all, but I have two
2005 Jun 19
1
Speex development and manual out of sync.
Greetings, It seems that the last manual and the last reference document available from speex.org web site are seriously out of date (from 2003). This makes it hard and error prone to try using any more recent features of speex in new developments that might benefit from the undocumented new features. Are there more up-to-date documents at all? And if so, could someone put them to the web site?
2006 Jan 12
2
extract variables from linear model
Hi, I fitted a linear model: fit <- lm(y ~ a * b + c - 1 , na.action='na.omit') Now I want to extract only the a * b effects with confidence intervals. Of course, I can just add the coefficients by hand, but I think there should an easier way. I tried with predict.lm using the 'terms' argument, but I didn't manage to do it. Any hints are appreciated, best, joerg
2008 Jan 10
1
Fwd: multinomial regression for clustered data
Hello dear R-users, does any of you know a way to perform a multinomial regression with clustered data (i.e. repeated measurements)? I made the first analysis with Stata option vce cluster in the mlogit command but was looking for a similar functionality in R too... thanks all! niccolò [[alternative HTML version deleted]]
2006 Nov 10
3
Confidence interval for relative risk
The concrete problem is that I am refereeing a paper where a confidence interval is presented for the risk ratio and I do not find it credible. I show below my attempts to do this in R. The example is slightly changed from the authors'. I can obtain a confidence interval for the odds ratio from fisher.test of course === fisher.test example === > outcome <- matrix(c(500, 0, 500, 8),
2002 Sep 18
2
Abacus DOS problem Lock Selector
A lawyer in California is trying to change to linux. In CA, there are a number of programs required by the courts, and so far none are ported to linux at any price. His reason for wishing to change has to do with the fact that Microsoft now controls his access to his own files, and he finds this unacceptable. I tried one of his apps, an old DOS version of Abacus. Using the WINe with Redhat
2003 May 25
3
Tracking 4-stable rather than 4.8-stable
Hi, I would like to follow 4-stable on my FreeBSD box, and i can't fetch binaries from /stand/sysinstall. Can anyone help me? Here is how i did: 1) I installed 4.8-RELEASE from CD, 2) I used cvsup to upgrade. For this i used the stable-supfile as shown in the Handbook. => My OS version as shown by 'uname -a' and '/stand/sysinstall' is "4.8-STABLE". It