Tuesday, July 1, 2014

Isilon - Insight IQ service restart

sudo stop insightiq
sudo start insightiq

Isilon - GUI restart

isi services -a isi_webui disable
isi services -a isi_webui enable

Isilon - Increasing Quota space on Isilon share

Increasing Quota:

isi quota quotas modify --path <path> --type directory --hard-threshold <size> --advisory-threshold <size>



Isilon - Create NFS Share

Provisioning NFS share

1) Create Directory:
mkdir <path>

2) Create Quota
isi quota quotas create --path <path> --type directory --hard-threshold 1G --advisory-threshold 750 G --container yes --enforced true
--include-snapshots false --thresholds-include-overhead false
Advisory threshold is 70 percent of hard threshold

Example
isi quota quotas create --path /ifs/test_2 --type directory --hard-threshold 2G --advisory-threshold 1G --container yes --include-snapshots false
--thresholds-include-overhead false --enforced true

3) Create NFS Export
isi nfs exports create <paths> --clients <string> --clients <string2> --root-clients <string> --root-clients <string2> --description <string>
--map-root root --security-flavors unix --force no --all-dirs yes

example:
isi nfs exports create /ifs/test_2 --clients 10.xx.xx.xx --clients 10.xx.xx.xx --root-clients 10.xx.xx.xx --root-clients 10.252.9.134 
--description "test nfs export" --map-root root --security-flavors unix --all-dirs yes



Tuesday, June 17, 2014

Vblock - Simulators

Isilon - Isilon simulator
VNX - VNX simulators
UCS - UCS emulator
Switches: cisco packet tracer
VMware - VMware workstation/vCenter/ESXihosts/vSphere client
Storage - Storwind/Freenas

Thursday, June 12, 2014

Logs file locations- Isilon

/var/log/messages :- common for every component
/var/log/lsassd.log :- LDAP logs
tail insightiq_access.log - InsightIQ logs


Messages
tail -f /var/log/messages


Logs going out from Isilon

less /var/log/isi_celog_notification.log  
tail -f /var/log/isi_celog_coalescer.log
isi_for_array -s 'ps auwx | grep celog | grep -v grep'

isi_for_array -n2 'tail -100 /var/log/isi_celog_notification.log'




Wednesday, May 14, 2014

Get List of VM's on server:  Get-VM
VM detailed information: Get-VM | Format-List -property *
Customized VM's report: Get-VM | select-object -property Name,Notes, VMHost,Guest

Suppress warnings:

Set-Powercliconfiguration -Displaydepricationwarnings $false -scope -user


Using WildCards:
Select Specific virtual Machine: Get-VM -Name A*

Using Comparision Operations
-eq
-ne
-gt
-ge
-lt
-le


Using Aliases


Retriving list of all of hosts
get-Hosts