Hyper-v manager in windows 8.1 cannot connect to hyper-v server. RPC server unavailable

I am setting up a new server. I installed Hyper-V 2012 R2 on it and want to manage it remotely with Hyper-V manager from a Windows 8.1 computer. I am unable to communicate with the computer with the server. Hyper-V manager gives me the following error: RPC
Server Unavailable. Unable to establish communication between "the hypervserver" and "the W8.1station". Both computer are located in the same subnet and both are on the same domain.
I configured the server with a fixed IP, DNS, to accept pings, connected it to the domain and set it up to allow remote access and management. Although I do not think it is necessary, I added my domain account to the administrators group in the hyper-V server.
I can perfectly ping the server and remote into the server from the W8.1 station. From he server I can also ping the W8.1 station as well as exterior websites (DNS functionality is ok).
I have play with the firewall in both, the Hyper-V server and the management station and have not being able to get them to communicate. Blaming the Hyper-V server for all this and the great time that I have already spent on this problem, I borrowed a Windos
7 Pro computer, installed RSAT and enabled the Hyper-V manager in that computer. Launched the manager AND CONNECTED TO THE HYPER-V SERVER WITH NO PROBLEMS AT ALL !!!!!!!
I have read a lot already about this but most people having this issue are setting up servers in a workgroup environment, and almost nobody is using Windows 8.1 as the management station. Can someone PLEASE give me a hand with this problem??
Thanks to you all !!!

