Displaying 7 results from an estimated 7 matches for "484b".
Did you mean:
484
2016 Dec 13
2
AD, 4.5.0, DRS or deletion question
...DSA object GUID: 20f711ed-cb02-4543-badb-28d3ed4c4ae1
Last attempt @ NTTIME(0) was successful
0 consecutive failure(s).
Last success @ NTTIME(0)
DC=ForestDnsZones,DC=ad,DC=domain,DC=tld
NTDS DN: CN=NTDS
Settings\0ADEL:9a4b7c54-ae49-484b-baaa-524621ddb52e,CN=DC208\0ADEL:107ed4a0-9197-469c-a3e0-d981d9e266b6,CN=Servers,CN=Authentification,CN=Sites,CN=Configuration,DC=ad,DC=infra,DC=dgfip
DSA object GUID: 9a4b7c54-ae49-484b-baaa-524621ddb52e
Last attempt @ Tue Dec 13 17:38:52 2016 CET failed, result
2 (...
2016 Dec 15
0
AD, 4.5.0, DRS or deletion question
...d-cb02-4543-badb-28d3ed4c4ae1
> Last attempt @ NTTIME(0) was successful
> 0 consecutive failure(s).
> Last success @ NTTIME(0)
>
> DC=ForestDnsZones,DC=ad,DC=domain,DC=tld
> NTDS DN: CN=NTDS Settings\0ADEL:9a4b7c54-ae49-
> 484b-baaa-524621ddb52e,CN=DC208\0ADEL:107ed4a0-9197-
> 469c-a3e0-d981d9e266b6,CN=Servers,CN=Authentification,
> CN=Sites,CN=Configuration,DC=ad,DC=infra,DC=dgfip
> DSA object GUID: 9a4b7c54-ae49-484b-baaa-524621ddb52e
> Last attempt @ Tue Dec 13 17:38:52 2016...
2016 Jul 04
0
Samba43 Kerberos problems
...rvicePrincipalName
# record 1
dn: CN=DC208,OU=Domain Controllers,DC=ad,DC=domain,DC=tld
servicePrincipalName: HOST/DC208
servicePrincipalName: HOST/dc208.ad.domain.tld
servicePrincipalName: GC/dc208.ad.domain.tld/ad.domain.tld
servicePrincipalName:
E3514235-4B06-11D1-AB04-00C04FC2DCD2/9a4b7c12-ae49-484b-
baaa-524621ddb52e/ad.domain.tld
servicePrincipalName: HOST/dc208.ad.domain.tld/AD
servicePrincipalName: ldap/dc208.ad.domain.tld/AD
servicePrincipalName: ldap/dc208.ad.domain.tld
servicePrincipalName: HOST/dc208.ad.domain.tld/ad.domain.tld
servicePrincipalName: ldap/dc208.ad.domain.tld/ad.domain....
2016 Jul 04
2
Samba43 Kerberos problems
> Hi,
>
> Try to add "rdns = false" in krb5.conf on SERVER1.
>
Hi Mathias,
Thanks for your reply I have tried that option but same issues. This is
getting worst now. Not sure what else to do, any other test/changes you
advise me to do? Right now I'm out of ideas.
>
> 2016-06-21 13:36 GMT+02:00 Juan Garcia <juan at ish.com.au
> <mailto:juan at
2007 Jun 21
0
Network issue in RHCS/GFS environment
...260k>
1 33 40 25 1 0| 0 52M| 35B 35B: 38M 41M: 874B 576k>
1 41 19 39 1 0| 0 59M|1293B 936B: 60M 54M: 462B 552k>
0 25 61 13 0 0| 0 42M| 35B 0 : 62M 62M: 575B 453k>
1 40 56 2 1 0| 0 56M| 0 35B: 41M 44M: 484B 400k>
1 39 52 7 1 0| 0 60M| 0 0 : 63M 59M: 442B 636k>
1 39 58 2 1 0| 0 57M| 35B 35B: 63M 63M: 638B 607k>
1 25 74 0 1 0| 0 38M| 0 0 : 56M 56M: 847B 221k>
1 37 60 2 1 0| 0 55M| 35B 0 : 44M 42M:1...
2007 Mar 22
2
Updating System Policy Templates
Hi all,
I am going to be in the process of updating my custom system policy
templates (probably within a month or two) and I am asking for what
policies anyone is in need of to help them deploy samba as a domain
controller.
Currently I basically have a single template.adm file, a few people have
asked me to separate them into a few different files that would serve an
overall single purpose - I
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.