HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: NFS and its setup?
Operating System - HP-UX
1834988
Members
2294
Online
110073
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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-16-2002 02:49 AM
04-16-2002 02:49 AM
All,
If possible, could someone provide a whistle stop crib sheet for what I need to look at for a crash lesson in using nfs.
I am trying to mount/provide a mount point for a server disk so that I can get remote access.
I have been looking at some of the relevant files i.e
/etc/exports (/etc/xtab)
/var/adm/inetd.sec
/etc/fstab
ecetera
thanks in advance guru's
John
If possible, could someone provide a whistle stop crib sheet for what I need to look at for a crash lesson in using nfs.
I am trying to mount/provide a mount point for a server disk so that I can get remote access.
I have been looking at some of the relevant files i.e
/etc/exports (/etc/xtab)
/var/adm/inetd.sec
/etc/fstab
ecetera
thanks in advance guru's
John
chicken or egg first?
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 02:54 AM
04-16-2002 02:54 AM
Solution
Hi,
Take a look at these threads, maybe they can help you a bit.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0xd8f3c6af36b7d5118ff10090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x0f6a1012aa92d5118ff10090279cd0f9,00.html
Good luck, E.
Take a look at these threads, maybe they can help you a bit.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0xd8f3c6af36b7d5118ff10090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x0f6a1012aa92d5118ff10090279cd0f9,00.html
Good luck, E.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 02:57 AM
04-16-2002 02:57 AM
Re: NFS and its setup?
Hi I didnt quite understand your question...
What do yo need to be able to mount an exported FS?
1) the server exporting FS is in /etc/hosts? or can you ping its name successfully
2) HAs he really started his NFS server?
3) HAve you startes your NFS client services (If not: /sbin/init.d/nfs.client start)?
All the best
Victor
What do yo need to be able to mount an exported FS?
1) the server exporting FS is in /etc/hosts? or can you ping its name successfully
2) HAs he really started his NFS server?
3) HAve you startes your NFS client services (If not: /sbin/init.d/nfs.client start)?
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 03:09 AM
04-16-2002 03:09 AM
Re: NFS and its setup?
ok here 's a cookbook for you :
ther are 2 sides , the server , which ios going to excp[prt te directories you specified and the client which is going to mount them , I will now refer to the server setup and the client setup separately
SERVER:
edit the file /etc/rc.config.d/nfsconf and set following parameters
NFS_SERVER=1
START_MOUNTD=1
or go into SAM to the file systems submenu and activate the NFS server , if you duidn't do it with SAM then you need to reboot the server
then edit /etc/exports
in there you specify the directories to export in following format
/usr
/var/adm
you can use specific export options but I'm keeping it simple here , I refer to man pages of exportfs , nfs , mount and mount_nfs for more info , also the manuals of HP_UX can help here
If nfs server is already running then execute
/usr/sbin/exportfs -ua
/usr/sbin/exportfs -a
the filesystems in exports will be exported , check this with following command
/usr/sbin/exportfs
this generates a list of the exported filesystems with possible export options
CLIENT :
if filesystems are available on the NFS server edit /etc.rc.config.d/nfsconf
alter following line
NFS_CLIENT=1
or use SAM to activate the NFS client , again going in the disks and filesystems submenus or if you didn't use SAM to launch the client restart the NFS Client reboot the cleint
edit /etc/fstab , put in lines like
nfsservername:/var/adm /localdirectory
and have the system re-read the fstab file
or manually mount the filesystem e.g.
mount nfsservername:/var/adm /localdirectory
This is the simples way to do it , most of this can be done from SAM , from the disk and filesystems submenue , it conatinf a NFS subsection which allows you to activate both server and client and export and mount filesystems , hope this help and is clear enough
ther are 2 sides , the server , which ios going to excp[prt te directories you specified and the client which is going to mount them , I will now refer to the server setup and the client setup separately
SERVER:
edit the file /etc/rc.config.d/nfsconf and set following parameters
NFS_SERVER=1
START_MOUNTD=1
or go into SAM to the file systems submenu and activate the NFS server , if you duidn't do it with SAM then you need to reboot the server
then edit /etc/exports
in there you specify the directories to export in following format
/usr
/var/adm
you can use specific export options but I'm keeping it simple here , I refer to man pages of exportfs , nfs , mount and mount_nfs for more info , also the manuals of HP_UX can help here
If nfs server is already running then execute
/usr/sbin/exportfs -ua
/usr/sbin/exportfs -a
the filesystems in exports will be exported , check this with following command
/usr/sbin/exportfs
this generates a list of the exported filesystems with possible export options
CLIENT :
if filesystems are available on the NFS server edit /etc.rc.config.d/nfsconf
alter following line
NFS_CLIENT=1
or use SAM to activate the NFS client , again going in the disks and filesystems submenus or if you didn't use SAM to launch the client restart the NFS Client reboot the cleint
edit /etc/fstab , put in lines like
nfsservername:/var/adm /localdirectory
and have the system re-read the fstab file
or manually mount the filesystem e.g.
mount nfsservername:/var/adm /localdirectory
This is the simples way to do it , most of this can be done from SAM , from the disk and filesystems submenue , it conatinf a NFS subsection which allows you to activate both server and client and export and mount filesystems , hope this help and is clear enough
...knowing one ignores a greath many things is the first step to wisdom...
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP