Author Archives: edit

7-mode upgrade 32bit to 64bit

filer1> priv set diag filer1*> aggr 64bit-upgrade start aggr4 -mode grow-all

Posted in Uncategorized | Leave a comment

solaris 11 who uses which port.

# mkdir /scripts # vi /scripts/ports #!/bin/ksh line=’———————————————‘ pids=$(/usr/bin/ps -ef | sed 1d | awk ‘{print $2}’) if [ $# -eq 0 ]; then read ans?”Enter port you would like to know pid for: ” else ans=$1 fi for f … Continue reading

Posted in Uncategorized | Leave a comment

solaris 11 custom zone install

Adding Additional Packages in a Zone by Using a Custom AI Manifest The process of adding extra software in a zone at installation can be automated by revising the AI manifest. The specified packages and the packages on which they … Continue reading

Posted in Uncategorized | Leave a comment

solaris 11 zonereplication and start

Migrate the zone to other machine using replication. example: zonename azone; zonepath root zones/azone # zfs snapshot -r zones/azone@0 # zfs send -R zones/azone@0 | ssh root@othermachine zfs receive zones/azone Run script on other machine #./script zones/azone/rpool ————————————– #!/bin/bash zfsfs=$1 … Continue reading

Posted in Uncategorized | Leave a comment

solaris 10 keytable

/usr/openwin/share/etc/keytables/keytable.map file to force the use of  Denmark_x86.kt or Denmark6.kt as default. Current Type    Layout  Filename 0       0       US4.kt                  # Default keytable   change to Type    Layout  Filename 0       0       Denmark_x86.kt                  # Default keytable Remove all lines below that.  

Posted in solaris | Leave a comment

netapp 7-mode linux iscsi

Steps: 1. on filer create a volume (lunvol1) 2. on filer create a lun in the volume (lunlin) 3. on linux install the iscsi-initiator-utils 4. on linux determine initiatorname 5. on filer create igroup with linux iqn (lingroup) 6. on … Continue reading

Posted in Uncategorized | Leave a comment

clustermode domain-tunnel

To have the administrator of the AD domain login to the administration vserver and manage the cluster, create a domain-tunnel. The name of the admin-vserver: cl1 security login create -vserver cl1 -username netapp\administrator -application ssh -authmethod domain -role admin create … Continue reading

Posted in netapp, Uncategorized | Leave a comment

clustermode networkdiagram

Posted in Uncategorized | Leave a comment

Netapp filefolding

file folding original link WAFL File Folding Explained While recently delivering training, one of my partners inquired about a WAFL feature called “file folding”, so I thought I’d take a moment to detail this lesser-known NetApp feature. File Folding is … Continue reading

Posted in netapp | Leave a comment

solaris zdb

Original link zdb: Examining ZFS At Point-Blank Range 01 Nov ’08 – 08:13 by benr ZFS is an amazing in its simplicity and beauty, however it is also deceivingly complex. The chance that you’ll ever be forced to peer behind … Continue reading

Posted in solaris | Leave a comment

clustermode export-policies and rules

Click IMAGE

Posted in netapp | Leave a comment

NPIV N_port ID Virtualization

Scott Lowe link Understanding NPIV and NPV Friday, November 27, 2009 in Gestalt, Networking, Storage by slowe | 71 comments Two technologies that seem to have come to the fore recently are NPIV (N_Port ID Virtualization) and NPV (N_Port Virtualization). … Continue reading

Posted in Virtualization | Leave a comment

Ontap 8.2 licenses

CLUSTERED SIMULATE ONTAP LICENSES +++++++++++++++++++++++++++++++++ These are the licenses that you use with the clustered Data ONTAP version of Simulate ONTAP to enable Data ONTAP features. There are four groups of licenses in this file: – cluster base license – … Continue reading

Posted in netapp | Leave a comment

solaris 11 automated installer grub entries

When running installadm create-client, the client grub.conf.01macaddress file is generated from the following file: /var/ai/service/”service- name”/menu.conf to change the menu-order from text-installer to automated-installer change the followin entry: [meta] order = SolarisNetBootInstance|0, SolarisNetBootInstance|1 to [meta] order = SolarisNetBootInstance|1, SolarisNetBootInstance|0 Now … Continue reading

Posted in solaris | Leave a comment

