2019年2月22日 星期五

delta file of vmware snapshot,delete vmware snapshot on production server disaster

https://www.computerweekly.com/tip/VMware-snapshot-best-practices

f a VM file has three snapshots, deleting all will cause the changes from the third delta file to be copied to the second file. Data from the second delta file will be copied to the first and from the first to the original VM. The delta files are deleted only after the commit process is complete.
If each delta file size is 50 GB, an additional 150 GB storage space would be required to accommodate the growing size of delta files. The commit process for a 100 GB snapshot typically takes three to five hours. This process will therefore put an additional performance overhead on the original VMs and the virtual server infrastructure. A degraded system and application performance, especially in a production environment would be unacceptable.


Virtual Machine Snapshot Files

Virtual machine snapshot consists of multiple files. Virtual Machine snapshot mainly includes the following:
Settings state : Virtual machine’s settings (.nvram & .vmx) and power state
Disk State: state of the virtual machine’s associated disks
Memory state: Contents of virtual machine’s memory (Only if memory snapshot is selected)
Below are the some of the files which comprise of snapshot:
VM_name.vmsd
VM_name-snasphot#.vmsn
VM_name-00000#.vmdk
VM_name-00000#-delta.vmdk
VM_name-snapshot#.vmem

Below is the comparison of  Virtual machine files in the virtual machine directory before and after creating the first snapshot of the virtual machine.

2019年2月1日 星期五

v3700 ibm

https://www.ibm.com/support/knowledgecenter/STLM5A/com.ibm.storwize.v3700.710.doc/tbrd_endcapleds_9842pj.html




http://www.chinastor.com/a/devices/cipan/01121X142016.html

20、V3500和V3700前面左耳面板3个LED指示灯的意义?


1) 绿色电源标志指示灯,指明主电源是否可用,若指示灯闪烁则说明处于待机模式。
2) 蓝色灯塔标志灯,用来认出存储。
3) 叹号报错灯,亮起时说明存储上某个部件出现硬件故障。
转自中国存储网,原文链接:http://www.chinastor.com/a/devices/cipan/01121X142016.html


check disk space automation

1. Netwrix Disk Space Monitor Freeware Edition (Version 1.2)

2. https://gallery.technet.microsoft.com/scriptcenter/Disk-Space-Report-Reports-98e64d65

Disk Space Report - Reports only disks that are below a threshold - HTML output
Download CheckDiskSpace_post.ps1

Run in Powershell
https://stackoverflow.com/questions/4037939/powershell-says-execution-of-scripts-is-disabled-on-this-system

i  had a similar issue and noted that the default cmd on Windows Server 2012, was running the x64 one.

For Windows 7, Windows 8, Windows Server 2008 R2 or Windows Server 2012, run the following commands as Administrator:


x64 (64 bit)
Open C:\Windows\system32\cmd.exe
Run the command powershell Set-ExecutionPolicy RemoteSigned

You can check mode using

In CMD: echo %PROCESSOR_ARCHITECTURE%
In Powershell: [Environment]::Is64BitProcess
References:
MSDN - Windows PowerShell execution policies
Windows - 32bit vs 64bit directory explanation