Author Archives: Rafael Fernández

Integrar Hitachi Command Suite con Vsphere

En uno de los foros de Hitachi Data System he podido encontrar este post que ha resultado muy útil: http://forums.hds.com/index.php?/topic/1155-esx-hosts-in-hdvm/

Posted in HDS | Tagged | Leave a comment

Logger para windows

Muy útil si unicamente necesitas centralizar ciertos logs en función de la terminación correcta o no de un script: http://www.monitorware.com/en/logger/

Posted in Red Hat, Windows | Leave a comment

Listar todos los ficheros de una copia en netbackup

bplist -l -C ClienteWindows -R 10 -nt_files / bplist -l -C ClienteUnix -R 10 -unix_files / Para más opciones consultar el command reference de netbackup.  

Posted in Netbackup 7 | Leave a comment

Memory Limits for Windows Releases

http://msdn.microsoft.com/en-us/library/aa366778%28VS.85%29.aspx Nunca se sabe cuando puede ser necesario…

Posted in Microsoft | Tagged | Leave a comment

Policy Types Netbackup

Muy útil al obtener un informe Stored Backup Images on Media agrupado por Policy Type. Policy Types Argument Type Note 0 Standard 1 Proxy NetBackup internal setting 2 Non-Standard NetBackup internal setting 3 Apollo-wbak NetBackup DataCenter only 4 Oracle 5 … Continue reading

Posted in Netbackup 7 | Tagged | Leave a comment

Frase del día

“Before you diagnose yourself with depression or low self esteem, first make sure that you are not, in fact, just surrounding yourself with assholes.” ― William Gibson

Posted in Frases | Leave a comment

Exclude list de procesos de Netbackup en Antivirus Trend Micro 8 bajo Windows 2003

Hay que crear un fichero de registro con el siguiente formato: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPBKAR32] “ProcessImageName”=”bpbkar32.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPBRM] “ProcessImageName”=”bprbrm.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPCD] “ProcessImageName”=”bpcd.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPCOMPATD] “ProcessImageName”=”bpcompatd.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPCOMPATD] “ProcessImageName”=”bpcompatd.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPDBM] “ProcessImageName”=”bpdbm.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPDM] “ProcessImageName”=”bpdm.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPINETD] “ProcessImageName”=”bpinetd.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPJAVA-MSVC] “ProcessImageName”=”bpjava-msvc.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPJOBD] “ProcessImageName”=”bpjobd.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPRD] “ProcessImageName”=”bprd.exe” [HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\NSC\TmProxy\WhiteList\BPTM] “ProcessImageName”=”bptm.exe” … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Script de nagios para comprobar si ha habido algún cambio en un switch de fibra

#!/bin/bash export ORIGINAL=ruta/ export VOLATIL=ruta2/ ssh $1 -l nagios switchshow > $VOLATIL/$1 SALIDA=`diff $ORIGINAL/$1 $VOLATIL/$1 > /dev/null; echo $?` if [ $SALIDA -eq 0 ];then echo “Todos los WWN están en sus correspondientes puertos” exit 0 elif [ $SALIDA -eq … Continue reading

Posted in Brocade, nagios | Tagged , | Leave a comment

check de nagios para ver el número de cintas disponibles pertenecientes a un robot ACS en un pool de scratch de Netbackup

Para que funcione correctamente hay que tener grep para windows instalado. @echo off set WARN_COUNT=%1 set CRIT_COUNT=%2 “c:\Program Files\Veritas\Volmgr\bin\vmquery.exe” -b -pn scratchpool | grep ACS -c > salida.txt” set /P SCRATCH_COUNT=<”c:\Program Files\NSClient++\scripts\salida.txt” if %SCRATCH_COUNT% LSS %WARN_COUNT% ( if %SCRATCH_COUNT% LSS … Continue reading

Posted in nagios | Leave a comment

Performance improvements for tape in NetBackup 7.1

Hace poco hemos actualizado a Netbackup 7.1 y como he podido leer en http://www.symantec.com/business/support/index?page=content&id=TECH143890 existen mejoras muy interesantes para los que usamos cintas.

Posted in Uncategorized | Tagged | Leave a comment