solaris 11 zones repository IPS

ips timfoster ips

Posted in Uncategorized | Leave a comment

solaris 11 bad login count

How many bad logins? With additional thanks to Lambert Rots (ASP4ALL) original url What’s Up With the flag Field in /etc/shadow on Solaris 11.1? 03Jan13 If you’re running Solaris 11.1, and you happen check your /etc/shadow file, you may notice … Continue reading

Posted in solaris | Leave a comment

solaris 11 zfs recordsize

oracle blog

Posted in solaris, Uncategorized | Leave a comment

solaris 11 exercise ips (4) add local repository

(with thanks to LAM) In this exercise you will setup a local repository and add a testpackage to the repository. You should have a zpool mounted on /software 1. create directory mkdir /software/site 2. create repository pkgrepo create /software/site 3. … Continue reading

Posted in solaris | Leave a comment

solaris 11 change hostname and ip

1. change the identity:node root@sol11-1:/tmp# svccfg svc:> select system/identity svc:/system/identity> select system/identity:node svc:/system/identity:node> listprop config/nodename config/nodename astring sol11-1 svc:/system/identity:node> setprop config/nodename=”sol11″ svc:/system/identity:node> refresh svc:/system/identity:node> exit 2. nwam should be disabled. root@sol11-1:/tmp# svcs svc:/network/physical:nwam STATE STIME FMRI disabled Sep_22 svc:/network/physical:nwam 3. … Continue reading

Posted in solaris | Leave a comment

solaris 11 exercise ips (10) add second pkg server instance

In this exercise you will setup a second instance of the application/pkg/server service. This means that you will have a second environment on the same machine from which you can publish your own software packages. 1. Add second instance. # … Continue reading

Posted in solaris | Leave a comment

solaris 11 ips repository

original link: blog

Posted in solaris | Leave a comment

solaris 11 exercise recover a lost rootpool

here

Posted in solaris | Leave a comment

solaris 11 exercise users

Log in to your system and switch user to root. user1@solaris11-1:~$ su – Password: Oracle Corporation SunOS 5.11 11.0 November 2011 You have new mail. root@solaris11-1:~# 1. Add a TERMINAL setting and alias to /etc/profile and test it. root@solaris11-1:~# echo … Continue reading

Posted in solaris | Leave a comment

solaris 11 exercise processes

Exercise Managing System Processes and Managing Tasks 1. Log in to your system and switch user to root. user1@solaris11-1:~$ su – Password: Oracle Corporation SunOS 5.11 11.0 November 2011 You have new mail. root@solaris11-1:~# 2. User the ps command to … Continue reading

Posted in solaris | Leave a comment

solaris 11 exercise smf (2) add smf-service

In this exercise you will create a new service. It is a dummy services that only sleeps for a long time and is started from a script. The script will be the start-method that you supply in the service manifest … Continue reading

Posted in solaris | Leave a comment

solaris 11 exercise smf (1) administering services

In this exercise you will work with dependencies between services. You will check the status of cron, and check its dependencies. Then you will disable a service that cron depends on and see how that reflects on cron. user1@solaris11-1:~$ su … Continue reading

Posted in solaris | Leave a comment

clustermode ports failovergroups interfaces roles firewall-policy

show image

Posted in Uncategorized | Leave a comment

clustermode switch to switchless

view pdf

Posted in netapp, Uncategorized | Leave a comment

cdot snapvault example

setting up snapvault cmode example 1. create vserverA and vserverB cl1::> vserver create vserverA -rootvolume roota -aggregate aggr1_n1 -ns-switch file -nm-switch file -rootvolume-security-style unix cl1::> vserver create vserverB -rootvolume rootb -aggregate aggr1_n2 -ns-switch file -nm-switch file -rootvolume-security-style unix for vserverA … Continue reading

Posted in netapp | Leave a comment

solaris 11 exercise zfs (1)

Basic operations. Your machine has 3 disks of 300MB If your machine has no available disks you can create 3 files of 300MB in the /dev/dsk directory and use those. Perform the following 3 commands only if your machine has … Continue reading

Posted in solaris | Leave a comment

netapp clustered ontap 8.2.1RC

