search for: trust_passwd

Displaying 6 results from an estimated 6 matches for "trust_passwd".

2003 Feb 04
1
Issues with Joining an NT4 Domain
...bin/pw deleteuser %u pam password change = yes I join the domain like this: # ./net join -U Administrator [2003/02/04 08:07:32, 1] rpc_client/cli_netlogon.c:cli_nt_setup_creds(300) cli_nt_setup_creds: auth2 challenge failed NT_STATUS_NO_TRUST_SAM_ACCOUNT [2003/02/04 08:07:32, 1] libsmb/trust_passwd.c:just_change_the_password(42) just_change_the_password: unable to setup creds (NT_STATUS_NO_TRUST_SAM_ACCOUNT)! [2003/02/04 08:07:32, 1] utils/net_rpc.c:run_rpc_command(154) rpc command function failed! (NT_STATUS_NO_TRUST_SAM_ACCOUNT) Joined domain QADOM. This, I think, is the root of the is...
2002 Feb 27
1
Possible big/small endian problem Samba 2.2.2 and 2.2.3a
...rver connect_to_domain_password_server: unable to setup the PDC credentials to machine NTPDC. Error was : NT_STATUS_ACCESS_DENIED. If I look at smbd/password.c connect_to_domain_password_server routine, it seems as we fail on the very last call: if (!NT_STATUS_IS_OK(cli_nt_setup_creds(pcli, trust_passwd))) { DEBUG(0,("connect_to_domain_password_server: unable to setup the PDC credentials to machine \ %s. Error was : %s.\n", remote_machine, cli_errstr(pcli))); cli_nt_session_close(pcli); cli_ulogoff(pcli); cli_shutdown(pcli); return(False); } I have about exhausted...
2002 Oct 17
1
Compile failure samba3.0alpha20
Hello, I've the following problem. I tried to compile samba3.0alpha20 with the ads support option. Before that I have installed kerberos5v1.2.6! What is wrong! Have anyone an answer, thanks! Compiling libsmb/trust_passwd.c Compiling libads/ldap.c Compiling libads/ldap_printer.c Compiling libads/sasl.c Compiling libads/krb5_setpw.c Compiling libads/kerberos.c libads/kerberos.c: In function `kerberos_kinit_password': libads/kerberos.c:80: warning: passing arg 6 of `krb5_get_init_creds_password' discards quali...
2003 Jun 05
0
server=domain does not work in samba3.0-alpha24
...administrator password: [2003/06/05 09:45:38, 1] utils/net_ads.c:ads_startup(160) ads_connect: Connection refused [2003/06/05 09:45:38, 1] rpc_client/cli_netlogon.c:cli_nt_setup_creds(300) cli_nt_setup_creds: auth2 challenge failed NT_STATUS_NO_TRUST_SAM_ACCOUNT [2003/06/05 09:45:38, 1] libsmb/trust_passwd.c:just_change_the_password(41) just_change_the_password: unable to setup creds (NT_STATUS_NO_TRUST_SAM_ACCOUNT)! [2003/06/05 09:45:38, 1] utils/net_rpc.c:run_rpc_command(154) rpc command function failed! (NT_STATUS_NO_TRUST_SAM_ACCOUNT) Joined domain IMAGERIE. [root@pelican samba]# smbclient -...
2003 Dec 01
0
No subject
...If I apply the patch below: -----<---------- --- password.c-orig Mon Sep 10 17:26:52 2001 +++ password.c Mon Sep 10 17:27:10 2001 @@ -1549,9 +1549,9 @@ /* * Get the machine account password for our primary domain */ - if (!secrets_fetch_trust_account_password(global_myworkgroup, trust_passwd, &last_change_time)) + if (!secrets_fetch_trust_account_password(domain, trust_passwd, &last_change_time)) { - DEBUG(0, ("domain_client_validate: could not fetch trust account password for domain %s\n", global_myworkgroup)); + DEBUG(0, ("domain_client_vali...
2003 Dec 01
0
No subject
...an NT_STATUS_INTERNAL_ERROR Here's where i've tracked the problem in the code: in winbindd_misc.c: The following function: enum winbindd_result winbindd_check_machine_acct( struct winbindd_cli_state *state) { //lines left out to save space if (!_get_trust_account_password(lp_workgroup(), trust_passwd, NULL)) { result = NT_STATUS_INTERNAL_ERROR; goto done; } _get_trust_account_password fails because of this line in that function: if (!(pass = secrets_fetch(trust_keystr(dos_domain), &size)) || size != sizeof(*pass)) return False; (I believe it's secrets_fetch that is failing,...