search for: sambaoptions

Displaying 20 results from an estimated 77 matches for "sambaoptions".

2015 Apr 01
2
Have options changed for "samba-tool domain provision"
Le 01/04/2015 17:42, Rowland Penny a ?crit : > On 01/04/15 15:49, Jean-Fran?ois Morcillo wrote: >> Hello, >> >> With the samba 4.1 serie, I used to use the command: >> samba-tool domain provision --adminpass='1GoodPasswd' --domain='TEST' >> --workgroup='TEST' --realm='test.fr' --use-xattr=yes --use-rfc2307 >>
2024 Jun 06
1
Failed to bind to uuid NT_STATUS_LOGON_FAILURE
...ind_provision_key_parameters > from samba.upgradehelpers import (get_paths, > get_ldbs, > update_machine_account_password) > > parser = optparse.OptionParser("chgtdcpass [options]") > sambaopts = options.SambaOptions(parser) > parser.add_option_group(sambaopts) > parser.add_option_group(options.VersionOptions(parser)) > credopts = options.CredentialsOptions(parser) > parser.add_option_group(credopts) > > opts = parser.parse_args()[0] > > lp = sambaopts.get_loadparm() > smbconf = lp....
2024 Jun 06
1
Failed to bind to uuid NT_STATUS_LOGON_FAILURE
...> > from samba.upgradehelpers import (get_paths, > > get_ldbs, > > update_machine_account_password) > > > > parser = optparse.OptionParser("chgtdcpass [options]") > > sambaopts = options.SambaOptions(parser) > > parser.add_option_group(sambaopts) > > parser.add_option_group(options.VersionOptions(parser)) > > credopts = options.CredentialsOptions(parser) > > parser.add_option_group(credopts) > > > > opts = parser.parse_args()[0] > > > > lp = samba...
2019 Apr 06
2
"00002020: Operation unavailable without authentication" using python-ldap
Hello, I'm writing in regards to this issue I opened on GitHub: https://github.com/python-ldap/python-ldap/issues/275 I am able to successfully use ldapsearch to query my Samba 4.9.4-Debian DC: ldapsearch -LLL -Y GSSAPI -H ldap://samba-dc.ad.example.com -b "dc=ad,dc=example,dc=com" "(objectClass=user)" "sAMAccountName" However, when I try to use python-ldap I
2024 Jun 06
1
Failed to bind to uuid NT_STATUS_LOGON_FAILURE
...from samba.provision import find_provision_key_parameters from samba.upgradehelpers import (get_paths, get_ldbs, update_machine_account_password) parser = optparse.OptionParser("chgtdcpass [options]") sambaopts = options.SambaOptions(parser) parser.add_option_group(sambaopts) parser.add_option_group(options.VersionOptions(parser)) credopts = options.CredentialsOptions(parser) parser.add_option_group(credopts) opts = parser.parse_args()[0] lp = sambaopts.get_loadparm() smbconf = lp.configfile creds = credopts.get_credentials(l...
2015 Apr 10
0
Have options changed for "samba-tool domain provision"
...> > Hi, after a bit more investigation, can I ask the person that changed this: class cmd_domain_provision(Command): """Provision a domain.""" synopsis = "%prog [options]" takes_optiongroups = { "sambaopts": options.SambaOptions, "versionopts": options.VersionOptions, "credopts": options.CredentialsOptions, } To this: class cmd_domain_provision(Command): """Provision a domain.""" synopsis = "%prog [options]" takes_optiongr...
2019 Apr 06
0
"00002020: Operation unavailable without authentication" using python-ldap
...quot;%prog [options]" takes_options = [ Option("-H", "--URL", help="LDB URL for database or target server", type=str, metavar="URL", dest="H"), ] takes_optiongroups = { "sambaopts": options.SambaOptions, "credopts": options.CredentialsOptions, "versionopts": options.VersionOptions, } def run(self, sambaopts=None, credopts=None, versionopts=None, H=None): lp = sambaopts.get_loadparm() creds = credopts.get_credentials(lp, fallback_machine=...
2010 May 26
1
Samba4 Patch: newuseradv and newgroupadv scripts for net cmd utlity
Hi all, As per Jelmer's request - in response to bug #7455 attached diff file. Please let me know what you think and if any modificationes need to be performed Regards Luk -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: newusergroupadv.diff URL:
2024 Jun 06
1
Failed to bind to uuid NT_STATUS_LOGON_FAILURE
....upgradehelpers import (get_paths, >> > get_ldbs, >> > update_machine_account_password) >> > >> > parser = optparse.OptionParser("chgtdcpass [options]") >> > sambaopts = options.SambaOptions(parser) >> > parser.add_option_group(sambaopts) >> > parser.add_option_group(options.VersionOptions(parser)) >> > credopts = options.CredentialsOptions(parser) >> > parser.add_option_group(credopts) >> > >> > opts = parser.parse_args()[0] >&g...
2024 Jun 30
1
Looking for Python docs/examples to modify DNS via keytab
On Sun, 30 Jun 2024 00:22:57 -0700 christian baltini <christian.baltini at gmail.com> wrote: > > This is the output I get: > > (venv) root at ubu1:~/py_krb# samba-tool dns zonelist localhost > --use-krb5-ccache=/tmp/krb5cc_0 Failed to bind to uuid > 50abc2a4-574d-40b3-9d66-ee4fd5fba076 for >
2024 Jun 05
1
Failed to bind to uuid NT_STATUS_LOGON_FAILURE
Add a 'private dir' to your smb.conf matching where your Samba packages are putting 'private'. Andrew Bartlett On Wed, 2024-06-05 at 17:13 +0300, Omnis ludis - games via samba wrote: > I tried to run with this command, but I get an error./chgtdcpass -- > configfile=/opt/samba/etc/smb.confmodule samba_dsdb initialization > failed : No such objectUnable to load modules for
2019 Feb 25
3
samba-tool provision error
Hi friends:  I try provisioning my new samba 4.9.4  with AD-DC capability, after compiling and install my new samba4 and try to provisioning my samba, I get this error: # samba-tool domain provision --interactive ERROR(runtime): uncaught exception - Unable to load default file   File "/usr/lib64/python2.7/site-packages/samba/netcmd/__init__.py", line 176, in _run     return
2024 Jun 29
1
Looking for Python docs/examples to modify DNS via keytab
On 6/28/24 10:07 PM, christian baltini via samba wrote: > Hello all, > > I am looking to rewrite the shell script here (https://wiki.samba.org/index.php/Configure_DHCP_to_update_DNS_records) in Python. > > Is anyone aware of any resources (docs, existing code, etc.) that may be useful in doing so? I?m not finding any introductory docs or simple code examples that show things like
2016 Jul 07
4
FSMO Transfer fail
Fail! :-( root at gteste2:~# samba-tool fsmo transfer --role=all -UAdministrador FSMO transfer of 'rid' role successful FSMO transfer of 'pdc' role successful FSMO transfer of 'naming' role successful FSMO transfer of 'infrastructure' role successful FSMO transfer of 'schema' role successful ERROR(<type 'exceptions.UnboundLocalError'>):
2019 Apr 02
2
samba 4.10.0 - problem with samba-tool domain provision
Hi, I am currently installing Samba 4.10.0 on a CentOS7 test system facing problems with the provisioning of AD. I built samba from source; configure/make/make install finished successfully. When running the "samba-tool domain provision" command I get the following error messages: [root at geo22 ~]# samba-tool domain provision --use-rfc2307 --interactive WARNING: Ignoring invalid value
2019 Apr 07
2
"00002020: Operation unavailable without authentication" using python-ldap
...kes_options = [ > Option("-H", "--URL", help="LDB URL for database or target > server", type=str, > metavar="URL", dest="H"), > ] > > takes_optiongroups = { > "sambaopts": options.SambaOptions, > "credopts": options.CredentialsOptions, > "versionopts": options.VersionOptions, > } > > def run(self, sambaopts=None, credopts=None, versionopts=None, H=None): > lp = sambaopts.get_loadparm() > creds = credopts.get...
2017 Jan 27
3
LDAP_INSUFFICIENT_ACCESS_RIGHTS error stops FSMO transfer
Attempting to move FSMO roles from one SerNET Samba 4.5.4 DC to another, all roles transfered except the DNS related ones - those fail with an LDAP_INSUFFICIENT_ACCESS_RIGHTS [root at larkin28 ~]# samba-tool fsmo show SchemaMasterRole owner: CN=NTDS Settings,CN=LARKIN28,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=micore,DC=us InfrastructureMasterRole owner: CN=NTDS
2023 Jan 12
1
problems with sysvol after fsmo transfer
Am 12.01.23 um 12:25 schrieb Rowland Penny via samba: > > On 12/01/2023 10:53, Thorsten Marquardt via samba wrote: >> Thank you so far. But unfortunately I could not fix the problems. So I >> decided to start over again at a situation where all the fsmo roles >> resides on the old controller. >> >> Here is a transcript of what I did and the errors reported:
2016 Jul 07
1
FSMO Transfer fail
Hi. root at gteste2:~# root at gteste2:~# samba-tool fsmo transfer --role=all -UAdministrador --password=####### This DC already has the 'rid' FSMO role This DC already has the 'pdc' FSMO role This DC already has the 'naming' FSMO role This DC already has the 'infrastructure' FSMO role This DC already has the 'schema' FSMO role ERROR(<type
2020 Sep 29
2
No Samba NT DOMAIN Name found exitting now...
...d; > vendor preset: enabled) > Active: failed (Result: timeout) since Tue 2020-09-29 06:25:00 CDT; 2h > 17min ago > Docs: man:samba(8) > man:samba(7) > man:smb.conf(5) > Process: 407 ExecStart=/usr/sbin/samba --foreground --no-process-group > $SAMBAOPTIONS (code=exited, status=127) > Main PID: 407 (code=exited, status=127) > > Sep 29 06:23:33 dc2 systemd[1]: samba-ad-dc.service: Got notification > message from PID 445, but reception only permitted for mai > Sep 29 06:23:33 dc2 smbd[445]: daemon_ready: daemon 'smbd' finished...