- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Multiple mounts of a single disk
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
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
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-07-2002 08:26 AM
тАО11-07-2002 08:26 AM
can I currently mount the same disk on two different machines simply using HP-UX 11.x ? Do I need any other software?
Don't take care of the physical shareability of the disk: it is guarantee by a SCSI bus (SC10) or by a Fiber Channel system (DS2405)
Thanks a lot
Enrico
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2002 08:31 AM
тАО11-07-2002 08:31 AM
Re: Multiple mounts of a single disk
It could be prefered to use exported NFS file systems instead.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2002 08:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2002 08:39 AM
тАО11-07-2002 08:39 AM
Re: Multiple mounts of a single disk
You can acxtually mount the filesystems rw using just HP-UX commands but as soon as writes to the filesystem occur absolute chaos is guaranteed.
If you are using only raw/io AND the application takes care of any synchronization then you can do this but if any 'cooked' (filesystem) i/o is invovled then the answer is only is read-only for all hosts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2002 08:40 AM
тАО11-07-2002 08:40 AM
Re: Multiple mounts of a single disk
On local machine (server1) there are 2 ways;
1: exportfs G??i G??o root=server2 /db-backups2
That will export /db-backups2 for use by user G??rootG?? on host G??server2G??
2: vi /etc/exports
/db-backups2 G??root=server2 (add that line to give root full access)
/db-backups2 G??user=server2,ro (add that line to give user read access)
Now you have to export them physically:
/usr/sbin/exportfs G??av (add & verify export directories from /etc/exports file)
/usr/sbin/exportfs G??auv (unexport all currently exported directories, if you are not the only administrator
of the server, then don't use this command because if someone else has exported something you will unexport their directories, just use:
/usr/sbin/exportfs G??uv /db-backups2
Now on the remote host (server2). You don't have to use the same mount point name:
1. mkdir /db-backups2
mount G??F nfs server1:/db-backups2 /db-backups2
or
2. mkdir /tmpbkup2
mount G??F nfs server1:/db-backups2 /tmpbkup2
If you want the new nfs volume to mount at boot time, add the following to /etc/fstab
server1:/db-backups2 /db-backups2 nfs rw,hard 0 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2002 08:48 AM
тАО11-07-2002 08:48 AM
Re: Multiple mounts of a single disk
Chuck J