- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Local fileystem Mount point is in Cluster Aware fi...
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
04-08-2008 01:08 AM
04-08-2008 01:08 AM
Greetings of the Day!
We have Three Volume Groups in our cluster system presented from the SAN
/dev/VG_EPR_DATA
/dev/VG_EPR_LOG
/dev/VG_EPR_ORA
The /dev/VG_EPR_DATA , /dev/VG_EPR_LOG are Cluster Aware and /dev/VG_EPR_ORA is local VG for the node1
The /dev/VG_EPR_DATA , /dev/VG_EPR_LOG are contains differnt LVs which are having the failover facility
There is one Lv in /dev/VG_EPR_DATA Volume group called /dev/VG_EPR_DATA/LV_EPR_ORCL and its mount point is /oracle
and /dev/VG_EPR_ORA having only one LV called /dev/VG_EPR_ORA/LV_EPR_ORA and its mount point is /oracle/EPR/102_64
Now my mount point for the /dev/VG_EPR_ORA/LV_EPR_ORA is /oracle/EPR/102_64, since my /dev/VG_EPR_DATA/LV_EPR_ORCL is cluster aware
and it contails the mount point of /dev/VG_EPR_ORA/LV_EPR_ORA. due to this my /dev/VG_EPR_ORA/LV_EPR_ORA filesytems not getting mount automatically needs to mount mannully every time.
what will be the solution for the above sinario
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 01:23 AM
04-08-2008 01:23 AM
Solutionyou have a filesystem that is part of a cluster and is mounted at /oracle
you have another filesystem that is not part of the cluster and is just local, and you want to nount this at /oracle/EPR/102_64
That's just not going to work - having a local filesystem mountpoint on a clustered filesystem is just plain dumb.
This isn't a question of 'finding a solution', this is just bad design. The only way this is ever going to work is to have a totally seperate mount point outside of the filesystem controlled by the cluster. Not least cos your cluster failover will never work properly as you have it now...
So I'd suggest you mount the LV /dev/VG_EPR_ORA/LV_EPR_ORA somewhere like /oracle2/EPR/102_64 or whatever.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 01:39 AM
04-08-2008 01:39 AM
Re: Local fileystem Mount point is in Cluster Aware filesystem
Your understanding absolutely correct,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 02:34 AM
04-08-2008 02:34 AM
Re: Local fileystem Mount point is in Cluster Aware filesystem
But i need some more details
like shall i put a entry mount /dev/VG_EPR_ORA/LV_EPR_ORA /oracle/EPR/102_64 in to the CUTOMER_DEFINED_FUNCTIONS in the control file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 02:47 AM
04-08-2008 02:47 AM
Re: Local fileystem Mount point is in Cluster Aware filesystem
This is NOT a good idea...
Let's say as you detail that you put a mount command in the customer defined run commands... now what happens when you want to failover the package to the other node? What happens when the package is running on the other node and then fails over to this node?
You need to rethink your filesystem and directory structure or you will just end up with a messy hack which you *will* regret.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 03:36 AM
04-08-2008 03:36 AM
Re: Local fileystem Mount point is in Cluster Aware filesystem
I Agree with you,
Thanks for your honest reply.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 03:38 AM
04-08-2008 03:38 AM
Re: Local fileystem Mount point is in Cluster Aware filesystem
I found the solution about my query.