search for: subprotocol

Displaying 10 results from an estimated 10 matches for "subprotocol".

2015 Mar 13
0
Certificates stop working after password change in legacy domain
...> someone give me a few pointers on where to start looking for a cause? Take a test system, and on an isolated network upgrade to a Samba AD DC. If you use Samba 4.2.0, this should then allow password changes. We have just completed a great deal of work on BackupKey, implementing both of the subprotocols, but while it could (I suppose, with non-trivial effort) be made to work in the Samba classic DC, with the secret keys stored in LDAP, that hasn't been done so far, and an AD upgrade will be easier and more reliable. Andrew Bartlett -- Andrew Bartlett http://samba.org...
2008 Mar 03
2
DO NOT REPLY [Bug 5301] New: rsync 3.0.0 copyright dates not updated to 2008
...t include 2008 :) Trivial patch: --- options.c.orig 2008-02-18 19:48:20.000000000 -0500 +++ options.c 2008-03-03 10:19:19.000000000 -0500 @@ -259,7 +259,7 @@ rprintf(f, "%s version %s protocol version %d%s\n", RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION, subprotocol); - rprintf(f, "Copyright (C) 1996-2007 by Andrew Tridgell, Wayne Davison, and others.\n"); + rprintf(f, "Copyright (C) 1996-2008 by Andrew Tridgell, Wayne Davison, and others.\n"); rprintf(f, "Web site: http://rsync.samba.org/\n"); rprintf(...
2013 May 14
1
PuppetDB Cannot Find Postgresql Driver
...change /etc/puppetdb/conf.d/config.ini - default - no change /etc/puppetdb/conf.d/jetty.ini - default - no change /etc/puppetdb/conf.d/repl.ini - default - no change ----------------------------------------------------- /etc/puppetdb/conf.d/database.ini: classname = org.postgresql.jdbcDriver subprotocol = postgresql subname = //localhost:5432/puppetdb username = puppetdb password = puppetdb gc-interval = 60 log-slow-statements = 10 ================================================= Postgresql Settings ================================================= psql -U puppetdb Password for user p...
2015 Mar 12
2
Certificates stop working after password change in legacy domain
Hi list, we have a problem with users that have personal certificates. When they change their password via the Ctrl-Alt-Del prompt, their personal certificates can no longer be used to authenticate. This happens with Windows 7 Professional joined to a Samba legacy domain. I've tested Samba 4.0.22 and 4.2.0 and they both show the same behaviour. When I leave the domain, and try it with
2013 Aug 21
11
Confusion with puppetdb (storeconfig) and query database
Hello, I have configured puppet and puppetdb (storeconfig) with postgresql and the service run and the collecting are good for example: I can make query with the next command and responds ok . [.........................] [root@master]# curl -X GET -H ''Accept: application/json'' http://127.0.0.1:8080/v2/facts --data-urlencode ''query=["=", "name",
2012 Nov 05
9
puppetdb postgresql Connection refused
Greetings, we are trying to setup puppetdb, nut our clients get the following error: Warning: Unable to fetch my node definition, but the agent run will continue: Warning: Error 400 on SERVER: Could not retrieve facts for lxa7t.unix.lan: Failed to submit ''replace facts'' command for lxa7t.unix.lan to PuppetDB at puppetdb:8081: Connection refused - connect(2) Info: Retrieving
2013 Jan 14
18
Puppetdb will setting gc-interval to 0 disable it
I have multiple puppetdb severs pointed at the same database. Would setting gc-interval to 0 disable it on the extra puppetdb nodes? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/4DEyx0IXbLsJ. To post to this group, send email to
2012 Dec 24
3
puppetdb listening on TCP Ports 1099 and 58772
PuppetDB is operating fine, but I can''t figure out how to disable it from listening globally on TCP 1099 or 58722 How do I disable them from listening globally without having to resort to iptables? $ lsof -i -n -P | grep java | grep LISTEN java 30115 puppetdb 22u IPv6 119118 0t0 TCP *:1099 (LISTEN) java 30115 puppetdb 23u IPv6 117236 0t0 TCP *:58772
2012 Jun 09
2
[patch] NFSv4/ZFS ACLs
...S - the parts that handle sending and receiving the ACL type used in the higher protocol version are compiled in unconditionally The remaining to-dos are: * autoconf integration * move platform-specific code from acl.c to lib/sysacls.c or a new file lib/sysnfs4acls.c ? * wasn't sure how to SUBPROTOCOL_VERSION worked so I've revved PROTOCOL_VERSION to 31 - if this is agreed we need to set all the code that references the higher protocol version to use the right number * rebase off HEAD fake-super support is done. I can work on the remaining to-dos but before proceeding further I wanted to...
2008 Feb 15
4
Revised flags patch
...reserve_devices = 0; int preserve_specials = 0; @@ -223,6 +224,7 @@ static void print_rsync_version(enum log char const *links = "no "; char const *iconv = "no "; char const *ipv6 = "no "; + char const *fileflags = "no "; STRUCT_STAT *dumstat; #if SUBPROTOCOL_VERSION != 0 @@ -252,6 +254,9 @@ static void print_rsync_version(enum log #ifdef ICONV_OPTION iconv = ""; #endif +#ifdef SUPPORT_FLAGS + fileflags = ""; +#endif rprintf(f, "%s version %s protocol version %d%s\n", RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION...