HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Integrity Servers
- >
- sasmgr command
Integrity Servers
1833912
Members
2381
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2009 09:25 PM
12-25-2009 09:25 PM
sasmgr command
Hi,
Can anubody explain about "sasmgr" ?
In our itanium server, we have hardware mirroring for root disk,and the disks are connected in SAS.
Rgds
Rineesh Nallatath
Can anubody explain about "sasmgr" ?
In our itanium server, we have hardware mirroring for root disk,and the disks are connected in SAS.
Rgds
Rineesh Nallatath
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2009 09:40 PM
12-25-2009 09:40 PM
Re: sasmgr command
Hi Rineesh,
Man Page of sasmgr:
http://www.docs.hp.com/en/B3921-60631/sasmgr.1M.html
Are you looking for anything particular in sasmgr?
Man Page of sasmgr:
http://www.docs.hp.com/en/B3921-60631/sasmgr.1M.html
Are you looking for anything particular in sasmgr?
Don't fix what ain't broke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2009 09:43 PM
12-25-2009 09:43 PM
Re: sasmgr command
Few Exmples:
Display all PHY statistics of the SAS I/O card / HBA whose device file is /dev/sasd0:
sasmgr get_info -D /dev/sasd0 -q phy=all
Display all RAID volume information of the Core I/O card / HBA whose device file is dev/sasd0:
sasmgr get_info -D /dev/sasd0 -q raid
Clear statistics for a port with PHY ID 1 of the SAS I/O card / HBA whose device file is /dev/sasd0:
sasmgr clear_stat -D /dev/sasd0 -q phy_in_port=1
Forcefully issue disable request to the SAS I/O card / HBA whose device file is /dev/sasd0:
sasmgr -f disable -D /dev/sasd0
Add a RAID volume with size 34000 (MB), level 1 (RAID1), and enc_bay 1:4,1:5 to the Core I/O card / HBA whose device file is /dev/sasd0:
sasmgr add -D /dev/sasd0 -q raid -q level=1 -q size=34000 -q enc_bay=1:4,1:5
Add a spare disk to the Core I/O card / HBA whose device file is /dev/sasd0 :
sasmgr add -D /dev/sasd0 -q raid -q spare -q enc_bay=1:4,1:5
Delete a RAID volume with volume ID 4 to the Core I/O card / HBA whose device file is /dev/sasd0 :
sasmgr delete -D /dev/sasd0 -q raid -q raid_vol=4
Delete the Core I/O card / HBA Spare on the HBA whose device file is /dev/sasd0 :
sasmgr delete -D /dev/sasd0 -q raid -q spare
Change the state to ACTIVE for the RAID volume with volume id 3.
sasmgr set_attr -D /dev/sasd0 -q raid -q raid_vol=3 -q state=ACTIVE
Change the rebuild rate to 20% for the RAID volume with volume id 3.
sasmgr set_attr -D /dev/sasd0 -q raid -q raid_vol=3 -q rebuild_rate=20
Display all PHY statistics of the SAS I/O card / HBA whose device file is /dev/sasd0:
sasmgr get_info -D /dev/sasd0 -q phy=all
Display all RAID volume information of the Core I/O card / HBA whose device file is dev/sasd0:
sasmgr get_info -D /dev/sasd0 -q raid
Clear statistics for a port with PHY ID 1 of the SAS I/O card / HBA whose device file is /dev/sasd0:
sasmgr clear_stat -D /dev/sasd0 -q phy_in_port=1
Forcefully issue disable request to the SAS I/O card / HBA whose device file is /dev/sasd0:
sasmgr -f disable -D /dev/sasd0
Add a RAID volume with size 34000 (MB), level 1 (RAID1), and enc_bay 1:4,1:5 to the Core I/O card / HBA whose device file is /dev/sasd0:
sasmgr add -D /dev/sasd0 -q raid -q level=1 -q size=34000 -q enc_bay=1:4,1:5
Add a spare disk to the Core I/O card / HBA whose device file is /dev/sasd0 :
sasmgr add -D /dev/sasd0 -q raid -q spare -q enc_bay=1:4,1:5
Delete a RAID volume with volume ID 4 to the Core I/O card / HBA whose device file is /dev/sasd0 :
sasmgr delete -D /dev/sasd0 -q raid -q raid_vol=4
Delete the Core I/O card / HBA Spare on the HBA whose device file is /dev/sasd0 :
sasmgr delete -D /dev/sasd0 -q raid -q spare
Change the state to ACTIVE for the RAID volume with volume id 3.
sasmgr set_attr -D /dev/sasd0 -q raid -q raid_vol=3 -q state=ACTIVE
Change the rebuild rate to 20% for the RAID volume with volume id 3.
sasmgr set_attr -D /dev/sasd0 -q raid -q raid_vol=3 -q rebuild_rate=20
Don't fix what ain't broke
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP