- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to share HP UX Directory
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
09-11-2003 03:51 AM
09-11-2003 03:51 AM
I have to share Directory in my system to Allow
another Persons to access it (the Other Persons aloso that use Hp unix ) ..
how to do that ..
I thing in Sun unix There is (share command)
but in HP Unix how to share The Directory ..
many Thanks
and sorry for My English .
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 03:55 AM
09-11-2003 03:55 AM
Re: How to share HP UX Directory
In SAM, set up the local directory for NFS export. On the other machine set it up for NFS import. Make sure each host has the other in /etc/hosts (or whatever hostname resolution you use).
Hope this helps!
Rob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 03:57 AM
09-11-2003 03:57 AM
Re: How to share HP UX Directory
You can use nfs to share the dirs.
edit /etc/exports and add your dir in the server. Restart the nfs server. man exports for more details.
mount the dirs in the client to access those dirs.
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 04:03 AM
09-11-2003 04:03 AM
Re: How to share HP UX Directory
/myshare hpuxb
If you want the "root" user to have access to it also, you would make it look like this
/myshare -root=hpuxb
On hpuxb you mount make a directory for example called /hpuxashare and do
mount hpuxa:/myshare /hpuxashare
You need only ensure that hpuxa has the nfs server running and that hpuxb has the nfs client. Also you might want to adjust the permissions on the directories
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 04:06 AM
09-11-2003 04:06 AM
Re: How to share HP UX Directory
Apologies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 04:13 AM
09-11-2003 04:13 AM
Re: How to share HP UX Directory
You can use NFS-technology. Easy way
is to do it by SAM. You have to export
needed directory from your server.
Then from other mashine you must import
it again by using SAM or command:
#mkdir /localdir
#mount -F nfs server:/shareddir /localdir
It is easy to do.
Both mashines have to be added on its
/etc/hosts-files. Check also if
your NFS-server&client is running.
If not,you could do:
#/sbin/init.d/nfs.server start
Regards..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 04:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 04:24 AM
09-11-2003 04:24 AM
Re: How to share HP UX Directory
check the attachement
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 04:35 AM
09-11-2003 04:35 AM
Re: How to share HP UX Directory
many many Thanks
I Solved it ..
Hot Regards ..