Hi reirem,
Please use the script " hvremote " to Verify configuration for errors via   command "hvremote /show /target:othercomputername
Here is HvRemote script link :
http://code.msdn.microsoft.com/Hyper-V-Remote-Management-26d127c6
Best Regards
Elton Ji
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Installing Hyper-v manager on windows 7 home premium ?

    hello,
    Can i install hyper-v manager on windows 7 home premium ??
    Thanks

    No, to install the Hyper-V manager you need to install the RSAT tools (http://blogs.technet.com/b/schadinio/archive/2010/07/09/installing-hyper-v-manager-on-windows-7.aspx),
    and those are only available for Windows 7 Pro, Enterprise and Ultimate as mentioned here
    http://www.microsoft.com/en-us/download/details.aspx?id=7887

  • Linux VM KVP IP can't be shown on Hyper-V Manager after querying its KVP/IP information on Hyper-V host several times

    Hello
    [Sorry for asking the same question in the wrong place/forum of "Hyper-V"]
    I am using a CentOS 6.5 VM (Linux kernel 2.6.32-431) and (generation 2) CentOS 7 VM (Linux
    kernel 3.10.0-123) with Hyper-V KVP daemon installed,
    and I periodically query its IP (via using WMI or Powershell to query its KVP information) to manage it.
    However, after querying its IP (KVP) for several times, its IP can’t
    be queried or shown on Hyper-V Manager anymore (Windows VM is ok without this problem).
    And here is the vmIntegrationService status of my CentOS 7 VM for the references.
    PS C:\Users\Administrator> (Get-VM -name G2_CentOS7).vmIntegrationService
    VMName     Name                    Enabled PrimaryStatusDescription SecondaryStatusDescription
    G2_CentOS7 Time Synchronization    True    OK
    G2_CentOS7 Heartbeat               True    OK
    G2_CentOS7 Key-Value Pair Exchange True    OK                       The protocol version of the component installed ...
    G2_CentOS7 Shutdown                True    OK
    G2_CentOS7 VSS                     True    No Contact
    G2_CentOS7 Guest Service Interface False   OK
    I attached a simple KVP query Powershell script as
    the follows, and this problem can be reproduced in couple minutes if you run two instances with this script at the same time.
    $VMName = $args[0]
    write-host "$VMName"
    filter Import-CimXml
    $CimXml = [Xml]$_
    $CimObj = New-Object -TypeName System.Object
    foreach ($CimProperty in $CimXml.SelectNodes("/INSTANCE/PROPERTY"))
    if ($CimProperty.Name -eq "Name" -or $CimProperty.Name -eq "Data")
    $CimObj | Add-Member -MemberType NoteProperty -Name $CimProperty.NAME -Value $CimProperty.VALUE
    $CimObj
    $CimObj = $null
    for ($i=1 ; $i -le 10000 ; $i++) {
    $a = Get-Date
    write-host "$i - Time: " $a.ToLocalTime()
    $vm = Get-WmiObject -Namespace root\virtualization\v2 -Query "Select * From Msvm_ComputerSystem Where ElementName='$VMName'"
    $vm.ElementName
    $vmkvp = Get-WmiObject -Namespace root\virtualization\v2 -Query "Associators of {$vm} Where AssocClass=Msvm_SystemDevice ResultClass=Msvm_KvpExchangeComponent"
    $vmkvp.GuestIntrinsicExchangeItems | Import-CimXml
    Actually, if your CentOS VM (has LIS) installed with KVP daemon running well,
    my test script will show more than 4 keys (include NetworkAddressIPv4 or NetworkAddressIPv6 keys).
    However, while the KVP daemon becomes problematic, it will only show a few keys
    (ex. 4~6 keys) and at this moment, Hyper-V Manager also can't show IP address of it anymore and you may need to reboot the CentOS VM to recover it.
    For example (KVP in 252 time is good, but KVP in 253 and 254 times become problematic)
    252 - Time:  8/26/2014 7:19:42 PM
    G2_CentOS7
    localhost                                                   FullyQualifiedDomainName
    3.1                                                         IntegrationServicesVersion
    10.1.145.190;192.168.122.1                                  NetworkAddressIPv4
    fe80::215:5dff:fe91:b902                                    NetworkAddressIPv6
    3.10.0-123.el7.x86_64                                       OSBuildNumber
    0                                                           OSDistributionData
    0                                                           OSDistributionName
    199168                                                      OSKernelVersion
    7                                                           OSMajorVersion
                                                                OSMinorVersion
    CentOS Linux                                                OSName
    129                                                         OSPlatformId
    3.10.0                                                      OSVersion
    x86_64                                                      ProcessorArchitecture
    253 - Time:  8/26/2014 7:19:42 PM
    G2_CentOS7
    localhost                                                   FullyQualifiedDomainName
    3.1                                                         IntegrationServicesVersion
    10.1.145.190;192.168.122.1                                  NetworkAddressIPv4
    0                                                           OSDistributionData
    0                                                           OSDistributionName
    199168                                                      OSKernelVersion
    129                                                         OSPlatformId
    254 - Time:  8/26/2014 7:19:44 PM
    G2_CentOS7
    0                                                           OSDistributionData
    0                                                           OSDistributionName
    199168                                                      OSKernelVersion
    129                                                         OSPlatformId
    I
    found the following patches and gave them a try, but the
    problem still remains after applying these patches and the (generation 2) Ubuntu 14.04 with Linux kernel 3.13 also has this problem.
     - Patch "Drivers:
    hv: util: Fix a bug in the KVP code" has been added to the 3.14-stable tree
     - Drivers: hv: vmbus: Fix a bug in the channel callback dispatch code
    But (generation 1) Ubuntu 14.04 VM with Linux kernel 3.17 doesn't encounter this problem after querying its KVP/IP information on Hyper-V host several times.
    Does anyone know what changes between Linux kernel 3.13 and 3.17 fix this issue?
    Thanks,
    Paul

    Hi Dexuan and Mike,
    Thanks for your help!
    I did the patch with rpmbuild on CentOS 6.5 (with kernel 2.6.32-431).
    However, the second patch cannot patch on CentOS6.5 since there is no target_cpu in such version.
    So we are patching that with the following similar patch but this issue still occurs. (also replace ko in initrd)
    https://lists.ubuntu.com/archives/kernel-team/2014-August/047725.html
    Can you tell me if any patch I could miss or any suggestion?
    Thanks for your time.

  • TS1741 Bought an app last night.  Tried to buy another an hour later and got the window that says "Cannot connect to iTunes Store".  Still unable to connect today.  Tried restarting router. Help please....thanks!

    Bought an app last night.  Tried to buy another an hour later and got the window that says "Cannot connect to iTunes Store". Still unable to connect to store today.  Tried restarting router.  Help please....thanks.

    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • Cannot connect to database master at SQL server at SERVERNAME

    I have installed SQL 2008 R2 in a fresh win 2008 R2. I’m running the sharepoint configuration Wizard using the database server name with the correct domain
    credentials but I get the following error message. “Cannot connect to database master at SQL server at
    SERVERNAME. The database might not exist, or the current user does not have permission to connect”
    I‘m able to login to the new SQL server using the “SQL server management studio” with no problems. I used the sa account and a domain account.
    The sharepoint server is also a new installation. And both servers have the firewall disabled.
    Thanks in advance for your help.
    Simon

    Hi,
    What is your SharePoint server’s version?
    Please make sure you use the farm admin account to launch SharePoint configuration wizard. If not, please log in with this account, then check the effect.
    In addition, check if you create a named instance, such as, servername\sharepoint, however, you only specify the servername in the configuration wizard. If this is
    the case, change to servername\sharepoint, then check the effect.
    Thanks,
    Rock Wang
    Forum Support
    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 Subscriber Support,
    contact [email protected]
    Regards, Rock Wang Microsoft Online Community Support

  • Connect is not working on Hyper-V Manager on Windows 8.1 ( vmconnect does not work )

    Hi all,
    I have been running Windows 8.1 and in Hyper-V Manager, i can see 2 VM ( 1 Linux-Ubuntu , 1 Win 7 ) for couple of months.
    Few days ago as usual i wanted to connect one of them while they were running but it did not work. I tried actions below already:
    - Checked the event logs and they were saying vmconnect is crashing
    Faulting application name: VmConnect.exe, version: 6.3.9600.16384, time stamp: 0x5215cae5
    Faulting module name: KERNELBASE.dll, version: 6.3.9600.17415, time stamp: 0x54505737
    Exception code: 0xe0434352
    Fault offset: 0x0000000000008b9c
    Faulting process id: 0x6c0
    Faulting application start time: 0x01d02e59f75297d7
    Faulting application path: C:\WINDOWS\system32\VmConnect.exe
    Faulting module path: C:\WINDOWS\system32\KERNELBASE.dll
    Report Id: 351cf3fd-9a4d-11e4-beaf-7446a0bad879
    Faulting package full name:
    Faulting package-relative application ID:
    =================================
    Application: VmConnect.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.ArgumentException
    Stack:
       at Microsoft.Virtualization.Client.Interop.IMsRdpClientNonScriptable3.set_NegotiateSecurityLayer(Boolean)
       at Microsoft.Virtualization.Client.InteractiveSession.RdpViewerControl.SetSecureModeOn()
       at Microsoft.Virtualization.Client.InteractiveSession.RdpViewerControl.CreateRdpClient(Boolean)
       at Microsoft.Virtualization.Client.InteractiveSession.RdpViewerControl..ctor(Microsoft.Virtualization.Client.InteractiveSession.RdpConnectionInfo)
       at Microsoft.Virtualization.Client.InteractiveSession.InteractiveSessionForm..ctor(Microsoft.Virtualization.Client.InteractiveSession.RdpConnectionInfo)
       at Microsoft.Virtualization.Client.InteractiveSession.VmisApplicationContext.TryParseCommandLine(System.String[])
       at Microsoft.Virtualization.Client.InteractiveSession.Program.Main(System.String[])
    =================================
    - Stop antivirus Avira, remove Hyper-V, restart add Hyper-V again, restart
    - reboot, shutdown computer
    - add new VM, delete existing one
    -add/delete/modify virtual swtich and add/delete/modify virtual switch accordingly the connected VM
    - restart Hyper-V Management services from services.msc
    I dont know what is going on... When i open Hyper-V Manager i can start/stop VMs and i can see from preview that they are running.

    Hi all,
    A
    After few months, problem occurred again and i could not install the windows from the scratch over and over again.
    I started searching problem online and eventually i found the FIX.
    Looks like Registry Entries are getting screwed up somehow.
    My "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProvider" was looking exactly as below:
    ", schannel.dll"
    And i made it as below:
    "msapsspc.dll,
    schannel.dll, digest.dll, msnsspc.dll, credssp.dll"
    The solution for the other person in the link ( cannot share link since site does not allow me to ) as a source was only missing "credssp.dll" whereas i was missing everything except "schannel.dll". Strange...
    ============================
    Adding credssp.dll to the list of SecurityProviders in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders
    fixed it for me. 
    My full registry entry now reads "msapsspc.dll,
    schannel.dll, digest.dll, msnsspc.dll, credssp.dll"
    ============================

  • Unable to Connect to WS2012R2 Hyper-V manager with Windows 7 version of Hyper V manager.

    Just brought up a new WS2012R2 host server and created a gen 2 VM on it . I already have a WS2008R2 Host server with several VMs running. I manage the WS2008r2 WM from my Win7pro laptop using Hyper-V remote management tool. But when I try to connect to the
    new WS2012R2 host server the  operation fails with the message 'The operation on computer 'HOSTSERVERNAME' failed' 
    I've checked for downloads to update the remote HyperV management tool and cant find any. Am I correct in assuming that I can  only connect to the Hyper-v Management tool for WS2012R2, from Win8 or higher? or is it something I've over looked. remote
    management is enabled on the host server and the vm.
    thanks
    Marty
    MAR

    I am having the same problem however I can access a WS2012 with my Win 7 client but cannot access my WS2012R2.
    My thread
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/720e98a2-6a97-4cd6-bab7-aeacb861e71e/allow-domain-users-rd-access-to-hyper-v-manager-located-on-a-dc?forum=winserverhyperv&prof=required
    Any ideas?
    Phil

  • Windows 8.1 cannot connect to group policy client service

    Windows 8.1 laptop under administrator account has this "cannot connect to group policy client service" error.Found the following instructions on internet but I don't see this "Replace owner on subcontainers and objects" box on Permissions/Advanced
    popup windows ???
    Could anyone help ?
    Change the permissions on the relevant keys configuring the Group Policy Client service to allow Full Control to Administrators
    Open regedit (Start > type regedit in the search box) and navigate to:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\gpsvc
    Right-click the registry key and choose Permissions.
    Click Advanced, then click Owner.
    Choose Administrators and check the Replace owner on subcontainers and objects box.
    Exit the permissions dialog and then open it again.
    Click Advanced, then choose Administrators and click
    Edit…
    Check Replace all child object permissions with inheritable permissions from this object.  
    Click OK and confirm; exit.
    Thank you,

    Hello CarLover,
    Based on my test, the option Replace owner on subcontainers and objects exists in Windows 7, but doesn’t exist in Windows 8.1.
    Please take a look at the screenshot about the option in Windows 7.
    Please take a look at the following thread similar to this issue.
    http://answers.microsoft.com/en-us/windows/forum/windows_7-performance/why-wont-windows-connect-to-the-group-policy/b73107f8-8447-4599-87a5-65ecc6a63aa0
    Best regards,
    Fangzhou CHEN
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Windows VNC clients cannot connect to Snow Leopard Server native VNC server

    I am resurfacing the following related comment made in another post that discusses the same issue I am having with VNC on Snow Leopard. This is still an issue and I cannot connect to our Xserve's Snow Leopard Server with a VNC client on Windows.
    I don't want to install another third party VNC server onto our SL Server, and am looking for a VNC client for windows that will connect to our SL Server.
    Does anyone have any solutions?
    == QUOTED TEXT BELOW ==
    Re: Newbie: Connect Windows -> OSX Server
    Posted: Nov 4, 2009 9:26 AM in response to: Antonio Rocco
    I would politely disagree. Yes, definitely, the Mac 'Screen Sharing' app works a treat, and Apple Remote Desktop.app works as well, but I am coming from a Window's PeeCee.
    For me, connecting to my 10.5(.8) Server via tightvnc gives 'Server did not offer supported security type!". Using RealVNC to this machine states "No matching security types Do you wish to reconnect to ... ?" a telnet to this AppleVNCServer service (port 5900), shows RFB 003.889 *, or Remote Frame Buffer Major 3, minor 889.
    Also, connecting to multiple 10.6(.1) Clients with Tightvnc correctly asks for a password but then hangs at "Status: Security type requested". Using RealVNC opens, connects, asks for authentication, and exits. Telneting to this AppleVNCServer service (port 5900), also shows RFB 003.889 *.
    The Current Version of the protocol is supposed to be 3.8, that is Major version 3, minor version 8. Not 80 or 800 but Eight). http://www.realvnc.com/docs/rfbproto.pdf and I believe that tightvnc only supports up to version 3.7.
    On each station I have installed the 'old' OSXVnc.app as a service (to a unique port). OSXVnc utilizes protocol 3.3 and I can control them successfully, but that is of my own doing because of this issue.
    Now JollysFastVNC works a treat to any machine I have EVER tried to connect to. I have not tried COTVNC or any of the others (too slow for me, when they wer e around)
    Also, I just noticed that RealVNC states that their free and personal version will not connect to Mac OSX (x86 and PPC) but the Enterprise one will. I just Dl'ed the Enterprise Viewer and it gave essentially the same thing ('protocol is not valid' message, even after it asks for a password). Anyway, I am not here to hijack this thread, just trying to keep the info flowing and open.
    Maybe I am the only one with these problems but the bottom line is I cannot use Real or Tight, or UltraVNC to administer my server or clients as long as AppleVNCServer gives out the 003.889 protocol version.
    Peter
    * The ProtocolVersion message consists of 12 bytes interpreted as a string of ASCII characters in the format "RFB xxx.yyy\n" where xxx and yyy are the major and
    minor version numbers, padded with zeros.

    Searching on the net brought me to the same solution that Mr. Hoffman found as well, I was a bit skeptical at first but since he recommended it, and all my other attempts failed, it was a last resort and I have some additional notes of my own for a successful solution. Read the two links below first before doing anything, as they contribute to the solution in tandem.
    http://forums.macrumors.com/showpost.php?p=7221295&postcount=20
    http://forums.macrumors.com/showpost.php?p=9081641&postcount=28
    I should probably just create an entirely new post with all of the steps that worked for me, but it's rather straightforward nonetheless.

  • Windows XP User cannot connect to OS X Server... Keeps asking for password.

    I have made my iMac G5 into a server. It is running OS X Server 10.5.7 with all updates. Only use it for file sharing. Have it setup as a standard server. Only have two users and can verify that SMB is running through the Server Admin application.
    I use XP Pro with SP3 on my MacBook Pro. Both machines have relativley fresh installs that are unaltered. Both the windows side of my laptop as well as the SMB are set to the same workgroup.
    When I am in XP I do the following:
    1. Double click on My Network Places
    2. In the My Network Places Window I click on the left hand column: View Workgroup Computers
    3. I see my server: iMac Server (Imacserver)
    4. Double click that icon... get a user login window with the title: Connect to imacserver.private
    5. Input my user name and password (the same that I would use while in Leopard... which works fine) - Click OK.
    Here is what I don't understand.
    6. The login window comes back after about 10-15 seconds. As if the login was incorrect to try again.
    7. The user name field now has in front of my name the name of the 'PC' forward slash my user name?? For example: MACPC24335\username
    Why can I not connect to my server... in leopard it is very seemless and works fine... I feel that I am over looking something. Any thoughts or ideas as to why this is not working?
    Thank you for your time.

    Try this on your PC:
    Start->Run...->Open:\\<ipadressofyourmac>\<sharename>
    You will be prompted for your username and password.
    Or
    'My Computer'->'Tools'->'Map network drive...'
    enter:
    \\<ipadressofyourmac>\<sharename>
    in the 'Folder' field.
    Click 'Connect using a _different user name_.'.
    Enter your server username and password.
    Click 'OK'.
    Click 'Finish'.

  • Windows Xp machines cannot connect to Windows Server 2008r2 after Update from Microsoft.

    After allowing sever updates from Microsoft, My customers XP Machines can no longer connect to the Windows server shares using the server name.  We get "can't find path error".  I can ping the IP address but not the Net-bios name.  I
    can connect by ip address but have a software that must use the name "server" in an executable.  The workgroup sees all of the other computers just not the server, the server see's the windows 7 machines but not the XP machines.  I have
    tried every fix I can find in the forums and online.  I did find and AD and DNS errors during the update.  Errors 4004, 4005, 4015.  Things I have tried: ipconfig flushdns, renew, registerdns, nbtstat -A servername, etc.
    Thanks

    As IP address works but not NetBIOS name, it seems like a DNS or WINS server related issue as Milos said.
    If there is no WINS server configged, check DNS settings (server side) and suffix settings (client side).
    Which system is updated, Windows XP or Windows 2008 R2? You can check the recently installed updates and provide us a list about all updates just installed. 
    If you have any feedback on our support, please send to [email protected]

  • Lync 2013 on Windows Phone 8 cannot connect to Exchange via TMG

    Hi,
    I've found that the latest Lync 2013 client on WP8 cannot connect to our Exchange Server 2010 via TMG and the problem is related to autodiscovery. Based on detailed log analysis the symptom is the following:
    1. The client is sending a request:
    GET
    https://autodiscover.neostratus.com/autodiscover/autodiscover.xml
    2. It gets a TMG logon form and then tries to POST here:
    POST
    https://autodiscover.neostratus.com/cookieauth.dll?getlogon?curl=z2fautodiscoverz2fautodiscover.xml&reason=0&formdir=9
    <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/requestschema/2006">
    <Request><EMailAddress>[email protected]</EMailAddress>
    <AcceptableResponseSchema>http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a</AcceptableResponseSchema>
    </Request></Autodiscover>
    </SentRequest>
    The URL is wrong and it fails of course. This is the situation with Lync credentials and manually configured Exchange credentials as well.
    Other clients (PC, iOS) can connect fine and all test tools confirm that our autodiscovery setup is correct. I can POST the above XML using basic authentication to the correct URL and get a correct response. And the same autodiscovery process works fine
    when setting up an email account on the same WP8 device.
    Is this a known WP8 Lync 2013 client bug and is there a workaround?
    BR,
    Andras

    Hi,
    The lync client should be able to sing in Lync Server and just lost calendar information if Lync client cannot connect to Exchange. Please double check if the device is able to connect to the EWS URL.
    Kent Huang
    TechNet Community Support

  • "Cannot connect to iTunes Store" & "iTunes store temporarily unavailable"

    PROBLEM:
    Our iPhones, iPad, and iPod Touches all give us "Cannot connect to iTunes Store" message when we try to purchase an App or update Apps using Apple's "App Store" App. When using iTunes on our MAC desktop, which is used to sync all our devices, I'd select "Check for available downloads" from the Store Menu and would recieve the error message "Unable to check for available downloads. The iTunes store is temporarily unavailable. Please check back later." All our devices and software were up to date. We had not upgraded to iCloud yet, allthough I don't think that matters.
    Note:
    - We were able to purchase songs on iTunes and access our iTunes account so we had access to iTunes Store, despite the misleading error messages. We just couldn't get the Apps to download or update.
    - This happened whether I was on my iPhone using our password protected WiFi, the non-password protected WiFi at the local Apple Store, as well as when I turned WiFi off and used 3G.
    I spent hours trying every solution offered on these discussion boards as well as an on non-Apple sites to no avail. I went to the local Apple store and after an hour and a half wait had someone at the Genius Bar check it out and say he couldn't fix it. I emailed Apple Help on this website and received a boilerplate reply pointing to 2 KBs that I'd already tried (support.apple.com/kb/TS1368) and (support.apple.com/kb/TS1398). When I replied I tried all that, and still needed help they pointed me to Apple Care. My husband called Apple Care who wouldn't talk to us because supposedly you can only purchase it during a window of time after buying your new device. Our iPad is the youngest at only 4 months old, so I don't know how that can be. Maybe he didn't want to pay for it just yet. I was ready to chuck these into the trash until my husband figured it out.
    So... if you're experiencing the same error messages, here was our fix. In hindsight it's so simple I can't believe it.
    SOLUTION:
    Went to the MAC desktop that we use to sync and update all our devices. In iTunes in the left hand column under "Store" click Download. The app at the top of the queue was "stuck" (similar to a printer that won't print because of a problem with the first job in the queue). Click the first App in the queue to get it downloading. That's it!
    Once they all chug through then you can start updating apps on your devices using the App Store app. Relief!
    I hope this helps someone because it was a frustrating experience!

    I had this exact issue.  However, I was not even able to "see" the pending downloads when I tried fixing them using the solution above.
    In another thread, I saw that someone mentioned an issue with the use of the "&" (ampersand) symbol in your appleID information.  I had recently changed my name and it did include the & symbol in my name (not the appleID itself).  I replaced the ampersand with the word "and" and saved.  I then went to the iTunes store and logged into my account there and made the same change on my billing name.
    Voila!  I could now access the 7 pending downloads on my desktop Mac and download them, and all iPhone/iPad/Ipods were again able to download from the app store.
    incidentally, I had several support tickets open on this issue and never once did the Apple person even suggest that this might be the issue. 

  • Users cannot connect over SMB 10.10.1 server.app 4.0 and 4.0.3

    Hello,
    I have an issue where users cannot connect to a server for files sharing over SMB.
    Info:
    All users on 10.10.1
    2 Servers on 10.10.1
    Server.app 4.0.3 but issue was also present using 4.0
    SMB connection works when connecting to the OD Master
    SMB does not work when connecting to the OD Replica ServerBut AFP works fine when connecting to the OD Replica Server.
    I have destroyed and re-added the OD replica but that did not seem to help
    This is what I see in the logs each time I try to connect(logs have been cleaned to remove client details:
    Jan  9 14:37:12 server.pretendco.com digest-service[9961]: label: default
    Jan  9 14:37:12 server.pretendco.com digest-service[9961]: dbname: od:/Local/Default
    Jan  9 14:37:12 server.pretendco.com digest-service[9961]: mkey_file: /var/db/krb5kdc/m-key
    Jan  9 14:37:12 server.pretendco.com digest-service[9961]: acl_file: /var/db/krb5kdc/kadmind.acl
    Jan  9 14:37:12 server.pretendco.com digest-service[9961]: digest-request: uid=0
    Jan  9 14:37:12 server.pretendco.com digest-service[9961]: digest-request: netr probe 0
    Jan  9 14:37:12 server.pretendco.com digest-service[9961]: digest-request: init request
    Jan  9 14:37:12 server.pretendco.com digest-service[9961]: digest-request: init return domain: SERVER2 server: SERVER2 indomain was: <NULL>
    Jan  9 14:37:13 server.pretendco.com digest-service[9961]: digest-request: uid=0
    Jan  9 14:37:13 server.pretendco.com digest-service[9961]: digest-request: init request
    Jan  9 14:37:13 server.pretendco.com digest-service[9961]: digest-request: init return domain: SERVER2 server: SERVER2 indomain was: <NULL>
    Jan  9 14:37:13 server.pretendco.com kdc[4802]: Got a canonicalize request for a LKDC realm from local-ipc
    Jan  9 14:37:13 server.pretendco.com kdc[4802]: Asked for LKDC, but there is none
    Jan  9 14:37:13 server.pretendco.com sandboxd[395] ([4802]): kdc(4802) deny file-read-data /private/etc/krb5.conf
    Jan  9 14:37:22 server.pretendco.com kdc[4802]: Got a canonicalize request for a LKDC realm from local-ipc
    Jan  9 14:37:22 server.pretendco.com kdc[4802]: Asked for LKDC, but there is none
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: uid=0
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: init request
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: init return domain: SERVER2 server: SERVER2 indomain was: <NULL>
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: uid=0
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: init request
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: init return domain: SERVER2 server: SERVER2 indomain was: <NULL>
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: uid=0
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: od failed with 2 proto=ntlmv2
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: user=SERVER2\\username
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: kdc failed with 36150275 proto=unknown
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: guest failed with -1561745590 proto=ntlmv2
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: uid=0
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: init request
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: init return domain: SERVER2 server: SERVER2 indomain was: <NULL>
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: uid=0
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: init request
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: init return domain: SERVER2 server: SERVER2 indomain was: <NULL>
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: uid=0
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: od failed with 2 proto=ntlmv2
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: user=SERVER2\\codywood
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: kdc failed with 36150275 proto=unknown
    Jan  9 14:37:23 server.pretendco.com digest-service[9961]: digest-request: guest failed with -1561745590 proto=ntlmv2
    I suspect the problem is to do with Kerberos and in relation to this server being an OD Replica.
    I would really appreciate anyone's insight into this.
    Thanks
    Morgs

    I have the same problem although I upgraded from Lion Server to Mountain Lion Server. The error appears to go hand in hand with this error.
    userInit: CFPreferences: user home directory for user kCFPreferencesCurrentUser at /Network/Servers/fullyqualifieddomainname/Users/user is unavailable. User domains will be volatile.
    I've read a number of things to try. A lot of people point to DNS being a problem, but I'm confident this is correct in my environment.

  • Cannot Connect to App Store / Establish Secure Server Connection

    I've seen a lot of posts on this:
    App Store Error: "Cannot Connect to the App Store" (No Internet Connection)
    Google (or any other https://) Site Error: "Cannot Establish a Secure Server Connection"
    My OS is 10.8.5.
    Obviously, I've checked that I have an internet connection. FireFox works... non-secure (http://) sites work... I'm starting to pull my hair out.
    These are all suggestions from posts that I've seen. Some worked for some people, but not me!
    I've checked that my Date & Time are correct, as suggested.
    I've created a new Network Location in my Network System Prefs. Nope. Didn't help.
    I've gone thru every Certificate in my Utilities / Keychain Access and eliminated all the blue '+'s'.
    I've deleted every *.plist file from my Preferences that I thought might help. Nada. Still no App Store, no Google.
    THEN, a Mac epiphany:
    Go back to Date & Time Preferences
    Under the Date & Time tab - check the box "Set date and time automatically:" (you probably do. I did. But make sure.)
    Under the Time Zone tab - check the box "Set time zone automatically..." AHH HA! I didn't have it checked.
    Now a message comes up - something like, you don't have your Location Services enabled... hmm.
    Go to: System Prefs > Security & Privacy
    Under the Privacy tab - check the box "Enable Location Services" (You may have to unlock [paddlelock in lower left] to make changes)
    That did it. App Store instantly loaded as well as https:// google.
    For those who have tried all the other posted suggestions - before you pull the rest of your hair out - this is one more thing to try.
    Hope it helps.

    Ignore.

Maybe you are looking for

  • How do I download and install 2.0 on my iPhone?

    I just bought the new 2.0 for my iPhone (not iPod) but I am not receiving a prompt to download and install, which is what the iTunes screen message says to do--it states "connect your iPod touch (I have a phone!) and click download and install." I do

  • Layering two EXS 24 instruments? (And using plug-in settings as 'waveforms)

    i'm beginning to think redmatica keymap is my only hope 'coz i keep running into issues with exs24, it just does not seem to do what i want i'm told on page 393 of the logic 8 manual that plug-in settings can be used as templates to load sampler inst

  • ADOBE FLASH PLAYER PLAY ON IE BUT NOT IN FIREFOX

    I work for years with Firefox, now I have format my hard drive and install Adobe flash player and Firefox again, but Flash player do not work in Firefox, it work only in Inter Explorer, did try all forums and try all the guy`s say there , when I inst

  • Pre-ordering on Verizon

    I am a verizon customer and I plan on pre-ordering it, but my question (and it may be a dumb one) is when I will have to actually pay for it. Do I pay when I pre-order and it ships to me, or do I pre-order and have to go into the store and pay when I

  • Exporting - two problems

    I have a 70 min. project. I export as QT not self contained. I drag the file to compressor and select 90 min. best quality DVD 2-pass VBR and doly 2.0. First problem: I have a seperate folder for this project on my desk top. After the files have been