Removing cluster node what happens to the created pools from thatnode

Hi all,
Reading through the documentation I stumble on:
10.2 Considerations for Working with Shared NSS Pools and Volumes in
the Cluster
To create or modify volumes, home directories, Distributed File
Services junctions, or any other elements that are managed using
eDirectory objects, you must cluster migrate the pool resource back to
the node where it was created before you perform those management tasks.
What does this mean when I removed the node from the cluster? Can I no
longer manage the resource??
regards
KB

I have researched the issue with testing and have an update for you.
There were at least three bugs filed in the past where this problem was reported:
- Bug 77248 - Split/Move / NW65SP3 FCS / NCS - Vol Split only works when the target volume is on the original serv
- Bug 413213 - after migrated NSS pool, getting error when creating volume on that pool
- Bug 444644 - OES2 SP1 BUILD GMC3: Not able to create the user home directory on the cluster enabled volume
What I have learned from working with testing is that the problem occurs only if the server, pool, volume, and cluster objects are in different contexts. The recommended configuration is that they be in the same context, which is why most admins never see the problem. If the objects are in different contexts, eDirectory might not be able to find the information needed to perform the operation and you get an eDirectory error. Whether or not you might run in to this issue depends on how you have set up a cluster and whether you attempt to modify or perform management actions on the pool or volume later that involve an eDirectory object in a different context.
In light of this new information, I am updating the Novell Cluster Services Administration Guide with the following statement. This guide will be re-published the week of August 2, 2010.
10.2 Considerations for Working with Shared NSS Pools and Volumes in the Cluster
http://www.novell.com/documentation/...a/bffygy4.html
The Server, Pool, Volume, Cluster Resource, and Cluster objects should all be all in the same context.
If the objects are in different contexts, you might receive an eDirectory error when you attempt to modify the pool, create or modify the volumes, home directories, Distributed File Services junctions, or any other elements that are managed using eDirectory objects. To resolve the problem, you must cluster migrate the pool cluster resource back to the node where the pool was created in order to perform those management tasks.

