- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Is sort working in this case.
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
03-29-2006 08:06 PM
03-29-2006 08:06 PM
Is sort working in this case.
I want to run command cfsumount on some nested mount points.
I did this.
bash-2.02# mount | sort -rk1 | awk '/nmnt/ {print $1}'
/nmnt4dg1v4/nmnt4dg2v4/nmnt4dg3v4
/nmnt4dg1v4/nmnt4dg2v4
/nmnt4dg1v4
/nmnt3dg1v3/nmnt3dg2v3/nmnt3dg3v3/nmnt3dg4v3
/nmnt3dg1v3/nmnt3dg2v3/nmnt3dg3v3
/nmnt3dg1v3/nmnt3dg2v3
/nmnt3dg1v3
/nmnt2dg1v2/nmnt2dg2v2/nmnt2dg3v2/nmnt2dg4v2
/nmnt2dg1v2/nmnt2dg2v2/nmnt2dg3v2
/nmnt2dg1v2/nmnt2dg2v2
/nmnt2dg1v2
/nmnt1dg1v1/nmnt1dg2v1/nmnt1dg3v1/nmnt1dg4v1
/nmnt1dg1v1/nmnt1dg2v1/nmnt1dg3v1
/nmnt1dg1v1/nmnt1dg2v1
/nmnt1dg1v1
I want to unmount (cluster wide) all of them.
so i am executing following command.
bash-2.02# cfsumount `mount | sort -rk1 | awk '/nmnt/ {print $1}'`
Error: V-35-42: System [/nmnt4dg1v4/nmnt4dg2v4] not part of the Cluster OR invalid system name.
I am not getting 2 thinks.
1. Why "/nmnt4dg1v4/nmnt4dg2v4" is selected first. It should be "/nmnt4dg1v4/nmnt4dg2v4/nmnt4dg3v4" as this is what is shown by previous command output.
2. /nmnt4dg1v4/nmnt4dg2v4 is part of the cluster then why it is showing that it is not part of the cluster.
Thnaks in advance.
Regards.
Prasad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2006 08:18 PM
03-29-2006 08:18 PM
Re: Is sort working in this case.
Thnaks a lot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2006 08:44 PM
03-29-2006 08:44 PM
Re: Is sort working in this case.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2006 08:46 PM
03-29-2006 08:46 PM
Re: Is sort working in this case.
what was the answer to the problem?
This will help future users with the same problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2006 03:50 PM
03-30-2006 03:50 PM
Re: Is sort working in this case.
Actually reason is way cfsumount is designed.
See, its syntax ==>
cfsumount mount_point <
cfsumount mount_point
It expects only one mount point, next all are considered as systems.
That is why I got error message =====>
System [/nmnt4dg1v4/nmnt4dg2v4] not part of the Cluster OR invalid system name.
Thanks for your replay.
Very sorry I wasted your time
Thanks & regards.
Prasad