我在系统进程(
Windows Server 2008R2 x64)中遇到了无效句柄的增加.金额约为每周1,000,000.
根据Process Explorer,句柄类型是文件.从任务管理器看来,内存似乎没有分配给任何进程,但图表显示了高(并且不断增长)的物理内存使用情况.
如何避免或释放无效的系统句柄?
我还没有找到根本原因,但我想出了如何清理它.
原文链接:https://www.f2er.com/windows/367122.html当我复制其中一个文件进行分析时,我发现无效句柄被“重用”或“刷新”并正确关闭.似乎文件上的操作如open,copy,delete修复了句柄.所以我创建了powershell脚本,首先使用util Handle v3.51获取句柄列表并打开受影响的文件.首次运行后,手柄数量减少,物理内存使用量也开始减少,经过几次运行后看起来还不错.清理工作安排在每晚.
$handlesLog = .\handle.exe -p 4 # 4 is System process id foreach ($line in $handlesLog) { if ($line -match "<here is the pattern of affected files>") { $fileToCopy = <full path to the file> if ([System.IO.File]::Exists($fileToCopy)) { try { $fileStr = New-Object System.IO.FileStream($fileToCopy,[System.IO.FileMode]::Open,[System.IO.FileAccess]::Read) } finally { $fileStr.Close() $fileStr.Dispose() } } } }