Displaying 20 results from an estimated 170 matches similar to: "Difficulty in creating and adding principal using net utility"
2004 Oct 25
0
My 'net ads keytab' can't write to keytab in samba 3.0.6
Hello,
I'm trying to authenticate all our linux machines to our ADS domain. As of now, I'm still in the process of setting up all the individual components before pushing the setup out. I've made quite a bit of progress, but I've hit a hitch when trying to add the machine's service principals (the 'host' primary specifically) to its keytab.
I've searched, but I
2007 Mar 20
1
Bizzare behaviour of Samba+ADS - help needed
I have samba+ads working fine *HOWEVER* when I run net ads keytab create
it fails.
Using -d 10 the debug output says it cannot write to the file. This is
truly bizarre as I am running this as root!
e.g.
# /usr/local/opt/samba/samba-3.0.24/bin/net ads keytab create ; echo $?
183
And
/usr/local/opt/samba/samba-3.0.24/bin/net -d 10 ads keytab create ; echo
$?
Gives
[..snip..]
ads_get_kvno:
2006 Jul 13
2
Kerberos Keytab Code Update in 3.0.23
First thing - I'd like to say a big "THANK YOU" to the developers.
I just upgraded to samba-3.0.23 and I've noticed an alarming issue with
respect to my configuration.
I've been using the built-in keytab management and it looks like the updated
code no longer creates the userPrincipal in Active Directory.
Whether this is an issue for others or not, it would be nice to have
2004 Oct 27
0
solved: My 'net ads keytab' can't write to keytab in samba 3.0.6
Hello.
I recompiled from the samba.org 3.0.7 SRPMs and it worked like a charm. I think the problem may have been that I was using RHEL3's 3.0.6 samba RPMs which depended on their own krb5-libs, and I used kerberos rpms that don't use e2fsprogs's libcom_err.
Anyone privilaged enough to be using RHEL3 to integrate their linux machines into ADS may want to rebuild anything depending on
2009 May 11
2
Solaris 10 (sparc) and samba issue
The net ads joins the host to the AD, but cant get the proper kerberos
tix. Manually generating the kerberos keytab from AD dont work. Any
suggestions?
root@host /#head -1 /etc/release
Solaris 10 10/08 s10s_u6wos_07b SPARC
root@host /usr/sfw/sbin#./smbd -V
Version 3.0.28
root@host /#for PKG in `pkginfo -x | grep -i samba | awk '{print
$1}'`; do VER=`pkginfo -l ${PKG} | grep PSTAMP`;
2009 Feb 16
1
samba-3.2.8 - KRB5_KT_UNKNOWN_TYPE;
When "use kerberos keytab = yes" in smb.conf is set with samba-3.2.8 and
the environment variable KRB5_KTNAME is not set with the value using
prefix "FILE:" or the default_keytab in /etc/krb5.conf is set without
the prefix i.e.
default_keytab_name = /etc/v5srvtab
then the function smb_krb5_open_keytab() returns KRB5_KT_UNKNOWN_TYPE.
If smb_krb5_open_keytab with a
2017 Apr 05
0
Key table name malformed
Hoi Louis,
The thing is that the keytab is not generated! That is the issue at
hand. The join appears to have succeeded:
> root at processing:~# net ads testjoin
> Join is OK
> root at processing:~#
However no keytab is generated during join, despite having in the domain
member smb.conf:
> dedicated keytab file = /etc/krb5.keytab
> kerberos method = secrets and keytab
And the
2007 Dec 04
0
keytab file issues
I am trying to join a samba server and have the keytab file set. After
joining there was no keytab file so I ran the command:
/usr/sfw/sbin/net ads keytab add host -d 10
This was the result:
[2007/12/04 21:40:09, 5] lib/debug.c:(391)
INFO: Current debug levels:
all: True/10
tdb: False/0
printdrivers: False/0
lanman: False/0
smb: False/0
rpc_parse: False/0
2017 Apr 04
4
Key table name malformed
Hi,
We are having an issue, trying to install a domain member server.
I'm following the samba wiki:
- samba 4.6.1
- krb5.conf as recommended on wiki
- time synced
- kinit works
- dns works (DCs in resolv.conf)
- setup a basic smb.conf (pasted at the end of this email)
- edit nsswitch.conf to include winbind for passwd/group
and then finally "net ads join -U administrator -d5" fails
2005 Jun 13
4
Kerberos enc type [xx] failed
Hi All,
I am getting Kerberos "enc type" problem that I can't explain:
[2005/06/11 11:41:29, 1, pid=29355]
libads/kerberos_verify.c:ads_keytab_verify_ticket(61)
ads_keytab_verify_ticket: krb5_kt_start_seq_get failed (No such file
or directory)
[2005/06/11 11:41:29, 3, pid=29355]
libads/kerberos_verify.c:ads_secrets_verify_ticket(193)
ads_secrets_verify_ticket: enc type [16]
2017 Apr 05
4
Key table name malformed
Hai Mourik-Jan,
This looks all good.
Only one thing in the config, you can remove :
winbind nss info = rfc2307
Since your alread set ( for 4.6.x) :
idmap config INTECH:unix_nss_info = yes
Can you check the content of the keytab? klist -ke /etc/krb5.keytab
post ( if needed anonymized ) the content you see.
run : net ads keytab list -UAdministrator
And did you by accident run : net ads
2004 Jun 30
0
Principal Surface function help
Dear All
Do you know some functions that can perform
the PRINCIPAL SURFACE estimation?
Please give me a hint.
Thanks for your help in advance.
Fred
[[alternative HTML version deleted]]
2009 Oct 09
0
ntlm_auth, universal principal name, multi-domain active directory - can samba authenticate?
I posted a similar message on the freeradius list a few months ago and it
was suggested I come here. Now that this effort is once again underway I am
looking for some assistance.
We are trying to replace our existing AAA solution with FreeRadius. The
user base is contained in an Active Directory single forest-multi domain
model.
The only feature of samba that we need to leverage is the
2006 Feb 27
1
question about Principal Component Analysis in R?
Hi all,
I am wondering in R, suppose I did the principal component analysis on
training data set and obtain the rotation matrix, via:
> pca=prcomp(training_data, center=TRUE, scale=FALSE, retx=TRUE);
Then I want to rotate the test data set using the
> d1=scale(test_data, center=TRUE, scale=FALSE) %*% pca$rotation;
> d2=predict(pca, test_data, center=TRUE, scale=FALSE);
these two
2003 Feb 27
0
spatial evolution and variance after rotation of Principal components
Dear R users,
I have been doing rotation on Principal components analyse, with varimax
function and promax. Following those changes, I cannot find now how to get
the spatial evolution and the variance. Indeed, with the function princomp
that has been used to get the principal components, arguments such as $scores
and $sdev were available to get the spatial evolution and the variance, with
2009 Apr 03
1
Weighted principal components analysis?
Hello R-ers,
I'm trying to do a weighted principal components analysis. I couldn't find any such option with princomp or prcomp. Does anyone know of a package or way to do this?
More specifically, the observations I'm working with are averages from populations of varying sizes. I thus need to weight the observations by sample size. Ideally I could apply these weights at the cell
2006 Apr 16
1
How to do varimax rotation for principal component based factor analysis, any packages?
Dear R users
the factanal pacakge is always MLE, which package can do varimax
rotation with the results from princomp ?
thank you
yong
2013 Dec 17
1
Polychoric Principal Component Analysis (pPCA)
I have data set with binary responses. I would like to
conduct polychoric principal component analysis (pPCA). I know there are several packages used in PCA but I could not find one that directly estimate pPCA and graph the individuals and variables maps. I will appreciate any help that expand these reproducible scripts.
#How to conduct polychoric principal component analysis pPCA using
#either
2006 Mar 30
0
Functional Principal Components Analysis
Hi,
I am interested in using functional principal component analysis (Functional
PCA). However, in the help of fda package, it does not have an example of
pca.fd function.
Does anyone have the example of pca.fd function?
Thank you very much.
Sincerely yours,
Nantachai
2011 Apr 01
1
principal components
HI all,
I am trying to compute the EOF of a matrix using prcomp but unable to get
the expansion co-efficients.
is it possible using prcomp or are there any other methods
thanks
nuncio
--
Nuncio.M
Research Scientist
National Center for Antarctic and Ocean research
Head land Sada
Vasco da Gamma
Goa-403804
[[alternative HTML version deleted]]