- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Export file system
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
11-12-2002 01:09 AM
11-12-2002 01:09 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 01:08 AM
11-12-2002 01:08 AM
Re: Export file system
You can use samba ... to share a filesystem...other users can mount the fs and can access the directories
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 01:19 AM
11-12-2002 01:19 AM
SolutionThe following steps are necessary to mount Filesystems via NFS:
Situation machine a has a directory and machine b wants to mount it:
on machine a:
- in /etc/rc.config.d/nfsconf NFS_SERVER=1
- /sbin/init.d/nfs.server start
- Filesystem in /etc/exports
- exportfs -a
on machine b:
- in /etc/rc.config.d/nfsconf NFS_CLIENT=1
- /sbin/init.d/nfs.client start
- mkdir /nfs_mountpoint
- mount
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 01:22 AM
11-12-2002 01:22 AM
Re: Export file system
vi /etc/exports
If this is the first time you are using the server for NFS then
/etc/rc.config.d/nfsconf
make sure that NFS_SERVER=1
Then do a
/sbin/init.d/nfs.server stop
/sbin/init.d/nfs.server start
do a exportfs and check the file system shared
#exportfs
On the client
#mount
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 01:36 AM
11-12-2002 01:36 AM
Re: Export file system
make an entry of the file system to be exported in /etc/exports in a seperate line
#exportfs -a
#exportfs
will show you the exportable file system
Make sure NFS daemons are running both at server as well at client
At the client side
#mount