Posts

Netapp 7-Mode Architecture

7-Mode is made up of two controllers that is also called HA Pair (High availability Pairs) Controller : Controller (also referred to as Node) is the brain of Storage System where Operating System (Data ONTAP  Resides) and which deals with Read and Write operations. And it also contain memory, CPU. Disk Shelve: Disk Shelves are connected to the Controller in Daisy-Chained format, Disk shelve contain the actual physical disk on which your data resides. HA cable : The cable which connected two controller is called HA cable which is used for sending Keep alive signal between controllers which is used for Fail-over purpose that we will discussed later. 7 Mode Scalability Limitations: ·          You can have maximum 2 FAS Controllers ·          Disks owned by controller 1 can be accessed by controller 1 only ·          Data can be moved amon...

Oncommand Unified Monitoring

It is Single Installer for capacity, health and performance reporting - Setup threshold event and alerting for capacity and performance - Global search function for searching any object and context sensitive search Login  -> Dashboard -> Overview

Linux: Services

In linux a service is also called a Daemons. It is started in background in the operating systems. Starting Of services:  Service sshd start Or systemctl start sshd.service Status of a service: Systemctl status sshd.service Or Service ssh status This command will show service status of the service sshd Stop the daemons/Service: systemctl stop sshd service Or service sshd stop Start a service at boot time  systemctl enable sshd.service This will start the service sshd at the boot time  

Linux : Processes

How to identify running processes: #ps  This will list running processes in current shell #ps aux This will show all running process # ps aux |  grep "sshd" | grep -v grep -v means i want to exclude the line where the work grep is #pstree | less less : this will stop after the first screen full pstree will show the processes tree #ps aux | sort -nk 4 | tail -3 we are sorting it by column no. 4 numerically tail means we will fetch last three three results. Monitoring Commands: #top This will list running processes Live updating lists Press F : to modify the columns of the result Space bar to hide/Unhide the column Starting and Stopping process:  #kill -l This will list the available signals for killing the process #Kill pid This will kill the process by  Pid #pkill process_name This will allow you to kill the process by its name # gedit & This will start process called gedit Managing Process priority : #ps axl...

The Grep Command

Grep is used as search command Example : grep "emaad" filename.txt grep ifconfig enpo164464245 | grep "inet" Grep "West" * Will search West in all the files in current directory man grep        ------------------ to pull up the manual page q - to go back from manual screen Grep "West" * -R   -> this will search recursively from in all the directories Redirection with Grep :  Grep -i "west" * > File1.txt -i is for case insensitive Result will be stored in File1,txt Sort Command:  Grep -i "west" emaad.txt | sort -k 2  (Colums 2) Grep -i "^north" emaad.txt  ----------return lines begin with north Grep -i "north$" emaad.txt  ----------return lines ends with north

Linux - Scripting and Scheduling

Image
Describing Regular Expression Regular Expressions are sequence of character use to find the pattern. Regular Expression are built using the sequence of Meta character Examples: Wild Cards: ? - 0 or 1 of the previous element required * - 0 or more of the previous element required + - One or more of the previous element require . - which  match a single character at the location Anchors:   Hat ^ - Will match beginning of the string $ - Will match end of the string Containers: ()Parenthesis :  Contain group of subgroup []Square Bracket: Contain Perticular set of items Miscellaneous: OR | \ - To escape the meta character

Netapp Clustered Ontap CLI Pocket Guide

Netapp Clustered Ontap CLI Pocket Guide On this page I will be constantly adding Netapp Clustered Data Ontap CLI commands as an easy reference Pocket Guide Most  Clustered Ontap  commands work in 8.x, however some require 9.x (I have created a note if they require a 9.x version) (Updated 04-Oct-2018) MISC set -privilege advanced (Enter into privilege mode) set -privilege diagnostic (Enter into diagnostic mode) set -privilege admin (Enter into admin mode) system timeout modify 30 (Sets system timeout to 30 minutes) system node run – node local sysconfig -a (Run sysconfig on the local node) The symbol ! means other than in clustered ontap i.e. storage aggregate show -state !online (show all aggregates that are not online) node run -node <node_name> -command sysstat -c 10 -x 3 (Running the sysstat performance tool with cluster mode) system node image show (Show the running Data Ontap versio...