CLUSTERED SIMULATE ONTAP LICENSES +++++++++++++++++++++++++++++++++ These are the licenses that you use with the clustered Data ONTAP version of Simulate ONTAP to enable Data ONTAP features. There are four groups of licenses in this file: – cluster base license – … Continue reading

Posted in netapp | Leave a comment

solaris 11 exercise ip (1)

Your machine has 4 network interfaces. Adapter 1 is configured up. 1. View the dladm subcommands. # dladm usage: dladm … rename-link (output skipped) 2. View your physical network interfaces. # dladm show-phys NK MEDIA STATE SPEED DUPLEX DEVICE net1 … Continue reading

Posted in solaris | Leave a comment

solaris 11 exercise bootenvironments (1)

A boot environment is a bootable Oracle Solaris environment consisting of a root dataset and, optionally, other datasets mounted underneath it. Exactly one boot environment can be active at a time. A dataset is a generic name for ZFS entities … Continue reading

Posted in solaris | Leave a comment

solaris 11 exercise ips (1)

1. Log in to your machine. ssh user1@192.168.4.151 switch to root # sudo bash Password: e1car0 2. Your machine has the Full Repository iso mounted. # df -h | grep media /dev/dsk/c3t0d0s2 6.8G 6.8G 0K 100% /media/SOL_11_1_REPO_FULL Check the available … Continue reading

Posted in solaris, Uncategorized | Leave a comment

solaris 11 vnc

1. Install the Solaris Desktop environment. # pkg install slim_install # /usr/bin/vncserver # vi /etc/gdm/custom.conf [daemon] [security] [xdmcp] Enable=true [greeter] [chooser] [debug] # svcadm restart gdm # inetadm -e xvnc-inetd or # svcadm enable xvnc-inetd

Posted in solaris | Leave a comment

centos and adito

setting up adito on centos

Posted in linux | Leave a comment

solaris zfs nfs share

root@solaris11-1:~# zfs set share=name=kanweg,path=/rpool/kanweg,prot=nfs rpool/kanweg name=kanweg,path=/rpool/kanweg,prot=nfs root@solaris11-1:~# zfs sharenfs=on rpool/kanweg root@solaris11-1:~# dfshares|grep kanweg solaris11-1:/rpool/kanweg solaris11-1 – – other example: zfs set share=name=fs1,path=/temppool/fs1,prot=nfs,root=192.168.4.235,rw=192.168.4.235 temppool/fs1

Posted in solaris | Leave a comment

7000 factoryreset at boot

add “-c” as parameter to the boot line. kernel$ /platform……….. -c

Posted in solaris | Leave a comment

Windows MPIO iscsi

mpio

Posted in Uncategorized | Leave a comment

netapp 7-mode upgrade simulator (exercise)

This is just an exercise for installing a second image on your simulator and boot from it. First the existing image is tarred and zipped and put on the root volume. Then the update is done and after that you … Continue reading

Posted in Uncategorized | Leave a comment

netapp add disks to simulator

f1> priv set advanced ( or in cdot: set d ) f1*> useradmin diaguser unlock f1*> useradmin diaguser password ( or in cdot: security login unlock -username diag security login password -username diag) Enter a new password:***** Enter it again:***** … Continue reading

Posted in netapp | Leave a comment

cdot exercises

1. Your cluster has 2 cluster-interfaces per node. Find an available network port per node and add a third cluster-interface on each node to increase the bandwidth on the cluster-network. example 2. Create a new user (user1) in a vserver … Continue reading

Posted in Uncategorized | Leave a comment

clustermode 8.2.1 qtree export

Support for qtree nfs-exports. A new qtree volume qtree create -vserver vserver_name -qtree-path /vol/volume_name/qtree_name -export-policy export_policy_name An existing qtree volume qtree modify -vserver vserver_name -qtree-path /vol/volume_name/qtree_name -export-policy export_policy_name

Posted in Uncategorized | Leave a comment

esx power on vm

To power on a virtual machine from the command line: List the inventory ID of the virtual machine with the command: vim-cmd vmsvc/getallvms |grep Note: The first column of the output shows the vmid. Check the power state of the … Continue reading

Posted in Virtualization | Leave a comment

mysql phpmyadmin install

phpmyadmin_installation Step #1: Turn on EPEL repo phpMyAdmin is not included in default RHEL / CentOS repo. So turn on EPEL repo as described here: $ cd /tmp $ wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm # rpm -ivh epel-release-6-8.noarch.rpm Step #2: Install phpMyAdmin on … Continue reading

