AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / server / 问题 / 1014016
Accepted
TomTom
TomTom
Asked: 2020-04-25 09:45:40 +0800 CST2020-04-25 09:45:40 +0800 CST 2020-04-25 09:45:40 +0800 CST

Microsoft Cluster:卷“ClusterPerformanceHistory”的可用存储容量不足

  • 772

在文档中找不到任何内容。从几个月前开始,我经常让卷 ClusterPerformanceHistory(自动创建,大约 12gb 的净大小)运行满,结果图表停止工作。

似乎没有迹象表明为什么,没有事件。运行状况服务正在运行。似乎没有 powershell 命令来清理它,我所能做的就是停止运行状况服务,核对卷并重新启动它,以便重新创建它。

有没有更好的方法来保持这个?过去 - 这是自动清洁,我几个月都不需要看它。

windows-cluster
  • 1 1 个回答
  • 1003 Views

1 个回答

  • Voted
  1. Best Answer
    TomTom
    2020-05-11T06:24:48+08:002020-05-11T06:24:48+08:00

    回答我自己:除了手动制作一个新卷并使其更大之外,这里没有什么可做的。

    https://blog.mpecsinc.com/2020/02/21/s2d-ashci-extend-the-cluster-performance-history-cluster-disk/对此有一个powershell脚本和解释......

    $ClVDToExtend = "Cluster Virtual Disk (ClusterPerformanceHistory)"
    # Virtual Disk Name
    $VDToExtend = "ClusterPerformanceHistory"
    # Size to Extend to
    $VDNewSize = 67GB
    $VDPartitionSize = 66.5GB
    # Suspend the Disk
    Suspend-ClusterResource -Name $ClVDToExtend
    # Extend - No Storage Tiers
    Get-VirtualDisk $VDtoExtend | Resize-VirtualDisk -Size "$($VDNewSize)" # Final size
    # Get its partition
    Get-VirtualDisk $VDtoExtend | Get-Disk | Get-Partition
    $Partition = Get-VirtualDisk $VDtoExtend | Get-Disk | Get-Partition | Where-Object PartitionNumber -Eq 2
    $Partition
    # Extend that partition
    $Partition | Resize-Partition -Size "$($VDPartitionSize)"
    # Resume the Disk
    Resume-ClusterResource -Name $ClVDToExtend
    

    MS基本上在这里做错了大小,所以通常的清理脚本清理得不够;)

    • 1

相关问题

  • iSCSI Windows 集群共享目标或每个节点的目标

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    新安装后 postgres 的默认超级用户用户名/密码是什么?

    • 5 个回答
  • Marko Smith

    SFTP 使用什么端口?

    • 6 个回答
  • Marko Smith

    命令行列出 Windows Active Directory 组中的用户?

    • 9 个回答
  • Marko Smith

    什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同?

    • 3 个回答
  • Marko Smith

    如何确定bash变量是否为空?

    • 15 个回答
  • Martin Hope
    Tom Feiner 如何按大小对 du -h 输出进行排序 2009-02-26 05:42:42 +0800 CST
  • Martin Hope
    Noah Goodrich 什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同? 2009-05-19 18:24:42 +0800 CST
  • Martin Hope
    Brent 如何确定bash变量是否为空? 2009-05-13 09:54:48 +0800 CST
  • Martin Hope
    cletus 您如何找到在 Windows 中打开文件的进程? 2009-05-01 16:47:16 +0800 CST

热门标签

linux nginx windows networking ubuntu domain-name-system amazon-web-services active-directory apache-2.4 ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve