Create NFS Client


 
Thread Tools Search this Thread
Operating Systems HP-UX Create NFS Client
# 1  
Old 01-27-2012
Create NFS Client

I have found numerous articles on creating share on HPUX 11.1 (data source prepared for export) but I did not find from client's perspective what to do?

I have a shared dir (all NFS ready full permissions) that I would like to access from a HP server what I need to do on this HPUX to be able to mount or see it? Any dumb down version would be greatly appreciated.
# 2  
Old 01-27-2012
You just need to mount the share if it's exported correct on the server.

So on HPUX client you need to issue :
Code:
showmount -e remotehost
# .. will list avalible NFS exports from remotehost
mount server:/export/fs /your/local/mountpoint

Hope that helps
Regards
Peasant.
# 3  
Old 01-27-2012
Thank you sir, I will try and update

---------- Post updated at 06:42 PM ---------- Previous update was at 06:29 PM ----------

The showmount works great when doing the mount the following error occurs:
Code:
mount server:/Backup/SAS_Depots /sasutl
nfs mount: get_fh: server:: RPC: Unknown host

I will do some research and would appreciate any further insight.

---------- Post updated at 06:43 PM ---------- Previous update was at 06:42 PM ----------

Ohhh, sorry I see what I did wrong, I needed to provide server as a value oops. Smilie

Last edited by vbe; 01-29-2012 at 04:43 AM.. Reason: modif quote2code
# 4  
Old 01-29-2012
Welcome...
Yes you were to provide servername:/exporteddir /mountpoint...
Read again the man pages of mount about the options you can give, be aware also that mounted NFS file system is not without risk of issues (when NFS server is not responding...).
# 5  
Old 01-30-2012
Thank you. I am having another battles that has pushed my project back by weeks. This HP as a client was one aspect.

I have a seagate blackarmour 110 NAS. I created a full access share (using the web Gui), even enabled public access. Re-booted NAS. This is as far I could do anything that is this is my NFS server side and I could not manually add/create an export.

On client (RHEL 6.1) I have this on my /etc/fstab
Quote:
10.20.18.201:/Backup/depot /mnt/dp nfs rw,user 0 0
Issues:
Cannot change permissions
Quote:
chmod: changing permissions of `enterprise-installer-4.2.0.GA_CP06.jar': Operation not permitted
Even where permission is 755 (execute is allowed) the ID that owns it could not execute either.

I read some good articles some were beyond my comprehension/experience. I need to get this app installed but it will not let me execute.

Any insight, doc, pointer, is of great value.
# 6  
Old 01-31-2012
You will need to change permisions on NFS server for that file if it's owned by root.
If it's owned by user, you will need to have defined same UID/GID for that user on both NFS server and client for permissions to work.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Mount NFS Share On NFS Client via bash script.

I need a help of good people with effective bash script to mount nfs shared, By the way I did the searches, since i haven't found that someone wrote a script like this in the past, I'm sure it will serve more people. The scenario as follow: An NFS Client with Daily CRON , running bash script... (4 Replies)
Discussion started by: Brian.t
4 Replies

2. Red Hat

NFS client

Dear All , I have a NFS Server A and NFS client B. I have mounted the respective volume in NFS client. Now I wanted to make this volume as a NFS Server to another machine . Is this possible in Linux. Rgds Jegan R (3 Replies)
Discussion started by: jegaraman
3 Replies

3. AIX

AIX NFS Server and NFS Client

Hi 2 ALL, try to run NFS Server in AIX 7.1 : 1. Step by step on NFS Server node mkdir /tmp/test chgrp staff /tmp/test chmod 775 /tmp/test-- create export directory (fs) mknfsexp -d /tmp/test -t ro exportfs -va show mount -e :/# exportfs -av exports: 1831-187 re-exported /tmp/test... (4 Replies)
Discussion started by: penchev
4 Replies

4. HP-UX

HPUX 11.11 NFS client hang

Hi. I'm having problems with my HP C8000 and 11.11 (ifs client needs to be restarted every week), trying to get it worked out. When I searched the web it seems, I require the following patches: PHKL_41041, PHKL_43823, PHKL_43577 Is there anyway to get hold of these packages? Many thanks... (2 Replies)
Discussion started by: plantage
2 Replies

5. Red Hat

NFS mounting from client pc

The server ip is 10.2.2.24. I have installed nfs-utils package the i have edited /etc/exports i have added the following line /home 10.2.2.0/24(rw,sync,no_root_squash,no_all_squash) i have saved, i have started the nfs service, then i am trying to mount nfs sharing from client machine using... (1 Reply)
Discussion started by: ainstin
1 Replies

6. AIX

AIX NFS Client Logging

My AIX NFS client failed to mount a Windows server NFS service today. Is NFS client logging enabled by default on AIX? If not, is there a way to enable NFS client logging on AIX6.1. Thanks. (0 Replies)
Discussion started by: famasutika
0 Replies

7. AIX

HACMP and NFS client

Hi all, I know there are topics regarding this but didn't found the answer. I have two node HACMP cluster and the application that runs there relies on some NFS mount. The NFS server is some 3rd box that have nothing to do with the cluster. How can I mount the NFS shares only on the active... (5 Replies)
Discussion started by: emoubi
5 Replies

8. Solaris

Solaris 9 as a nfs client -- centos as a nfs server.

Hello, I have a centos as nfs server, its name is centos_A. After I finish the setup of the nfs server, the other linux can access this nfs server immediately via /net/centos_A/* But, My solaris 9 can not access /net/centos_A/* immediately. I have to leave /net/centos_A, and wait for about... (1 Reply)
Discussion started by: bruceharbin
1 Replies

9. Solaris

NFS client service restart

Can any one please tell me the command for NFS client service restart.This is to resolve, NFS mount slowness issue.Mount is very slow for both read and write operations.The below commands are not helping out in this situation. ---------- Post updated at 08:59 AM ---------- Previous update was... (1 Reply)
Discussion started by: ksvaisakh
1 Replies

10. UNIX for Advanced & Expert Users

Windows machine with NFS-Client

Hi all expert, can anybody know how to export windows user home directory on NFS server so user can access there files from windows as well as Linux. In short configure windows machine with an NFS client is there any third party software & how 2 configure it . Any idea. Thanks in... (1 Reply)
Discussion started by: jagnikam
1 Replies
Login or Register to Ask a Question