Windows 2012 cluster, CLIUSR cannot be created, password does not meet security requirements

Trying to create a Windows 2012 cluster (Not R2). The cluster creation wizard goes through without problems. However, after a few minutes the cluster service dies with EventID 1556 and error code 2245 "The
password does not meet the password policy requirements. Check the minimum password length, password complexity and password history requirements." The error repeats every few minutes.
Looking at the cluster log, we find:
ERR   Workitem(Sweeper::Sweep)  callback threw exception: (2245)' because of '[CLI] Account Creation failure: 2245, 4294967295'
ERR   [CORE] Shutting down cluster service because of unhandled exception in a worker thread
It appears it is trying to create the local CLIUSR account, but the self-generated password does not meet complexity... The local password policy is the default deployed with Windows 2012 -
No unusual password requirement (8 characters with built-in complexity requirement) 
I saw Elden's description of CLIUSR in
https://social.technet.microsoft.com/Forums/en-US/95929983-a50c-42b3-a520-6a171e542948/win-server-2012-two-node-cluster-local-cliuser-issue?forum=winserverClustering - so I believe I understand what it is doing, but how can it not generate a password complex
enough? And I do not see any report of anyone having this issue, so I suspect a local configuration / issue. 

Hi FrankJB,
Please verify that the Cluster Service account has the appropriate user rights on each node of the cluster. The Cluster Service account must be
in the local administrators group and should have the rights listed below. These rights are given to the Cluster Service account during the
configuration of the Cluster node. It is possible that a higher level policy is over-writing the local policy or that an upgrade from a previous
operating system does not add all of the required rights.
If you can confirm your current account meet the cluster create conditions, please disable all your firewall then run the cluster validation and
post the warning and error information.
The related KB:
How to troubleshoot the Cluster service account when it modifies computer objects
https://support.microsoft.com/en-us/kb/307532?wa=wsignin1.0
Additional, please install the following hotfix.
Recommended hotfixes and updates for Windows Server 2012-based failover clusters
http://support.microsoft.com/kb/2784261/EN-US
I’m glad to be of help to you!
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Similar Messages

  • OS X 10.8.1 update cannot be installed on this disk. This volume does not meet the requirements for this update.

    HI
    I had installed mountain lion on my MBP 13" early 2012, but it has lots of issue, when i tryed to up date to 10.8.1 it shows the error "OS X update cannot be installed on this disk. This volume does not meet the requirements for this update"
    if i run the software update nothis is showing, current os version is 10.8

    This did not work for me.
    Note, that at one point the Apple developer knew exactly what the problem was and decided not to let us know. If we were tole what the problem was we woud have an idea of how to proceed.

  • Getting this:You cannot install Security Update 2011-002 on this volume. This volume does not meet the requirements for this update?

    I am getting this message: You cannot install Security Update 2011-002 on this volume. This volume does not meet the requirements for this update?
    is there a way to install this update?

    Hello
    More information would be useful, for example which Mac OS are you running.
    On the left menu item  About this Mac provides useful information.
    Also did you use Software Update to determine the update?
    Using Software Update can ensure you download and install the correct package for your particular Mac and OS version.

  • When trying to download firefox it states that my computer does not meet min. requirements I have windows vista what do I do

    I am trying to downlad firefox and it keeps stating that my computer does not meet minnimum requirements I have Windows Vista what should I do?
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Search Toolbar 1.1; Windows NT 6.0; FunWebProducts; SearchToolbar 1.1; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; WinNT-EVI 24.03.2010; AskTB5.6)

    Download Firefox from here:
    http://www.mozilla.com/en-US/firefox/all.html

  • UserPrincipal.ChangePassword thinks the password does not meet the password policy requirements.

    I am working with C# 3.5.  My goal is to have a simple program to allow a user change their Active Directory user password via a web page.  I have a console application to initially test the commands to active directory and I am running into a problem.
    my domains password policy is as follows.
    Enforce password history 24 passwords remembered
    Minimum password length 7 characters
    Password must meet complexity requirements Enabled
    Store passwords using reversible encryption Disabled
    The error I am getting is "The password does not meet the password policy requirements. Check the minimum password length, password complexity and password history requirements. (Exception from HRESULT: 0x800708C5)"
    I believe the new password I am using does meet the policy requirements and I can't seem to get this program to work.  All I want to build is a simple program to allow a user to change their Active Directory user password.
    My test code is below.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.DirectoryServices.AccountManagement;
    using System.DirectoryServices;
    namespace ActiveDirectoryHacking
    class Program
    static void Main(string[] args)
    PrincipalContext adPrincipalContext = new PrincipalContext(ContextType.Domain, "192.168.1.26", "OU=Staff,DC=SFdev,DC=org", "John.Doe", "Initial Complex P234dfword");
    Console.WriteLine("Validate user {0}", adPrincipalContext.ValidateCredentials("John.Doe", "Initial Complex P234dfword"));
    UserPrincipal user = UserPrincipal.FindByIdentity(adPrincipalContext, "John.Doe");
    Console.WriteLine(user.DistinguishedName);
    user.ChangePassword("Initial Complex P234dfword", "e$213434sDKS really? www.microsoft.com");
    //user.SetPassword("Initial Complex P234dfword");
    user.Save();
    Console.WriteLine("Press a key to exit.");
    Console.ReadKey();
    The .SetPassword works if I use a user with Domain Admin access but it appears the John.Doe is unable to change their own password with the .ChangePassword method.
    The output until the exception is the following
    Validate user True
    CN=John Doe,OU=Staff,DC=SFdev,DC=org
    I have no clue why any password I select for the new password does not work.

    I looked into the password policy and this is what I have learned.  There is a major difference between undefined and defined in policies plus making sure the defined policies are set with values that will provide the desired results.
    Since this is a development domain and is used for testing I have tweaked the password policy to allow me to develop and test against the domain with a little bit more freedom than a production domain.
    I have changed the policy to the following settings. 
    Enforce password history 0 passwords remembered
    Maximum password age 0 days
    Minimum password age 0 days
    Minimum password length 7 characters
    Password must meet complexity requirements Disabled
    Store passwords using reversible encryption Disabled
    Now, I am able to run my program against the domain testing the password change utility.  My error was leaving some of the policy settings as not defined and not understanding what that really means for each setting.  For development of a password change utility I need the flexibility to test and the relaxed policy changes allows me to run the program many times without having to work with test data that works around a more restricted policy.

  • HT1338 New just out of box 2012 Mac Mini - Update to 10.8.2 won't load because "Volume does not meet the requirements of this update."

    Just opened box and started using Mac Mini (OS X 10.8.1), Late 2012, Core i5.  When trying to update iLife product, was given message that update to 10.8.2 was required.  Tried to update, but was given message that Volume does not meet the requirements.

    Your computer requires a special Mountain Lion version that it's not available right now, so you have to wait until Apple launches it again

  • Adobe CS3 Windows 7 installation says does not meet minimum requirements

    I am trying to install Adobe Creative Suite 3 Design Premium on a brand new Windows 7 machine (32-bit). It is a downloaded copy from Adobe's website.
    When I start the install process, it takes me to the "Options" Screen and will not let me install Photoshop, Illustrator, or InDesign. All those options are grayed out.
    At the bottom, the reason it gives is as follows:
    "The minimum system requirements listed below needed to run adobe photoshop cs3 are required and are not met:
    - Windows XP (Service Pack 2)
    - Windows Vista"
    It gives the same error for the other 2 programs as well.
    I have tried the following troubleshooting steps already with no luck:
    1. Run Setup.exe as Administrator
    2. Run Setup.exe in compatibility mode (either as Windows XP SP2, or Windows Vista)
    3. Logged-in to Administrator profile and tried installing from there
    4. did the regsvr32 on both vbscript.dll and jscript.dll.
    5. Tried the CS3 cleanup tool at multiple levels.
    6. Made sure there are no other Adobe products installed
    7. Called Adobe Tech support, they are no help. They said to re-install the OS, which doesn't make any sense since it's a clean install.
    No AV installed yet, so that's not the issue either.
    Any ideas?

    I realise I'm a bit late to the party here.. but after spending a few hours going through the Adobe CS3 Bootstrapper and Install process and files, I have the answer to why Windows 7 does not meet the minimum requirements.
    The answer is in the xml files contained in the payloads for the CS3 Installation.
    Line 72786 of AdobeIllustrator13en_US.proxy.xml :
    <SystemRequirementsJSON>[
         {"OS":{"Windows":{"XP":{"Exclude":true,"Require":{"MinServicePack":"2","@servicePack64Bit" :1
    ,"Need64Bit":"0"}},"Server2003":{"Exclude":true},"Vista":{"Require":true}}},
                                  "Memory":{"System":{"Default":{"Require":"512","Exclude":"500"}}},
                                  "Display":{"Default":{"Require":{"Width":"1024","Height":"768"},"Exclude":{"Width":"800"," Height":"600"}}}
    ]</SystemRequirementsJSON>
    Basically it is this: For Adobe Illustrator CS3 the following is supported: Windows XP SP2, or Vista ONLY
    Not Windows XP SP2 or above, or Windows XP SP2 and Vista or above ...
    The same is in several other files, but not all. Illustrator and InDesign are the 2 that I know of.
    I have 500 odd machines that I need to deploy this software to.
    If Adobe would like to offer a work around with consideration to deploying the software silently via Microsoft SMS to 500 Windows 7 Workstations - I would be most grateful.
    My rage at software installer developers with such little foresight is only tempered by the knowledge that the task itself is so difficult.
    However, that does not excuse the lack of thought given to how enterprise level administrators are supposed to deal with updates, patches, and deployments to machines where users have limited rights, and the difficulty that is caused by the inclusion of unhelpful and sparse documentation and software (such as Adobe Updater).

  • "You cannot install Safari on this volume. This volume does not meet the requirements for this update."

    I am trying to install Safari 5.05 for Leopard, but during the installation process, the error message above appears when selecting the volume to install it on.
    Apparently the minimum OS requirement for Safari 5 on Mac is 10.5.8, which my Mac has.  My Mac's processor is a 2.66 GHz Intel Core 2 Duo (the default for one of the Intel Macs that came out a few years ago), which should be good enough for Safari 5.  I am attempting to install via an admin account.  There is nothing in Apple Software Update relating to Safari (the current working version of Safari that my Mac has is 4.05).
    Any help please?

    So, on that page I should click on the Download button to the right?  It just takes me to http://www.apple.com/safari/download/, where the "Safari 5.0.5 for Leopard" is what I initially tried, and is what resulted in the aforementioned error message during the installation process.  See below for screenshots of the installer error message and my Mac's details, respectively:
    I also tried the Snow Leopard and Tiger versions of Safari just in case those worked, but obviously I didn't have the correct Mac version, so I couldn't even begin the installation process.

  • Stuck at 10.4 - Cannot upgrade - Volume does not meet requirements.

    I just installed a new hard drive in my 12" Powerbook G4. I did a clean install of Tiger - 10.4 - without any problems. I formatted the drive Mac OS Extended (Journaled) with one partition.
    After booting and going through the setup process, I looked for updates. There were some iTunes, Java and DVD player updates, but that was it. I applied those and restarted. I ran software update again, but there were no OS updates. I downloaded the OS 10.4.10 PPC combo updater and ran it, but the hard drive has a red exclamation point with the warning that the update cannot be installed because the volume does not meet the requirements.
    I then downloaded the 10.4.1 updater, and I got the same error.
    I then zapped the PRAM and rebooted, but I got the same error. I then repaired permissions and rebooted and got the same error.
    Then, I again did a clean erase and install of 10.4 from the original Tiger disc, but I'm again getting the same error.
    I'd like to get this machine updated to 10.4.10 as soon as possible, but I'm not having any luck.
    Any other suggestions?

    I just installed a new hard drive in my 12" Powerbook G4. I did a clean install of Tiger - 10.4 - without any problems. I formatted the drive Mac OS Extended (Journaled) with one partition.
    This is functionaly the same as an erase and install as my user tip explains:
    http://discussions.apple.com/thread.jspa?messageID=607614
    Mac OS X doesn't offer a "clean install" per se.
    How old is your Powerbook G4? If it was released prior to April 25 2005, you need to use the black retail 10.4.0 Installer disk to install Tiger which looks like . If it was released afterwards you need the same disk labeled 10.4.6, or the disk which came with the Powerbook. If you are using another vintage Mac model's installer disk, that won't work, and will yield this error. If you imported data from an Intel Mac via the Migration Assistant you could also have this error. If your hard disk is over 85% full, you may also have this problem. If permissions have not been repaired, or the directory is damaged this error could also happen. Is your data backed up? Do any of these possibly apply to you?

  • Trying to create itues account for children's school ipad and says does not meet min age.  Tried to go back and fix bday as was put in incorrectly and still says "does not meet min age".  How do I fix this?

    I'm trying to create a new apple account for my daughter's school ipad.  She put in her bday incorrectly and said "does not meet age requirements".  We went back and put in her correct date (over 13) and still says "does not meet age requirement".  How do I fix this??

    The old rule of thumb was to keep 10-12 GB free. Any lower than that and you will start to have trouble. I was very close to that for a long time and never had any complaints. Now, Lion "encourages" 20% free space (on my newer 250 GB drive) so I try to keep it with more than 50 GB free.
    Do you still have the original memory in that machine too? The metal plate you have to remove in the battery compartment also provides access to the RAM. Your machine will take 2 GB of RAM, possibly 3. You definitely want to max that out too.
    Regardless, you definitely need a new hard drive. When Apple switched to PC components, they had to take a quality hit. These 2.5" notebook hard drives are not very reliable. I'm surprised your hard drive hasn't died by now. I usually get a new hard drive with every major OS upgrade. A $ 50 investment every couple of years is no big deal.
    Unfortunately, you (and I) suffer from being an early adopter in 2006. Those 32-bit machines only accept 2 GB RAM (maybe 3) and are only 32-bit so they can't be upgraded to Lion. Because of this limitation, you won't see as dramatic an improvement as you would with a 2007 machine. If you run more than a couple of applications, your hard drive is always going to have to be doing some VM work. My 2006 machine has even lost its bluetooth. I gave it to my brother. My very similar 2007 Macbook is still running great.
    So, you must get a new hard drive because your old one is likely on death's door. If you don't have at least 2 GB - get it. If you can't afford a new machine, you might want to consider an SSD. That might help mitigate your RAM limitations. You can spend from $ 100 to $ 350 and get a dramatic speed improvement.

  • Controller for View, Window, Interface, and Configuration Cannot Be Created

    Hi All,
      In our  Web Dynpro ABAP applicaton we  have a window and when we edit the conent of window and try to press "Cancel" button we are getting below error.
    Controller for View, Window, Interface, and Configuration Cannot Be Created
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: GET_CONTROLLER of program CL_WDR_COMPONENT==============CP
    Method: GET_ACTION_FROM_EVENT of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: DO_HANDLE_ACTION_EVENT of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW=================CP
    Method: EXECUTE of program CL_WDR_MAIN_TASK==============CP
    Method: IF_WDR_RUNTIME~EXECUTE of program CL_WDR_MAIN_TASK==============CP
    Method: HANDLE_REQUEST of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST_FROM_MEMORY of program CL_HTTP_SERVER================
    Do any one have idea regarding this error.
    Regards
    CB

    Hi,
    Sounds bit strange to me, if you edit your window and do not want to save your changes then i would not expect this error. assuming that the component does not have activation problem.
    Just for making sure.
    I assume that your problem is on design time and not runtime.
    If it is a design time and problem still exists, try to delete this window, save ,activate and then recreate this window,embed your view(s).
    If it is runtime problem then i would suggest you to do debugging and find out where it is getting this error.

  • I just got iMessage and I created my account but it says that my password does not Mach

    I just got iMessage and I created my account but it says that my password does not match, and when I go to retrieve my password, it says my birthday does not match, what can I do

    Hello A.Hawley,
    It sounds like you are being prompted to authorize your computer in order to download your iTunes purchases. This article will help you do that:
    iTunes Store: Authorize or deauthorize your Mac or PC
    http://support.apple.com/kb/ht1420
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • The password/user name function of my iWeb created website does not function...

    The password/user name function of my iWeb created website does not function now that I have moved it from MobileMe to another host.  I read that the password/user name feature works for MobileMe but not for a FTP host.  Now that MobileMe is not going to be available is there a solution?

    Yup,
    http://support.godaddy.com/help/4057
    How to Password Protect a Directory GoDaddy

  • I CANNOT DOWNLOAD ADOBE READER FOR MY MAC (ID AND PASSWORD DOES NOT WORK)

    I CANNOT DOWNLOAD ADOBE READER FOR MY MAX (ID AND PASSWORD DOES NOT WORK

    This seems to cause a certain amount of confusion. Your Adobe ID is not used to download or install Adobe Reader.
    But when you install any software you are likely to need your own computer's administrator password. This password was chosen by you (or someone) the first time the computer was switched on, and is used to protect the system against bad things.

  • Fail to create a VD Collection with error "The Virtual desktop template does not meet the provisioning requirements."

    I get the following error when I try to create a Virtual desktop
    collection;
    "The Virtual desktop template does not meet the provisioning requirements."
     although I'm specifing a sysprep'd VM installed WS2012 for a virtual desktop template.
    Is there any way to resolve?
    Or, is there any couses of this message?
    thanks.

    I realize this is an old thread.  I'll post and see if I get a response.  If not, I'll create a new thread.  My question is how does Microsoft suggest SPLA partners create VDI pools since they cannot license Windows 7 or 8 via SPLA?  Why
    would you restrict the provisioning to only the desktop operating systems that you won't allow partners to license for deployment?
    Are there any plans to change this to include 2008 R2 or WS2012 as the base OS for a VD template?
    Rob

Maybe you are looking for

  • Error running exe to write to exel file: Error 7 New file not found

    Hello!I have this problem, i've looked everywhere and i still can't solve it. It would be great if anyone can help me. I built an application that writes an array to a spreadsheet file. Everything works fine in Labview 7.1 , i can build the exe file,

  • Badi ac_document_quantity_get

    Hi All, I want to use the badi ac_document_quantity_get to put qty and uom from service entry sheets to the accounting doc. Has anyone been successful in doing this? I am having huge troubles getting the values to pass into the acct docs Any help wou

  • Download of Discoverer doumentation fails

    I get a "This page cannot be displayed" message when I click on any of the links on http://otn.oracle.com/documentation/discoverer.html Thanks Ram

  • Export Mailbox from Exchange 2010 and Import to Exchange 2007

    Hello, I exported mailbox (1GB in size) from Exchange 2010 to *.pst file; I need to import it into Exchange 2007 mailbox. Is it supported ? The operation completed successfully (no errors) but no items were imported; is it due to unsupported backward

  • APEX supports the TimesTen Database development?

    Hi all, Oracle Application Express supports the TimesTen In-Memory Database development? Thanks, Jett