Monthly Archives: November 2012

zfs basic snapschedule

#snapshot every minute with retention of three snapshots while true do for i in `zfs list | awk ‘{print $1}’|grep -v \@|tail +2` do zfs destroy ${i}@sched3 zfs rename ${i}@sched2 ${i}@sched3 zfs rename ${i}@sched1 ${i}@sched2 zfs snapshot ${i}@sched1 done sleep … Continue reading

Posted in solaris | Leave a comment

WAFL Max dirsize

Never increase maxdirsize beyond 3% of physical memory.A volume with 30.72MB maxdirsize can hold up to 416808 CIFS files or 1,006,632 NFS files. Calc below: Memory * max files per wafl_dir_block / conversion = # of files 31457.28KB * 128 … Continue reading

Posted in netapp | Leave a comment

7-mode snapmirror

1. license snapmirror on both nodes 2. create source and destination volumes e.g. sourcevol destvol 3. grant access to destination node node1> options snapmirror.access host=node2 4. restrict destinationvolume node2> vol restrict destvol node2> snapmirror initialize -S node1:sourcevol destvol node2> snapmirror … Continue reading

Posted in netapp | Leave a comment

FCoE netapp example

http://www.techshifter.com/2011/10/21/cisco-ucs-nexus-netapp-fcoe-end-to-end-config-part-1/

Posted in netapp | Leave a comment

clustermode status-admin up

net int modify -vserver centos -lif cluster_mgmt -home-node centos-01 -home-port e0c -address 192.168.1.100 -netmask 255.255.255.0 -routing-group c192.168.1.0/24 -status-admin up

Posted in netapp | Leave a comment

Solaris Cluster 3.x Quorum issue article

Article Listing 1 oct2006.tar Sun Cluster 3.x Quorum Issue Peter van der Weerd Clustering software usually consists of a collection of scripts and binaries that unconfigure an interface, bring down an application, unmount some file systems, give away a group … Continue reading

Posted in solaris | Leave a comment