Posted in Uncategorized | Leave a comment

mysql reset lost rootpassword

source: reset lost rootpassword # /etc/init.d/mysql stop Output: Stopping MySQL database server: mysqld. Step # 2: Start to MySQL server w/o password: # mysqld_safe –skip-grant-tables & Output: [1] 5988 Starting mysqld daemon with databases from /var/lib/mysql mysqld_safe[6025]: started Step # … Continue reading

Posted in Uncategorized | Leave a comment

clustermode nice documents

documents

Posted in Uncategorized | Leave a comment

clustermode 8.2 vm setup

By Gerard Bosmann Kopieer de uitgepakte simulator naar de ESX of VMWorkstation Edit de vmx file zoek naar de regel scsi0.pciSlotNumber = ì16î en plak op die plaats het volgende pciBridge0.present = “TRUE” pciBridge0.pciSlotNumber = “16” scsi0.pciSlotNumber = “17” ethernet0.pciSlotNumber … Continue reading

Posted in netapp | Leave a comment

clustermode get rid of snap because of smaller disks in vm environment

system node run -node cluster1–01 vol options vol0 nosnap on system node run -node cluster1–02 vol options vol0 nosnap on cluster1::> system node run -node cluster1–01 snap reserve vol0 0 cluster1::> system node run -node cluster1–02 snap reserve vol0 0

Posted in Uncategorized | Leave a comment

7-mode nfsmounts

From any linux/unix client, check which clients have mounted which exported volumes from a particular filer. 1. On the filer filer> options nfs.mountd.trace on 2. On any client mount an exported volume from the filer. 3. On client client> ssh … Continue reading

Posted in netapp | Leave a comment

netapp 7-mode licenses 8.2

7-Mode Data ONTAP Feature Licenses ================================== Licenses for the ESX build (Serial Number 4079432752) —————————————————– Use these licenses with the VMware ESX build. Feature License Code Description ——————- —————————- ——————————————– CIFS WMNZAUTQACAAAAXAGAAAAAAAAAAA CIFS protocol FCP UBJDCUTQACAAAAXAGAAAAAAAAAAA Fibre Channel Protocol FlexClone … Continue reading

Posted in Uncategorized | Leave a comment

vmware vmkload_mod multiextent

ESXi no longer automatically loads this module. Results in this: You are unable to power on some virtual machines Powering on virtual machines fail with the error: File [VMFS volume] VM-name/VM-name.vmdk was not found. When you view the details of … Continue reading

Posted in Virtualization | Leave a comment

netapp 7-mode systemshell

7-mode systemshell

Posted in Uncategorized | Leave a comment

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

clustermode snapmirror loadshare (2) statistics

(script on linux machine, make sure automatic login on cluster is configured) #!/bin/bash echo -n “press enter to start ” #creating mountpoints echo “creating mountpoints” sudo mkdir -p /nfs/nfs215 sudo mkdir /nfs/nfs216 sudo mkdir /nfs/nfs217 echo “creating mountpoints done” echo … Continue reading

Posted in netapp | Leave a comment

clustermode cluster ring show

2 Node——UnitName–Epoch—-DB–Epoch-DB-Trnxs-Master 3 ——— ——– ——– ——– ——– ——— 4 cl1-01—-mgmt—–7——–7——–37——-cl1-01 5 cl1-01—-vldb—–6——–6——–1——–cl1-01 6 cl1-01—-vifmgr—6——–6——–26——-cl1-01 7 cl1-01—-bcomd—-5——–5——–1——–cl1-01 8 cl1-02—-mgmt—–7——–7——–37——-cl1-01 9 cl1-02—-vldb—–6——–6——–1——–cl1-01 10 cl1-02—-vifmgr—6——–6——–26——-cl1-01 11 cl1-02—-bcomd—-5——–5——–1——–cl1-01

Posted in netapp | Leave a comment

clustermode default vservers and interfaces

example: clustername cl1 nodename cl1-01 net int show will give you: vserver cl1 (clustermanagement) lif cluster_mgt vserver cl1-01 (nodemanagement) lif clus1 clus2 mgmt1 vserver cl1-02 (nodemanagement) lif clus1 clus2 mgmt1

