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
11-29-2008 07:00 AM
11-29-2008 07:00 AM
I would like to know if there is a command to check that a lun in particular frame is not being used (not PVcreated).
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2008 07:51 AM
11-29-2008 07:51 AM
Solutionit is very hard to know a disk is being used or not since thee is a lot of way of using the disk in the system
a.) lvm ; pvdisplay /dev/rdsk/cxtydz or strings /etc/lvmtab
b.) vxvm ; vxdisk list
c.) direct disk usage without lsm or vxvm ; bdf
d.) asm ; you have to look from oracle side.
Hasan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2008 09:43 AM
11-29-2008 09:43 AM
Re: storage
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2008 09:48 PM
11-29-2008 09:48 PM
Re: storage
ioscan -funCdisk|grep dsk|awk '{print $1}'|xargs -i pvdisplay {}
if there is any PV which is not associated with any VG it give error for that PV ptherwise shows information like :
--- Physical volumes ---
PV Name /dev/dsk/c3t15d0
VG Name /dev/vg01
PV Status available
Allocatable yes
VGDA 2
Cur LV 2
PE Size (Mbytes) 4
Total PE 8681
Free PE 0
Allocated PE 8681
Stale PE 0
IO Timeout (Seconds) default
Autoswitch On
Thanks,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2008 10:21 PM
11-29-2008 10:21 PM
Re: storage
check with this command
#pvdisplay /dev/dsk/cxtydz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2008 10:15 AM
11-30-2008 10:15 AM
Re: storage
will show you disks that are used by vxvm and LVM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2008 12:25 PM
11-30-2008 12:25 PM
Re: storage
You already got some responses with
useful information.
As you can see, there is no simple
way to do it with standard HP-UX.
However, there is a nice internal HP tool
called dskinfo (current version 1.03).
I am not sure if it will be released as
part of HP-UX in t he future. Currently,
it is one of support tools for HP staff.
Here is part of its report on HP-UX 11.31
server:
Disk check summary (dir "/dev/rdisk"):
device type model lba EFI FAT LIF LVM HFS VxVM VxFS
disk3 DISK ST373454LC 71687369 X _ _ _ _ _ _
disk3_p1 DISK ST373454LC 511968 _ X _ _ _ _ _
disk3_p2 DISK ST373454LC 70765568 _ _ X X _ _ _
disk3_p3 DISK ST373454LC 409600 _ X _ _ _ _ _
disk4 CDROM DVD+RW ND-2100A 0 _ _ _ _ _ _ _
disk5 DISK ST373454LC 71687369 _ _ _ X _ _ _
disk8 DISK ST373454LC 71687369 _ _ _ X _ _ _
disk9 DISK ST373454LC 71687369 X _ _ _ _ _ _
disk9_p1 DISK ST373454LC 511968 _ X _ _ _ _ _
disk9_p2 DISK ST373454LC 70765568 _ _ X X _ _ _
disk9_p3 DISK ST373454LC 409600 _ X _ _ _ _ _
Cheers,
VK2COT