- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to find raw devices being used
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
06-20-2007 05:58 AM
06-20-2007 05:58 AM
lvol1 thru lvol5.
The lvol1 and lvol2 are filesystems and you
can see them in /etc/fstab and bdf outputs.
The lvol3,lvol4 and lvol5 are not there in fstab nor in mnttab, but hahve filesystem (fstyp shows vxfs) on them.
This server is rp4440 and runs 11iv1 and has Oracle 9i on it.
I checked /dev/vg01 and all lvols are owned by root:sys.
My first impression is that the lvol3 thru lvol5 are used by oracle as raw devices.
If so, then these /dev/vg01/rlvol3 thru rlov5
must be owned by oracle:dba with 660 permission. This is not so in this server.
Is there anyway to check from unix side, how to find out whether /dev/vg01/lvol3 thru lvol5 are used as raw devices by oracle.
Thank you all.
Rajose.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2007 06:41 AM
06-20-2007 06:41 AM
Re: how to find raw devices being used
Usually I create soft links to make the raw devices visible.
To see what devices are necessary, try and start oracle and check the alert logs. Every device it needs will show up in the logs.
Checking the actual init.ora configuration will also be helpful.
I'd also see no harm in going with your first impression and changing the ownership on the suspected devices. If something else is using them the change will probably error out.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2007 06:45 AM
06-20-2007 06:45 AM
SolutionIn your case, it's clear that lvol3-lvol5 are not raw volumes because 'fstyp' reports a filesystem in existence, and because the ownership and mode of the files is not appropriate. To see what is on the lvols, you could always create mountpoints and try to 'mount' them and look around.
In general, symlinks from Oracle datafiles pointing to rlvol device files are a dead giveaway that the database uses raw devices.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2007 07:17 AM
06-20-2007 07:17 AM
Re: how to find raw devices being used
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2007 08:39 AM
06-20-2007 08:39 AM
Re: how to find raw devices being used
Also splex respone of checking filesystem was useful. Since there is filesystem on it, it is obvious that it is not raw device.
Thank you folks.
Rajose.