- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Filesystems and associated Disk arrays or controll...
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
01-20-2003 07:58 PM
01-20-2003 07:58 PM
In our m/c we have 4 disk arrays and 4 disk
controllers.
I want to distribute and organize Oracle data files evenly among all disk controller's filesystems.
What commands will help me to identify
which filesystems are under which disk arrays or disk controllers ?
Thanks
R. Ezhil
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2003 08:12 PM
01-20-2003 08:12 PM
SolutioncXtYdX
c=controller
t=target
d=LUN
To identify the which volumes are currently used and where, use these commands.
vgdisplay -v (displays all your logical volume information including what disks are part of that group.
lvdisplay -v (displays detail information about the logical volume, including what disk is resides on.
There is a script called free_disks by Alan Riggs on this link that should assist you identifying the disks not used. Also see scripts provided by Carlos, Justo and SK Chan. They all should give you valuable information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2003 08:13 PM
01-20-2003 08:13 PM
Re: Filesystems and associated Disk arrays or controllers
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x026250011d20d6118ff40090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2003 08:15 PM
01-20-2003 08:15 PM
Re: Filesystems and associated Disk arrays or controllers
Which you can do my configuring the primary and alternate links. Like you distribute your data across different VG. And then access these VG's through different controllers by taking that as primary path. Also for your information creating alternate and primary links can be done online too.
Cheers
Rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2003 06:54 PM
01-21-2003 06:54 PM
Re: Filesystems and associated Disk arrays or controllers
Thanks for your reply.
vgdisplay command shows volume groups
/dev/vg01
/dev/vg02
vgdisplay -v vg02 command shows
Logical volumes as
/dev/vg02/lvol1 -- Filesystem 1
/dev/vg02/lvol2 -- Filesystem 2
.
.
Physical volume as
/dev/dsk/c3t0d3
/dev/dsk/c7t0d3 Alternate Link
/dev/dsk/c7t0d4
/dev/dsk/c3t0d4 Alternate Link
.
.
Our hardware engineer showed 4 disk arrays
and 4 controllers.
From the above command I only able to see
filesystems and associated disks.
But I want filesystems and associated disk
array or disk controller ( 1..4 )
In otherwords how to find logical volumes(filesys) and associate
disk array or disk controller.
Can you please help with right command
to get the info.
Thanks
R.Ezhil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2003 07:56 PM
01-21-2003 07:56 PM
Re: Filesystems and associated Disk arrays or controllers
Find out all the logical volumes.
#vgdisplay -v |grep "LV Name"
For each logical volume that you found in the above output, do
#lvdisplay -v /dev/vgxx/lvolxx
That will show you the logical volume and it's distribution on the physical volumes. For each physical volume, do
#lssf /dev/dsk/cxtydz
You will get the path details. Or do
ioscan -fnC disk > disk.out. Look at disk.out file and compare them with what you got in lvdisplay commands.
-Sri