I have two V400's and the file transfers seem to get stuck from time to time. I am told by HP that this is a bug, and the current fix is to restart the SP's. Does anyone know if there is a good way to script this command line style? if so, is there anything I should be looking out for? I am thinking about writing a script to dump this status into our monitoring tools.
Thanks in advance!!
Service Processor Status
- Richard Siemers
- Site Admin
- Posts: 1333
- Joined: Tue Aug 18, 2009 10:35 pm
- Location: Dallas, Texas
Re: Service Processor Status
I have that problem too and would benefit from a script that will detect a hung transfer, and queue a reboot.
I know of 3 ways to interface with the SP, one is through the browser front end, and the other is through SSH, which launches you into a 3PAR menu driven shell that keeps us users out of the root OS... and the last is SCP/SFTP. Perhaps you can grab the transfer logs and parse for trouble.
I know of 3 ways to interface with the SP, one is through the browser front end, and the other is through SSH, which launches you into a 3PAR menu driven shell that keeps us users out of the root OS... and the last is SCP/SFTP. Perhaps you can grab the transfer logs and parse for trouble.
Richard Siemers
The views and opinions expressed are my own and do not necessarily reflect those of my employer.
The views and opinions expressed are my own and do not necessarily reflect those of my employer.
Re: Service Processor Status
Ok, so I have been looking at this off and on for a bit, and since I had some time, I picked it back up again. I was actually able to get a dump of the "status" for the file transfer using curl. This is the command I used:
curl -u username:password http://itsvmsan04-sp/sp/get_xfer.php
That wil dump the entire status page, then you can write something to parse out the parts you need.
curl -u username:password http://itsvmsan04-sp/sp/get_xfer.php
That wil dump the entire status page, then you can write something to parse out the parts you need.