- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to configure NFS server?
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
04-13-2001 08:07 PM
04-13-2001 08:07 PM
How to configure NFS server?
How to share a file system in a server? what is ther command to view the shared file system? in HP_UX 10.20 server.
Looking forward for help.
Bala.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2001 12:57 AM
04-14-2001 12:57 AM
Re: How to configure NFS server?
# /sbin/init.d/nfs.server start
# /sbin/init.d/nfs.server stop
You can see which directories are exported for use by NFS clients with...
# exportfs
Directories that become NFS exported have extries in a file called /etc/exports. See the manual for the command exports...
# man exports
...and then put some entries in the exports file for those directories you want to make available.
Run exportfs again to export these directories...
# exportfs -a
The file /etc/xtab contains a list of all NFS exported directories also...
# cat /etc/xtab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2001 02:57 AM
04-14-2001 02:57 AM
Re: How to configure NFS server?
The follwoing options are available as well:
-a Print all remote mounts in the format name:directory where hostname is the name of the client, and directory is the directory or root of the file system that was mounted.
-e Print the list of exported file systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2001 02:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2001 02:33 PM
04-15-2001 02:33 PM
Re: How to configure NFS server?
#showmount -a
hp:/home
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2001 02:42 AM
04-16-2001 02:42 AM
Re: How to configure NFS server?
have a look at networked file systems section.
When exporting the filesystems its best to export with verbose mode to check the syntax of /etc/exports
use
exportfs -av
other than that, setup via
/etc/rc.config.d/nfsconf
and
/sbin/init.d/nfs*
Later,
Bill