- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS configure
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
10-11-2005 03:38 AM
10-11-2005 03:38 AM
pl. guide me how to configure NFS in server and at client side ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2005 03:47 AM
10-11-2005 03:47 AM
Re: NFS configure
on the nfs server
fire up sam
"Networking and Communications"
"Networked File Systems"
"Exported Local Filesystems"
"Actions --> Add Exported File Systems"
on the client
fire up sam
"Networking and Communications"
"Networked File Systems"
"Mounted Remote File Systems"
"Actions --> Add Remote File System"
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2005 03:58 AM
10-11-2005 03:58 AM
Re: NFS configure
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2005 04:23 AM
10-11-2005 04:23 AM
Re: NFS configure
1. Editing the /etc/exports file appropiately
2. re-exporting the exports file with the /usr/sbin/exportfs -a command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2005 04:40 AM
10-11-2005 04:40 AM
SolutionAt server Side:
1. Edit /etc/rc.config.d/nfsconf and set:
NFS_CLIENT=1
NFS_SERVER=1
2. Edit /etc/exports file and add FileSystems to be exported. See man exports for more details.
e.g the entry should look like this for /mnt filesystems:
/mnt -ro
3. # /sbin/init.d/nfs.core start
# /sbin/init.d/nfs.server start
4. # exportfs -a
On Client Side:
1. Edit /etc/rc.config.d/nfsconf and set:
NFS_CLIENT=1
NFS_SERVER=0
2. # /sbin/init.d/nfs.core start
# /sbin/init.d/nfs.client start
3. Then mount the exported filesystem
e.g example mount /mnt filesystem
# mount NFSservername:/mnt /mnt
Also have look at showmount,exportfs commands.
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 03:12 AM
10-18-2005 03:12 AM
Re: NFS configure
but as per procedure given by Mr.Bharat , one error shows at server side after applying command showmount on server shows
server name: rpc: program not register
and at client side at the time of mounting network file system shows error
servername: rpc_prog_not_register
so pl. give me the solution .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 03:39 AM
10-18-2005 03:39 AM
Re: NFS configure
Add the filesytems to /etc/exports
Then export the filesystem
exportfs /filesystem1