- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: NFS refresher????
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-20-2003 07:51 AM
10-20-2003 07:51 AM
Rex M - Unix/Database Engineer
ESU#3 Omaha
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 10:49 AM
10-20-2003 10:49 AM
Solutiona) update /etc/exports
For example:
/u1 -root=hostname
/u5 -access=samba1,ro,root=samba1
b) # exportfs -av (* exports contents of /etc/exports file *)
c) showmount (* list exported file systems *)
d) exportfs -ux (* unmounts *)
CLIENT:
a) update /etc/fstab
b) mount /mount_point
Here's an 11.## doc:
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&con=/hpux/onlinedocs/B1031-90048/00/00/6-con.html&toc=/hpux/onlinedocs/B1031-90048/00/00/6-toc.html&searchterms=nfs%7cconfigure&queryid=20031020-164656
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 10:59 AM
10-20-2003 10:59 AM
Re: NFS refresher????
cd /etc/rc.config.d
vi nfsconf
set NFS_SERVER=1 (and if you need the box to be a client, set NFS_CLIENT=1).
save the file.
If either of these was 0 and you want the service then you need to start the daemons:
cd /sbin/init.d
For server:
./nfs.server start
For client:
./nfs.client start
Now you can proceed with the exports and mounts as described above.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 03:07 PM
10-20-2003 03:07 PM
Re: NFS refresher????
Refer to NFS Services Administrator's Guide.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90049/B1031-90049_top.html&con=/hpux/onlinedocs/B1031-90049/00/00/47-con.html&toc=/hpux/onlinedocs/B1031-90049/00/00/47-toc.html&searchterms=up%7cNFS%7cset&queryid=20031020-210037
Also, this doc contains an exhaustive section on troubleshooting.
Hope this helps.
Regards,
Hemanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2003 05:09 AM
10-21-2003 05:09 AM
Re: NFS refresher????
Thanks I got it running.. Now I am getting an error on backup, I want to exclude the exported file system. or eliminate the error. I guess it doesn't matter either way.. Can I change my fbackup graph file and ignor it or do I need to change something else in the way I mounted the file system?
My fbackup log appears as so:
fbackup(1004): session begins on Tue Oct 21 02:26:31 2003
fbackup(1517): /net not backed up - 'n' option (NFS) not specified
fbackup(1517): /pei/snapdrive not backed up - 'n' option (NFS) not specified
fbackup(3203): volume 1 has been used 31 time(s)
fbackup(3024): writing volume 1 to the output file /dev/rmt/1m
fbackup(3055): total file blocks read for backup: 26164667
fbackup(3056): total blocks written to output file /dev/rmt/1m: 26634192
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2003 05:23 AM
10-21-2003 05:23 AM
Re: NFS refresher????
#
/net is set in the default automounter maps.
#
Adjust your automout maps to correct the problem you're getting, or disable automount.
#
# cd /etc
# ll auto*
-rw-r--r-- 1 root root 25 Jul 19 2000 auto_master
-rw-r--r-- 1 root root 172 Sep 28 21:20 auto_parms.log
-rw-r--r-- 1 root root 219 Sep 28 20:29 auto_parms.log.old
# cat auto_master
/net -hosts -nosuid,soft
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2003 05:28 AM
10-21-2003 05:28 AM
Re: NFS refresher????
see below:
# more auto_master
/net -hosts -nosuid,soft
# ls -la auto*
-rw-r--r-- 1 root root 25 Nov 21 2000 auto_master
-rw-r--r-- 1 root root 44 Oct 20 23:41 auto_parms.log
-rw-r--r-- 1 root sys 219 Oct 20 23:35 auto_parms.log.old
it does appear to be in the auto_master
Should I exclude /net and /pei/snapdrive from my fbackup routine in the graph file?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 08:37 AM
11-10-2004 08:37 AM