1752761 Members
5081 Online
108789 Solutions
New Discussion юеВ

Re: Error export NFS

 
SOLVED
Go to solution
Eli Daniel
Super Advisor

Error export NFS

hi,
i have to problem mount nfs
nfs server: sapl917
SAPL917:/usr/sbin> exportfs -i -o root=sapl903 /temporal

nfs client: sapl903
SAPL903:/> mount -F nfs sapl917:/temporal
mount: sapl917:/temporal was either ignored or not found in /etc/fstab

This is NFS temporal



17 REPLIES 17
Eli Daniel
Super Advisor

Re: Error export NFS

Operation System HP-UX 11.23 64 Bit
OldSchool
Honored Contributor
Solution

Re: Error export NFS

"...ignored or not found in /etc/fstab"

Is it in fstab?

what happens if you do:

mount sapl917:/temporal /

???
Eli Daniel
Super Advisor

Re: Error export NFS


change it

NFS CLIENT: SAPL903
SAPL903:/> mount -F nfs sapl917:/temporal /temporal
mount: /temporal: No such file or directory

the problem continues
Eli Daniel
Super Advisor

Re: Error export NFS

the file "fstab" can change with the aplication up?
no affect the apliccation run operation system?
OldSchool
Honored Contributor

Re: Error export NFS

Eli:

NFS CLIENT: SAPL903
SAPL903:/> mount -F nfs sapl917:/temporal /temporal
mount: /temporal: No such file or directory

ok, the directory /temporal must exist on the client so that sapl919:/temporal can be mounted on it. this is the "mount point" for the NFS file system.

If this is just a one-time use, you don't need to change fstab, if you want it to mount automatically at boot, then fix it. it should not impact anything else.

Prasanth Thomas
Valued Contributor

Re: Error export NFS

Hello Daniel,

<>

As i can see that you did not give the mount point in your command. Please give the same.


Regards,,
PT.
Prasanth Thomas
Valued Contributor

Re: Error export NFS

Hello Daniel,

otherwise you have define in /etc/fstab.

Rgds,
PT.
Prasanth Thomas
Valued Contributor

Re: Error export NFS

The /temporal directory is not existing on the server for confirmation please run the below command from root directory.

ls -ltr temporal

Regards,
Prasanth Thomas.
Eli Daniel
Super Advisor

Re: Error export NFS

this correct, in the nfs client add mount point
mkdir tempura

next:
mount -F nfs sapl917:/temporal /tempura

other question:

if nedd modify the owner to NFS
what have to do?

in the NFS SERVER
exportfs (SIDADM)
example:
exportfs -i -o SIDADM=sapl903 /temporal
this is correct?