Storage Software
1753776 Members
7182 Online
108799 Solutions
New Discussion юеВ

Re: sssu scripting question

 
Gnia
New Member

sssu scripting question

Hi all,

I would like to write a sssu script that would do a "ls full disk" for a specific Disk group.

Is this possible?

thanks in advance.

5 REPLIES 5

Re: sssu scripting question

Hi Gnia,

Yes this is possible.

But try LS DISK FULL.

Refer to SSSU command reference here:

http://h20000.www2.hp.com/bc/docs/support/SupportManual/c00605847/c00605847.pdf

Hope this helps!
Amar_Joshi
Honored Contributor

Re: sssu scripting question

Create a batch file (e.g. lsdiskfull.bat) with following in it:
===============================================
select manager IPADDRESS user=administrator password=administrator

select system EVA_NAME

ls disk full
===============================================

(replace the IPADDRESS with either the IPaddress or HostName of CommandView server. EVA_NAME is what flashing at the front OCP or can be checked from CommandView or run "show system" command after "select manager......" command)

Gnia
New Member

Re: sssu scripting question

Thank you for these answers!

But the EVA I want to interrogate via sssu contains 2 disk groups (Default Disk Group + Fata Disk Group).

And "ls disk full" returns all disks details.

Is there any way to do a "ls disk full" only for the Fata disk group ?

thanks again for your help.
Uwe Zessin
Honored Contributor

Re: sssu scripting question

No, sorry.
SSSU is a scripting utility, not a report generator ;-)

You need to do the filtering on your own.
.
Gnia
New Member

Re: sssu scripting question

ok thanks!