zoukankan      html  css  js  c++  java
  • 0xC0000006

    Applications crash or become unresponsive if another user logs off a Remote Desktop session in Windows Server 2012/R2 or Windows Server 2008/R2

    This article helps fix an issue where applications crash or become unresponsive if another user logs off a Remote Desktop session.

    Original product version:   Windows Server 2012 R2
    Original KB number:   2536487

    Symptoms

    When you run an application from a mapped drive, the application becomes unresponsive or crashes for a user (or multiple users) when another user logs off. This issue occurs in Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 R2 Service Pack 1 (SP1), and Windows Server 2008. For example, this issue may occur in the following scenario:

    • One server is a file server and another is a Remote Session Host server (terminal server).

    • A folder on the file server is mapped for use by remote users connecting to the RDS server.

    • An application on the mapped share is launched by multiple users.

    • One user logs off. This causes the other users of the application to experience an application crash or unresponsiveness. Depending on the OS version, this issue occurs when either the first or last user of the application logs off, as follows:

      • In Windows Server 2012 R2, Windows Server 2012, and Windows Server 2008, this issue occurs when the first user who logged on logs off.
      • In Windows Server 2008 R2 SP1, this issue occurs when the last user who logged on logs off.

    Note In Windows Server 2008 R2 SP1, this behavior changes to the same as that of Windows Server 2012 R2, Windows Server 2012, and Windows Server 2008 after you install hotfix 2559767.

    Cause

    This issue occurs because of the way that the redirector handles the File Control Block (FCB) for the binary in question.

    In Windows Server 2012 R2, Windows Server 2012, and Windows Server 2008, the FCB is owned by the first user who opened the file, and this FCB is used by subsequent users. When the first user logs off, the FCB is orphaned. This causes the application to crash or become unresponsive on subsequent uses. In Windows Server 2008 R2, the FCB is owned by the last user who opened the file, and previous users experience the issue when the last user logs off.

    Technically the FCB is not owned by any specific user. It's just a shared structure that represents a file. The FCB is created when the first handle to the file is opened, and it's destroyed when the last handle to the file is closed. Therefore, it is not tied to a user.

    The orphaned entity is the file object that belongs to the user who logs off. If that file object backs the file system cache or a mapped section, you experience these I/O errors.

    Resolution

    To resolve this issue, upgrade to Windows Server 2016. The issue is fixed in this version of Windows Server.

    Workaround

    To work around this issue, use one of the following methods:

  • 相关阅读:
    P1582 倒水 (二进制)
    P2014 选课 (树形动规)
    多项式前置技能——复数
    P3694 邦邦的大合唱站队 (状压DP)
    P1754 球迷购票问题 (卡特兰数,递推)
    [SCOI2003]字符串折叠 (区间DP)
    [SDOI2008]仪仗队 (欧拉函数)
    4-字符串
    3.输出,输入,基本数据类型
    2.栈,堆,寄存器的理解
  • 原文地址:https://www.cnblogs.com/liujx2019/p/13665391.html
Copyright © 2011-2022 走看看