Similar Messages

  • What happened to the "Create New Mp3 Version" option in iTunes 11.2.2?

    I tried going into the file encoder in Edit>Preferences>General>Import Options because there is usually an option that I can set it to that will allow me to make an mp3 copy of any song (purchased or copied off of a CD), but I see now that it does not work any more and I'm completely clueless as to why. I've been searching the threads but they have been no help. I've looked at the outdated support page, which says to do exactly the thing that no longer works for me. Can anyone help me? I'm using Win8 and would prefer not to use any converters outside of iTunes. Thank you!

    Okay, for some reason, I tried this yesterday at least six times and it did not even change the settings. Today, I went into the Import Settings and changed it to mp3 encoder, hit 'OK', then hit 'OK' in the preference menu (same thing I did yesterday) and it suddenly decided to show up. That was weird... Sorry, but thanks for writing anyway. I don't know what happened...

  • Missing iPhone backup in iTunes from iOS5 update. What happens to the backup files from the update process?

    My PC had a BSOD while restoring my data.  After I restarted, opened iTunes, and connected my phone, the restore did not resume. (I have seen the restore process resume after an interruption.)  I tried to manually restore the data, but iTunes does not list the backup that was taken during the update process.  Is this backup stored in a different location or format?  Is there a way I can get my data back?  I tried an extraction tool from the web and it didn't detect the backup from the update.

    Same with me; I only found one backup dating back from august; tried that and works fine. But missing all my pics/vids in between. I have been searching my pc for files that were created on the day of the OS upgrade, but could not figure out any backups...
    Any help?
    iPhone 4, Windows 7

  • What happened to the special effects from the old iMovie (Smoke, Rain, etc.) It's not on the new version and I need/want it!

    I remember older versions of iMovie having special video effects like smoke, lightning, and rain. Where are they hiding in the new version? If they are no longer included is there a download or work around? I need them for a school project I'm helping my 11 year old with.

    Workaround? I did these effects on my iPhone and then imported to my Mac for editing. I have lightning, but no smoke or rain. I used an iPhone App called Action Movie.

  • What happened to the Line Tool {from Elements 4}

    I have upgraded? From Photoshop Elements 4 to Photoshop Elements 12. Now running on a new Mac Mini. OS-X 10.8.5
    I used Elements 4 - 99% of the time, to add text comments, and then Draw a line with arrows at the beginning or end of the line. {to point very specific things in the photo out to others}. With that tool in PSE4 - I could define the width of the line and its color - as well as add Arrowheads to either end of the line.
    Opening and looking/learning Photoshop Elements 12 - - I can't find the Line Tool. Please don't tell me I just paid an upgrade fee - to lose the one tool I used most!
    Help!
    CarlB

    Click the custom shape tool:
    and you'll see the other shape tools in the tool options area:

  • What happened to the MMS topic from earlier today?

    Isn't this a public forum for people to discuss stuff? The topic from earlier today is gone. Why did it get deleted? I think it's important for everyone to understand the importance of such basic cell phone functions...it might actually sway someone's purchase as they would just assume a phone of such perceived caliber would have such basic cell phone functions when in fact it lacks a lot of basic cell phone functions. I'm just assuming this will get deleted as well, because god forgive we actually discuss stuff that matters to consumers.

    I had a post deleted yesterday. It wasnt offensive or anything. It went like this...
    The discussion was about MMS, and a poster said.... "Why would you want to send MMS at a cost of $0.50 when you can just email?".
    To which i replied... "So i guess you never send texts then? why would you want to send texts at 0.15p, when you can just email? the answer is convenience".
    When i looked later the same day, my post had been deleted!!
    Strange...

  • E4X: What happens to the root element?

    I'm working with XML using the E4X notation. I'm used to the "old school" XML APIs that use DOM and I'm a bit confused.
    For example, let's consider the following XML
    <mx:XML id="myXML" >
      <top>
        <sub1 id="uno">
          <sub2>hello</sub2>
          <sub3>world</sub3>
        </sub1>
        <sub1 id="duo">
          <sub2>ok</sub2>
          <sub3>ko</sub3>
        </sub1>
      </top>
    </mx:XML>
    In my code I use the following traces. This is done with the De MonsterDebugger, but all others should work the same way. I have casted the traces to String only to make it easier to ask this question (no need post images)
    MonsterDebugger.trace(this, "myXML:" + myXML);
    MonsterDebugger.trace(this, "myXML.sub1: " + myXML.sub1);
    MonsterDebugger.trace(this, "myXML.sub1.sub2: " + myXML.sub1.sub2);
    What I get as output is
    (String) = myXML:<top>
      <sub1 id="uno">
        <sub2>hello</sub2>
        <sub3>world</sub3>
      </sub1>
      <sub1 id="duo">
        <sub2>ok</sub2>
        <sub3>ko</sub3>
      </sub1>
    </top>
    (String) = myXML.sub1: <sub1 id="uno">
      <sub2>hello</sub2>
      <sub3>world</sub3>
    </sub1>
    <sub1 id="duo">
      <sub2>ok</sub2>
      <sub3>ko</sub3>
    </sub1>
    (String) = myXML.sub1.sub2: <sub2>hello</sub2>
    <sub2>ok</sub2>
    All is fine above and this was a bit long abstract for my question. The question is what happens to the root element, in this case <top>? I was trying to access the data with the following notation
    myXML.top.sub1; // etc
    I spent quite a lot of time trying to get it to work, until I discovered that the root element is not used. Can anyone explain this?
    Or, I guess the simple explanation is that the root node is ignored and the sub nodes are created as properties of the object. The question also could be stated as: Why isn't this documented in the Flex API Reference?
    Thanks.
    P.S. I found this article on common E4X pitfalls which also has other interesting topics when working with E4X.

    its gone
    downgrading would kill the phone..

  • VDI3: what happens when the Primary VDI core fails?

    A potential customer asked me this and I did not really know how to answer the question ... sorry if this was asked before. So here we go:
    What happens when and if the Primary VDI core fails? Will the entire VDI3 setup go down? Will running sessions be lost? And how do you fix that?
    I found this page:
    http://wikis.sun.com/display/VDI3/MySQL+Cluster+Reconfiguration+Scenarios
    So I assume the "Non-VDI host ==> Primary Management Host" scenario is what would need to be done?
    http://wikis.sun.com/display/VDI3/MySQL+Cluster+Reconfiguration+Scenarios#MySQLClusterReconfigurationScenarios-NonVdiToPrimary
    If this is correct then this would answer the "how do you fix that?" part. OK then.
    But still I'd welcome if anyone could explain what exactly would happen when and if a Primary VDI core fails. The customer's opinion on this is that they are a "single point of failure" because the Primary VDI host is not redundant (as opposed to the 2 x Secondary VDI cores) ... So, is this assumption correct or not?
    Thanks in advance.

    Hi,
    Assuming you have 3 VDI core hosts. One of them is the primary. And the primary goes down. So what happens then:
    * The underlying database is still running on the remaining hosts
    * All desktop sessions are still running on the remaining hosts
    * New session requests will be handled by the remaining hosts.
    * All desktops are still running on the virtualization hosts.
    So in essence, your VDI cluster is still healthy. The operation is just impacted in this way:
    * You can't add new VDI core hosts
    * You can't change the configuration of the Sun Ray server failover group
    * A failure of another VDI core host (data node) will result into a complete outage of the underlying database
    You should bring up the primary again as soon as possible in order to gain failover capabilities again.
    -Dirk

  • RI - What if Parent is refreshed - What happens to the constraints

    Hello
    I have a parent-child scenario. What happens if the parent table is completely refreshed? What happens to the child table (that has cascade delete)?
    If RI exists, will a complete refresh of parent be possible?
    What is the best way to handle this scenario?
    Thx!

    One of the quickest ways of identifying duplicate records in a table is to enable a unique (or primary key) constraint knowing ahead of time that it will choke on the duplicates, but using the EXCEPTIONS INTO EXCEPTIONS clause which will cause the rowids of the duplicates to be written into an EXCEPTIONS table (created ahead of time with the rdbms\admin\utlexcpt.sql script, for example).
    Therefore, imagine a million row table into which a fresh bulk load of another million rows from some external source is to be performed.
    You declare the constraint, you disable it, you perform the load, you enable it exceptions into exceptions. You now can clear out the duplicate data quite easily, and then enable the constraint normally. Next load, you disable the constraint all over again and repeat the process.
    That's one reason you might want to repeatedly disable/enable a constraint.
    Consider another: a unique or primary key constraint, by default, when created, will cause a unique index to be created on the table. Doing any sort of bulk load into a table, even of data you know to be 'clean' of duplicates, will be a lot slower as a result of each insert having to update the index. Therefore, one of the things you commonly do to speed up bulk loads is to disable constraints, therefore removing any associated unique indexes, and therefore saving the time that would normally be spent validating data and updating indexes.
    In the old days before they invented deferrable constraints, too, you might well be engaged in a complex data loading process that involves quite a few steps before finishing. If looked at during those steps, you'd say the data violated constraints... but if you just let me get to the end, you'll find that the data all comes good. So you had to be able to disable constraint checking at the start of the process, and re-enable it at the end. A good example of that is Scott's EMP table: it has a manager column and the data in that column refers to the EMPNO column. A manager has to be an employee, after all! So there's a self-referencing foreign key on that MGR column, which means you can't load a record containing a manager number that isn't already an employee. But if you were doing a bulk load of data into that table, starting with it completely empty, that would mean you'd never be able to load any data into it at all: no employees exist to begin with, so there are no managers, so the first employee record that mentions a manager gets rejected. But if only you'd let me do the initial load of data, you'd see that every manager mentioned DOES turn out to be an employee! At the end of the load, it all comes good, and everything is properly related to everything else.
    Short of being very careful about the order in which you load such data (presumably, you'd have to start with Mr King, who runs the company, then deal with the first lot of managers, and then you could load the clerks and salesmen), the simplest way of resolving that sort of Catch-22 is to disable the constraint, do the load, and then enable the constraint when all the data is in place and therefore all the relationships between records have come good.
    (As I say, since version 8.0 of Oracle, you can also defer the constraint so that it only gets checked at the point you commit all the data, but leaving that subtlety aside, it's still a classic example of where switching constraint checking on and off proves very useful).

  • What happened with the pagemaker trial?

    Hi, I'm trying to download the Adobe Pagemaker on my MAC and it's not working, can you guys help me or tell me why?
    Thanks

    I try that too but didn't open as well...???Do you think there's anyway you can send me the file?Thanks!
    Nany           <Removed by Moderator>
    Date: Fri, 8 Jun 2012 10:19:15 -0600
    From: [email protected]
    To: <removed by moderator>
    Subject: Re: What happened with the pagemaker trial? What happened with the pagemaker trial?
        Re: What happened with the pagemaker trial?
        created by Jeff A Wright in Trial Download & Install FAQ - View the full discussion
    This is a stuff-it archive.  You can locate a copy of Stuff-it Expander at http://www.stuffit.com/mac-expander.html#compare.  You can use this to open the sit file.
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: What happened with the pagemaker trial?
    To unsubscribe from this thread, please visit the message page at Re: What happened with the pagemaker trial?. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Trial Download & Install FAQ by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • What happened to the "lock" symbol that used to appear when on a secure site? I haven't seen it since the last update, so it's either moved or you took it out. I really miss it!

    What happened to the "lock" symbol that used to appear to signify that you were on a secure site? I haven't seen it since the previous update, so it's either moved & I haven't found it, or you took it out. If you did, I want it back!

    It's stuck on a yellow question marked "multimedia audio controller." It doesn't like the CD drivers or the drivers snarfed from the aborted "you don't have an sb controller installed" pull from windows\temp\CF whatever it was. It's 3am and I've been trying to get this stupid thing running for 7 hours now. I'm going to bed. I will see if it is any smarter tomorrow morning.
    It was running great until I did an "update from the web." If I hadn't have done that I'd have no complaints. Now it's hosed and I can't even get back to where I was before. I'm not impressed with creative's installation procedure.
    However, there are many people complaining about the "you don't have an SB installed" problem. Creative needs a "delete everything" button, and an "install all new drivers" button. Take a page out of ATI's book in the number of headaches created by windows installer and come up with a way to fix them yourself. ATI did. This would at least get me back to the BSOD, which right now I'm longing for.
    This is on a shuttle st6g4 with a disable ac97 sound nonsense with those drivers removed.

  • What happens to the open item in bsid table when it is cleared

    hi experts,
                   i have a doubt about open and cleared items of accounting documents. as we know open items of customers are stored in bsid and cleared ones in bsad. For suupose, an open item is closed ina particular period then what happened to the entry in bsid and bsad table. an entry regarding is stored in bsad (cleared),and what happens to the entry in bsid, still it will be there or removed from it.

    Hi,
    When ever we clear the document(Complete payment) that document will be moved to BSAD table. Other wise it will remain in BSID.
    If u are making partial payment then all the partial payment documents along with original document will be stored in BSID till u made the complete payment for that invoice.
    Assumption is u have to give all partial payment documents made for particular invoice item while u are making complete payment in F-28 transaction. So that these partail payment documents will also be cleared while making complete payment and moved to BSAD table.
    This trasaction can be used for both partial and complete payments.
    Irrespective of complete or partial payments made all the documents will remain stored in BKPF and BSEG tables.
    BSID and BSAD are index tables to address performance issues with BKPF and BSEG tables.
    So all open and cleared documents will be there in BKPF and BSEG tables.
    All cleared documents will be there in BSAD table.
    Alll open documents will be there in BSID table.
    Hope it is clear.
    Thanks,
    Vinod.

  • Just upgraded to 5 from 3 - what happened to the page select icon? Can't find it in customize toolbars.

    Used to be you could select which page you wished to go back or forward to from the arrow icons on the navigation toolbar. The history menu item only shows 10 sites without having to open history for today. What happened? Is there another icon or a new plug in for this functionality? I used it all the time.

    ''what happened to the page select icon (Back/Forward)''
    The back/forward buttons have been moved to right-hand side of the navigation bar and the drop-down was removed. User right-click or hold click for one second to see the tab history. This is item #5 in my list.
    The History menu also has "Open Previous session" and "Open closed windows",
    to see more history use the History sidebar ("Ctrl+H") or the History Library List ("Ctrl+Shift+H") and sort or view by "Last visited".
    You can make '''Firefox 5.0.1''' look like Firefox 3.6.19, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 5.0.1, or 4.0.1, look like 3.6.*)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface

  • What happens to the original photo after editing?  Does it get replaced by the edited photo?

    I just bought my first iPhone(5).  On Android, when editing a photo, the original stays in your gallery and the edited photo gets placed right next to it.  So what I want to know is, When editing a photo in the photo app, what happens to the original since it would be nice to be able to make different edits of it.

    That is an excellent question. This is definitely not the programmed behavior of Photoshop Elements. Normally, when you edit a file, a new copy of the file is created (the original is simply left alone). This new copy of the file will have "_edited-1" added to the end of the name. It should definitely not be adding $ to the name at all.
    Just as a test, create a new user account on your computer, and try editing another image to see if does the same thing there. However, I suspect there is another application on your computer that is modifying how files are saved, deleted, and renamed.

  • ISE - What happens when the on-boarded certificate expires?

    I'm trying to design a good BYOD deployment model but have a few questions that need direct answers.  I have down how to go about on-boarding and getting a certificate on a device, the ISE provides great flow for this to happen in many ways.  My questions come from a design perspective before and after the BYOD deployment is completed.
    1. Figuring out a method to validate the device is a Corporate asset or a BYOD asset.
         (I don't want to install a certificate on just any device, or perhaps I do but I need to give permissions to all resources if its a Corporate Device, and more resitrictions if it's BYOD, so how do I figure this out during the provisioning phase?)
         a. Use MDM (May not have one, or if you do we are still waiting on ISE 1.2 for that integration)
         b. Build a Group for provisioning admins, if user PEAP-MSCHAPv2 account is from this group install a certificate. (issue here is that the end user looses administration of the device in the my device portal as the device is now registered to the provisioning admin)
         c. Pre-populate MAC into ISE as all Corporate devices should be provisioned by I.T. before they go to the end user (I think this is good but can see push back from customers as they don't want to add more time to the process)
         d. Certs on any IOS or Android device, provide access based on user group and do not worry if device is Company asset or not (I believe that this is the easiest solution and seems to be what I find in the guides)
         e. Other options I have not thought about, would love input from the crowd
    2. What happens to the device once the Certificate expires?
         (I don't know the answer to this, my thought would be the user or device will fail during the authentication policy and this creates a mess)
         a. Tell the user to delete the profile so they can start all over again (creates help desk calls and frustrated users)
         b. Use MDM for Cert management (may not have one)
         c. Perhaps the client uses SCEP to renew based on the cert template renew policy and there are no issues (this is me wishing)
    Would appreciate some feed back and would like to know if anyone has run into these issues.                   

    Neno,
    Sorry but I don't have any other info on using a public CA, Cisco says to use internal CA's for PKI.  I think the best practice in 1.2 comes out will be to use one interface for Web Management and a different interface for Radius, profiling, posture, and on boarding.  This way you can use your private CA for EAP and a public CA for web traffic.  Have you tried a public CA bound to management and a private CA for EAP yet?
    I did do a session on EAP-TEAP, they explained how it will work and also discussed EAP-FASTv2.  EAP-FASTv2 is available now but you must use anyconnect as your supplicant.  Microsoft and all other vendors will have EAP-TEAP native once it is fully released and comissioned as it will be the new gold standard for EAP.  It will support TLS, MD5, and CHAPv2.  If you are interested I have the PDF of the presentation I attended that shows the flow of how EAP-TEAP will work.  This is much better than wasMachineAuthenticated and machine auth caching, which has many down falls.
    I currently do machine and user auth I just don't require them.  If Machine auth then allow machine on vlan-x with access to AD, DNS, and blah blah.  Then a seperate rule to say user auth gets more access, although I require EAP-TLS for both and if you think about it you are accomplishing the same thing if your PKI is setup correctly.  Make it so users and machines can only auto enroll, that way you know the only way they got their cert was from GPO policy.  I won't go into anymore detail, but there is lots you can do.

Maybe you are looking for

  • Stacked bar chart with percentage in Xcelsius

    Hi, I want to  create a stacked bar chart(Horizontal) for the following data Project 1  --- >    2140, 177,  288, 135 Project 2  --->     856, 44, 658, 120 For following status respectively Completed,      Pending ,Partially completed,  Not Started P

  • How do I download and save a pdf file on iPad2

    I just got and love my iPad2 and am learning a lot.  What I can't do is download a pdf file that is an attachment to my gmails.  It won't open the attachment nor when I click on it will it download.  I have installed both the iBook app and pdf-notes

  • Mupen64plus on intel w/ dri2 and kms

    well i can't play any games into mupen and i'm really out of clues, the only thing i'm getting from running in console is the following output http://paste-it.net/public/je2cbc9/ so if anyone could help me i would then be happily playing btw i use a

  • IDoc2File - Testing Problem

    Hi. I know there are several Tutorials concerning IDoc-Scenarios but i have a simple probelm in testing an empty IDoc. I use an empty DELVRY03 and enter the configured Receiver and Sender for editing the control record fields, try to use the standard

  • Update PSD en Illustrator imports in Flash not working???

    CS4 . When I import an image in flash and make changes to that image, in PSD par example, I can easily update that image in the Flash library, by just clicking on it. The changes are imediately effective...NICE!!!! But when I import psd-files, layers