similar to: Problems with NFS version 4 & Kerberos

Displaying 10 results from an estimated 10 matches similar to: "Problems with NFS version 4 & Kerberos"

2017 Oct 15
3
Problem with AD DC
Thank you for your reply. This was not a random link I followed. I have reviewed the Samba documentation at https://wiki.samba.org/index.php/Setting_up_Samba_as_an_Active_Directory_Domain_Controller, and all the testing that is listed there results in correct and expected answers... I had already noted the /etc/hosts situation, which interestingly does not change the answers I get in testing
2017 Oct 15
0
Problem with AD DC
On Sun, 15 Oct 2017 12:00:07 +0300 Ronald Vyhmeister via samba <samba at lists.samba.org> wrote: > I’ve just set up an AD DC on Ubuntu 16.04, using the instructions > found at > https://jimshaver.net/2016/05/30/setting-up-an-active-directory-domain-controller-using-samba-4-on-ubuntu-16-04/. > All the tests work fine. I’m able to connect from my Windows 10 box > when I connect
2011 Aug 26
1
Time Series data with data every half hour
I am working with data from the USGS with data every 30 minutes from 4/27/2011 to 8/25/2011. I am having trouble with setting the frequency. My R script is below: > shavers=read.csv("shavers.csv") > names(shavers) [1] "agency_cd" "site_no" "datetime" "tz_cd" "Temp" [6] "X04_00010_cd"
2017 Oct 15
2
Problem with AD DC
I’ve just set up an AD DC on Ubuntu 16.04, using the instructions found at https://jimshaver.net/2016/05/30/setting-up-an-active-directory-domain-controller-using-samba-4-on-ubuntu-16-04/. All the tests work fine. I’m able to connect from my Windows 10 box when I connect to \\servername <file://servername> (and authenticate as administrator). However, when I try to join the machine to the
2006 Aug 05
2
yield :layout, add extra content at controller level
Hi, Could someone point me in the right direction for specifying content at the controller level so that I could use something similar to "yield :left_nav_content" as well as "yield :layout" in my layouts? I know I can specifiy this content in my view using something like: <% content_for("left_nav_content") do %> <h1>Some Menu Options</h1>
2006 Jul 07
4
Controllers - model vs. use case centric
I am working on a reasonably large application (which happens to be my first with rails). I was hoping to get some input on organisation of controllers and actions. I am finding having used scaffolding more at the beginning my controllers tend to be very model centric, in that they mostly contain all the actions for management of that particular model, which may crash across multiple use
2007 Jan 24
2
Disable search match on model id
Hi, Given a numerical search term I want to avoid matching the model id as this has no real world significance when returned in the results (in this instance). For example the user may enter ''13'' when looking for a product code. Presently they will also get back the product that has id 13. I have tried: acts_as_ferret :fields => {:id => { :index => :no },
2006 Jul 07
2
Get controller''s module path
Hi, Given a controller such as Maintenance::ProductsController, is there a way to obtain the module section ''Maintenance'' within a view. I am planning to highlight the maintenance option from a common menu whenever a controller from the Maintenance module is used. Thanks, Andrew. -- Posted via http://www.ruby-forum.com/.
2006 Jun 13
1
AJAX based record deletion
Hi, New to RoR and I just wanted to check the correct process flow for this... I presently have a controller action: def destroy_category_association category = CatalogueCategory.find(params[:id]) product = Product.find(params[:product_id]) product.catalogue_categories.delete(category) end I display a list of categories assigned to a product, some of which I may wish to delete
2006 Jun 14
3
Prevent duplicate HABTM associations
Hi, I am trying to restrict duplicate has_and_belongs_to_many associations. I tried to find support for a association validation for duplicates but couldn''t find anything. I understand I could use :uniq=>true on the model association but this would only prevent it from displaying duplicates, I want to stop duplicate associations being inserted in the first place. I have a vague