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-23-2005 12:42 PM
11-23-2005 12:42 PM
1) What is NFS (Network File System) used for?
2) How to configure NFS?
3) How to disable NFS? Such as disable its service?
regards.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 01:04 PM
11-23-2005 01:04 PM
Re: NFS
This will answer you about all your quesions
http://docs.hp.com/en/5991-1811/index.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 01:12 PM
11-23-2005 01:12 PM
Re: NFS
1. NFS is used for sharing a remote file system with clients. Normally static binaries can be kept in this. The benefit will be that changes at only one place will reflect for all clients.
2. There are different ways of configuring NFS like AutoNFS, NFS, High Available NFS etc.
The simplest to configure will be to make entry in /etc/exports of the server for the file system to be exported and issue a command
#exportfs -a (On the NFS Server)
And then mount the same on clients by
#mount -F NFS server:/exported_file_system /mountpoint
3. If you have manually done so only once then unmounting the file system will remove this.If you have configure it through /etc/fstab and conf file then you need to disable entries in respective files to disable it.
For stopping once
#/sbin/init.d/nfs.core stop ( For Both server and client)
#/sbin/init.d/nfs.client stop (For clients)
#/sbin/init.d/nfs.server stop (For servers)
The documentation is also here
http://docs.hp.com/en/5991-1811/index.html
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 04:05 PM
11-23-2005 04:05 PM
Re: NFS
Thanks for your reply.
1) Is NFS only applicable to machine which is same platform? HP-UX to HP-UX? Can it apply to HP-UX server (such as RP7410) and a normal P4 PC?
2) If I want to create NFS called share at /, can I hv the step by step to do it? Any setting related to host.equiv and rhosts?
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 04:40 PM
11-23-2005 04:40 PM
SolutionTo configure NFS server in hp unix, do the following steps..
# vi /etc/rc.config.d/nfsconf , Set NFS_SERVER and START_MOUNTD to 1
for example..
NFS_SERVER=1
START_MOUNTD=1
save and come out..
vi /etc/exports
/
save and come out
#exportfs -a
#/sbin/init.d/nfs.server start
** to desible the NFS service ..
Either u can stop the service..
#/sbin/init.d/nfs.server stop
or..
vi /etc/rc.config.d/nfsconf
Set NFS_SERVER and START_MOUNTD to 0
for example..
NFS_SERVER=0
START_MOUNTD=0
Go to client machine..
#mount
u can modify the fstab file for automount NFS directory after system reboot..
NFS service can enable in any unix platform..
Regards
Indrajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 05:59 PM
11-23-2005 05:59 PM
Re: NFS
Used to change File system across machines. It is applicable to *NIX machines like hpux -> linux, linux -> sun os like that.
2) How to configure NFS?
In hpux, It is simple. Start nfs.server, nfs.client and nfs.core startup scripts available in /sbin/init.d/ location.
Export file system as,
# exportfs -iv /fs
# exportfs -v
Put that into /etc/exports file for permanent export.
In client side, using mount command mount that file system.
3) How to disable NFS? Such as disable its service?
To disable it, go to /etc/rc.config.d/nfsconf file as,
NFS_CLIENT=-0
NFS_SERVER=0
AUTOMOUNT=0
START_MOUNTD=0
or simply stop services as,
# /sbin/init.d/nfs.server stop
# /sbin/init.d/nfs.client stop
# /sbin/init.d/nfs.core stop
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 06:19 PM
11-23-2005 06:19 PM
Re: NFS
1) Is NFS only applicable to machine which is same platform? HP-UX to HP-UX? Can it apply to HP-UX server (such as RP7410) and a normal P4 PC?
NFS is applicable to *NIX machines only. Not with windows. You have to use SAMBA for hetro genous platform file system sharing.
2) If I want to create NFS called share at /, can I hv the step by step to do it? Any setting related to host.equiv and rhosts?
hosts.equiv and rhosts are related with remsh or r* commands execution.
To share / then,
# NFS server:
i) Start nfs.server,nfs.client.nfs.core services.
ii) exportfs -iv -o rw=clienthostname /
iii) Put the entry into /etc/exports file
iv) exportfs -v
has to display exported file system
# NFS client:
i) Start services.
ii) mkdir /serverroot
iii) mount server:/ /serverroot
iv) Put this entry into /etc/fstab to keep permanet setting.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 06:58 PM
11-23-2005 06:58 PM
Re: NFS
May I know what is *nix stands for?
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 07:33 PM
11-23-2005 07:33 PM