similar to: Missing patch for RODC user preloading

Displaying 20 results from an estimated 1000 matches similar to: "Missing patch for RODC user preloading"

2014 Aug 11
0
Samba4 subdomain delegation
Hi, we're planning a Samba 3 to Samba 4 upgrade, and we're quite happy with the tests we've done. Everything worked as expected, and I hope that the migration will be done without major issues (famous last words). But we're having some problems with subdomain delegation. Our setup is formed by the Samba server and a DNS server running Bind 9. The DNS server is used
2014 Apr 02
0
Error with samba-tool rodc preload
Hi everybody, I'm making a POC with samba4 RODC I had problem with preload command. Setup was a fresh 4.1.6 ADS install and a 4.1.6 RODC. All is working fine except account preload : root at smbrodc:~# samba-tool rodc preload m.brant --server=smbdc.gnutopya.local -U administrator Password for [GNUTOPYA\administrator]: Replicating DN CN=Mike BRANT,OU=Users,OU=Rouen,DC=gnutopya,DC=local
2006 Jun 20
4
Xen from backports on sarge not working
Hi, I've downloaded and installed the Xen packages from backports.org in a box with sarge, and it doesn't work. That's the short story. Now the long one :-) The problem is that I can't bring up the domUs. This is the error displayed when I try: ~# xm create -c chen.cfg Using config file "/etc/xen/chen.cfg". Error: Device 0 (vif) could not be connected. Hotplug
2013 Nov 19
1
Prepopulate *all* users to a samba4 RODC
I was hoping this would be simpler. I'd like to prepopulate an RODC with all users accounts that are permitted. But I can only pre-populate one at a time: samba-tool rodc preload (<SID>|<DN>|<accountname>) sles-shire:~ # samba-tool group listmembers 'Allowed RODC Password Replication Group - Shire' Allowed RODC Password Replication Group - Global WIN7-SHIRE$ bilbo
2006 May 24
1
Status of xen in Debian?
Hi, I'm new to the list. So, excuse me if I'm making a FAQ :-) What's the status of Xen in Debian? I know that there are Xen 3 packages available for sid, but what about sarge/etch? Are there packages also, even if only for Xen 2? I'd like to use it in a semi-production machine (which means that it's doing some work, even if it's not overly important) with sarge, and
2005 Nov 09
1
Problem with different case logins
Hi, we have a system (Debian sarge) that uses LDAP for user authentication, via pam. We also have virtual users by using a static userdb [1], using the directory structure /var/lib/dovecot/postoffice/%u (i.e., a directory under /var/lib/dovecot/postoffice with the name of the user). The directory /var/lib/dovecot/postoffice belongs to postoffice:mail. IMAP folders, indexes and stuff go here;
2017 Nov 30
2
Should Samba-tool RODC preload be run periodically?
On Thu, 2017-11-30 at 15:46 +0000, Andrej Gessel via samba wrote: > Hello Andrew, > > thank you for the answer. > > 1) User credentials need to be preloaded with samba-tool to be > automatically replicated later if they change, its correct? No, preloading just makes the first login faster. > 2) And if user try to login on RODC without preloaded credentials, this >
2017 Nov 28
2
Should Samba-tool RODC preload be run periodically?
On Wed, 2017-11-29 at 07:26 +1300, Andrew Bartlett via samba wrote: > On Tue, 2017-11-28 at 15:03 +0000, Andrej Gessel via samba wrote: > > Hello list, > > > > I run “samba-tool rodc preload” for multiple users. If one of this users change his password, should I repeat the preload call? (I suppose yes, I need to rerun) > > If I need to rerun samba-tool, can user login
2006 Jun 12
3
Ajax - preloading images
I could experiment to figure this out, but maybe the work has been done so I''m going to ask. Using Ajax, if I wanted to preload several (20) small (<1K) images, behind the scenes... would I... 1 - Queue the loading of the images with Ajax one at a time, asynchronously, and ignore the completion results. Would this result in the image being in the browser''s cache even if
2006 Mar 03
1
Dynamic JS updating / data-preloading using ajax
Hi all, I''m building an application which uses mostly ajax to update the sections of the page. Now I''ve come to some thoughts on how to make the ajax-handling more efficient / less buggy. Currently, when the page loads up, I start some "new Ajax.Updater"-stuff to fill some sections with content from the db. I also registered watchers which also start nearly the same
2015 May 15
2
Samba4 - RODC - Credentials caching
I looked all over the place, and cannot find current answer. I want to store passwords/password hashes on my RODC, so that when my DC (Windows) fails, my users can still connect using RODC. The current state that is described (by 3 years old docs) says its WIP, so I'm not sure what to expect? Also, in documentation there is no option, to allow for preloading whole group of users, is that
2006 Mar 09
16
Preloading child rows 2 levels deep?
I currently have 3 tables/models: 1) Clients, 2) Charges, and 3) Court_Dates. Clients 1..n Charges 1..n Court_Dates I am trying to find all clients that have a court_date on a certain day: something along the lines of (@client.charge.court_date.date == Date.today). I have had success preloading child rows using the :include parameter, but that only works with a parent and a child, or a
2006 May 16
0
Preloading models in Rails
Hi, I''m fairly new to rails and I need some advice on best practice. I''m working on an application that has a calendar section (I know, not another one of those!) and I was wondering, when is it best to query your database and when is it best to preload a model. In the calendar app the user will have a month view of entries and was wondering should I preload all the entries of
2006 Apr 20
1
multi level :includes for preloading objects from database
I am using :include => :assocation to preload data that I know will be used later in the UI over and over. However I have data like that that is an association of one of the associations. How would i preload that data too? e.g. grant has_many :people and person belongs_to :group I can''t include the :group association in a Grant.find because its not an association of grant,
2006 Apr 29
2
counter_caching clobbered when preloading association ?
Hi, I''m trying to use counter caching in a tree structure (in this case Bob Silva''s threaded list). This is the definition: class Folder < ActiveRecord::Base acts_as_threaded has_many :files end I would like each parent to have the total count of all the childrens member. So when inserting a new file I update the file_count following the parent_id through all the
2006 Feb 24
0
preloading children of child rows
I am working on a rails app to serve as the admin app for an existing java webapp. For this reason, I am constrained by the current database structure, which does not by any means conform to the ideal rails defaults. Anyway, I have the following models: class Provider... belongs_to: login class Login... has_and_belongs_to_many :demographics class Demograpics... ... Everyone has a
2009 Jul 28
1
WinHQ.org website - CSS preloading
Hi, I wasn't sure where to write this so thought I'd just put it in the forum. The WineHQ.org website is great, just I think pre-loading the hover images for the main menu section would make the site even better as it would no longer mean the hover images would need to be loaded when the mouse is hovered over them. I found a solution here:
2019 Jul 18
0
Re: Preloading shared library with libVirt
On Wed, Jul 17, 2019 at 13:33:08 -0500, Probir Roy wrote: > Hi, > > I am trying to preload two shared libraries while running Qemu using > libvirt. To preload the shared libraries I have added an environment > variable in the $domain.xml file with the following command: > > ``` > virt-xml generic --edit --confirm --qemu-commandline >
2009 Feb 19
1
ActiveRecord-2.2.2, association preloading, joins and order parameter weirdness
Hello RoR Groupies, I''m seeing some weird ActiveRecord-2.2.2 SQL generation when doing eager association/preloading and using joins and ordering by said join table. Here''s an example: class Photo < ActiveRecord::Base end class User < ActiveRecord::Base has_one :headshot, :class_name => "Photo" end class Mail < ActiveRecord::Base belongs_to :user end
2006 Apr 10
3
preloading child rows just a level deeper...
hiho. following problem. i have 3 tables in my database with each representing an object. lets say A belongs_to B belongs_to C. when i do my_a = A.find(:all) i can access B as my_a.b and C as my_a.b.c thats fine but rails querys the database each time i do that so is use my_a = A.find(:all, :include => :b) works fine for my_a.b but not for my_a.b.c so i tried my_a = A.find(:all, :include