Posted in netapp | Leave a comment

clustermode systemshell filesystems

rootfilesystem is on /dev/md0 mounted on / type ufs varfilesystem is on /dev/ad1s1 mounted on /var type ufs the image and environment variable for booting are in /cfcard (/dev/ad0s2). You will find the image in /cfcard/x86_64/freebsd/image. You will find the … Continue reading

Posted in netapp | Leave a comment

clustermode eligibility and epsilon

In clustermode a node can be part of a cluster and is only regarded healthy if it is eligible. being eligible means that it is part of the replication ring for clusterinformation in /mroot/etc/cluster_config/rdb Each rdb-unit has a ringmaster. This … Continue reading

Posted in netapp | Leave a comment

clustermode architecture

N-blades are responsible for network part (common internal protocol SpinNP) D-blades are responsible for aggregates and volumes M-host is responsible for clustermanagement   The volumes that are physically distributed across the individual D-Blades are “stitched together” into a global namespace … Continue reading

Posted in netapp | Leave a comment

clustermode migrate lif and volume

network interface show -lif lif1 (will show current node) network interface migrate -lif lif1 -vserver vs1 -dest-node cl1-01 (will migrate lif belonging to vserver vs1 to other node) to also move the volume: vol show -vserver vs1 (will show the … Continue reading

Posted in netapp | Leave a comment

clustermode cluster command

cluster show (shows nodes, health. eligibility and epsilon) cluster modify [ -node nodename -epsilon true|false ] -eligibility true|false ] cluster ha show (is true or false) cluster ring show (shows nodenames unitname (mgmt vldb vifmgr bcomd) cluster join cluster create … Continue reading

Posted in netapp | Leave a comment

clustermode simsetup

http://www.wooditwork.com/2012/01/04/installing-maximising-the-netapp-ontap-8-1-simulator/

Posted in netapp | Leave a comment

clustermode remove vserver

unmount all datavols: vol unmount -vserver vs1 vol1 … stop the vserver: vserver stop vs1 offline all datavols and the rootvol: vol offline -vserver vs1 vol1 vol offline -vserver vs1 rootvol vol delete -vserver vs1 vol1 vol delete -vserver vs1 … Continue reading

Posted in netapp | Leave a comment

clustermode add vserver manually

-all specified fields are mandatory- 1. create vserver vserver create vsnew -rootvolume vsnew_root -aggr n01_agg1 -ns-switch file -rootvolume-security-style unix 2. add datavolume vol create -vserver vsnew -volume vol1 -aggr n01_aggr1 -size 500m 3. create a new exportpolicy for this vserver … Continue reading

Posted in netapp | Leave a comment

solaris 11 nfs share

Create an NFS or SMB share of a ZFS file system by using the zfs set share command. For example: # zfs create rpool/fs1 # zfs set share=name=fs1,path=/rpool/fs1,prot=nfs rpool/fs1 name=fs1,path=/rpool/fs1,prot=nfs Publish the NFS or SMB share by setting the sharenfs … Continue reading

Posted in solaris | Leave a comment

clustermode bootloader

interrupt bootsequence; enter bootloader lsdev list devices; disk0: BIOS drive A: disk1: BIOS drive B: disk1s1: FAT-16 disk1s2: FFS bad disklabel disk1s3a: FFS disk1s4a: FFS disk1s4b: FFS disk2: BIOS drive D: printenv print variables AUTOBOOT=true (output skipped) NETAPP_BACKUP_KERNEL_URL=x86_64/freebsd/image2/kernel NETAPP_PRIMARY_KERNEL_URL=x86_64/freebsd/image1/kernel (output … Continue reading

Posted in netapp | Leave a comment

clustermode cifs homedirectories

1. cifs home-directory search-path add -vserver vs2 -path /vs2vol1 cifs home-directory search-path show Vserver Position Path ———– ——– —————– vs2 1 /vs2vol1 2. Create a home directory share. cifs share create -vserver vs2 -share-name “~%w” -path “%w” -share-properties oplocks,browsable,changenotify,homedirectory cifs … Continue reading

Posted in netapp | Leave a comment

clustermode renaming a volume

vol rename -vserver vs2 -volume vol3-newname vs2vol2  

Posted in netapp | Leave a comment

clustermode cifs share

cifs share create –vserver vs2 -share-name rootdir -path / cifs share create –vserver vs2 -share-name vol1 -path /vs2vol1 cifs share show -vserver vs2 Remember that you share directories, not volume names, in the namespace. Notice that the shares admin$ and … Continue reading

Posted in netapp | Leave a comment

clustermode default namemapping where explicit fails

cifs options modify -vserver vs2 -default-unix-user pcuser cifs options show -vserver vs2 Move to diagnostic administrative mode. set diag Warning: These diagnostic commands are for use by NetApp personnel only. Do you want to continue? {y|n}: y Verify the results … Continue reading

Posted in netapp | Leave a comment

clustermode explicit name mapping between unix and windows

Configure explicit name mapping between UNIX and Windows. vserver name-mapping create –vserver vs2 -direction win-unix -position 1 –pattern netapp\\administrator -replacement root vserver name-mapping create –vserver vs2 -direction unix-win -position 1 –pattern root -replacement netapp\\administrator vserver name-mapping show Vserver Direction Position … Continue reading

Posted in netapp | Leave a comment

clustermode create unix user/group for local resolving

vserver services unix-user create -vserver vs2 \ -user pcuser -id 65534 -primary-gid 65534 vserver services unix-user create -vserver vs2 \ -user root -id 0 –primary-gid 1 vserver services unix-user create -vserver vs2 \ -user administrator -id 10 -primary-gid 0 vserver … Continue reading

Posted in netapp | Leave a comment

clustermode ntp server

ntp server create -node netappu-01 -server 192.168.211.254 (system services ntp server create) system services ntp config modify -enabled true

Posted in netapp | Leave a comment

clustermode license

JWFJEXMWZWYQSD Cluster-mode Licenses Serial Number: 1-80-000008 Service License Code Node Count Base JWFJEXMWZWYQSD 2 CIFS FAXQGXMWZWYQSD 2 SnapRestore RUUFHXMWZWYQSD 2 NFS PJQJIXMWZWYQSD 2 SnapMirror_DP BEOYIXMWZWYQSD 2 FlexClone DPSUHXMWZWYQSD 2 iSCSI NYLNJXMWZWYQSD 2 FCP LNHRKXMWZWYQSD 2

Posted in netapp | Leave a comment

solaris run service as different user

svccfg -s aap setprop start/user = astring: peter svccfg -s aap setprop start/group = astring: :default svccfg -s aap setprop start/working_directory = astring: :default svccfg -s aap setprop start/resource_pool = astring: :default svccfg -s aap setprop start/supp_groups = astring: :default … Continue reading

Posted in solaris | Leave a comment

solaris 11 exercise zfs (5) restore rootpool from remote system

ok boot cdrom -s # mount -F nfs remote-system:/rpool/snaps /mnt # zpool create -f -o  \ failmode=continue -R /a -m legacy -o cachefile=/etc/zfs/zpool.cache rpool c1t0d0s0 # cat /mnt/rpool.0311 | zfs receive -Fdu rpool # zpool set bootfs=rpool/ROOT/osolBE rpool # installboot -F … Continue reading

Posted in solaris | Leave a comment

solaris package groups

# pkg info -r *group* Display the contents of these package groups: # pkg contents -o fmri -r -t depend pkg-grouping Determine which package group is currently installed on your system: # pkg list group/system/\*

Posted in solaris | Leave a comment

solaris pkg install -> create new be and install software

pkg install –be-name <newbename> <packagename>

Posted in solaris | Leave a comment

licenses

  License Key Purpose a_sis MTVVGAF De-Dupe nearstore_option ELNRLTG cifs DZDACHD CIFS protocol cluster JQIGWWF Clustering of simulators cluster_remote N/A “Metrocluster” (cluster remote) does not work in the simulator dafs N/A Not a shipping product disk_sanitization PZKEAZL Disk sanitization http … Continue reading

Posted in netapp | Leave a comment

netapp Busy Lun

Description Basic instructions for deleting snapshots in the ‘(busy,LUN)’ state are provided in Deleting busy snapshot copies. However, these instructions sometimes fail because a more recent snapshot holds the blocks of the LUN, preventing the busy snapshot from being deleted. … Continue reading

Posted in netapp | Leave a comment