- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: block device for volume missing, character dev...
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
10-12-2004 02:42 AM
10-12-2004 02:42 AM
I found a volume, which currently is in use by sybase (using the character device), but is not recognized by LVM. For unknown reasons the block device for that volume is missing in /dev/vgXX. What should or could I do now to make LVM recognize the volume again ? Is it safe to use mknod ? Should I stop sybase before doing anything with the volume ?
Thanks and regards,
Carsten
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 02:45 AM
10-12-2004 02:45 AM
Re: block device for volume missing, character device in use
What pvdisplay of the disk stating, are they alright.
Hope it helps
Thanks
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 02:53 AM
10-12-2004 02:53 AM
Re: block device for volume missing, character device in use
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 02:54 AM
10-12-2004 02:54 AM
Re: block device for volume missing, character device in use
mknod name b 64 0x0n000x
n=uniq
x=match with charcter special device 1,2,3,4,5,6.... ,=or
Thanks
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 03:05 AM
10-12-2004 03:05 AM
Re: block device for volume missing, character device in use
ls -al /dev/vg05/*D03
brw-r----- 1 sybase sybase 64 0x050048
crw-r----- 1 sybase sybase 64 0x050048
ls -al /dev/vg05/*D04
crw-r----- 1 sybase sybase 64 0x050025
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 03:58 AM
10-12-2004 03:58 AM
Solutionbrw-r----- 1 sybase sybase 64 0x050048
crw-r----- 1 sybase sybase 64 0x050048
ls -al /dev/vg05/*D04
crw-r----- 1 sybase sybase 64 0x050025
so do:
mknod /dev/vg05/name_D04 b 64 0x050025
then ll /dev/vg05/*D04 to check
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 06:10 AM
10-12-2004 06:10 AM
Re: block device for volume missing, character device in use
Thanks to all for your help.
Carsten