Operating System - HP-UX
1753797 Members
6923 Online
108804 Solutions
New Discussion юеВ

Re: Error on mounted remote file systems

 
SOLVED
Go to solution
Chui Kock You_1
Frequent Advisor

Error on mounted remote file systems

Dear Experts,

I try to run the Mounted Remote File Systems through SAM in D Class machine (to mount remote file from L Class), but not sure why error appear.

I have check the permission in L Class it seem OK.

D class server configuration
Model:D270
Operating System:HPUX 10.20

L class server configuration
Model:L1000
Operating System:HPUX 11.00

Attached is the screen shot for the error.

Please advice what is wrong ?

Regards
Chui
16 REPLIES 16
Johnson Punniyalingam
Honored Contributor
Solution

Re: Error on mounted remote file systems

can we use command line to try mount the NFS mount point ?


#mount NFS_SERVER_NAME:/ABC /ABC_NFS
Problems are common to all, but attitude makes the difference
Michael Steele_2
Honored Contributor

Re: Error on mounted remote file systems

Hi

This had been reported as bug JAGae26582. The fix is SAM patch PHCO_36562.

Note that SAM has it's own command set and is different from HP-UX. So it needs to be patched up serparately. If you are not up to date then you're probably missing many SAM patches.

Unfortunately for you, this fix is an 11.11 fix with nothing for 11.00.
Support Fatherhood - Stop Family Law
Chui Kock You_1
Frequent Advisor

Re: Error on mounted remote file systems

Hi Johnson,

Still not able to mount error..
Is the command correct ?

# mount amlicmgen02:/backL1000
mount: amlicmgen02:/backL1000 was either ignored or not found in /etc/fstab

Regards
Chui
Johnson Punniyalingam
Honored Contributor

Re: Error on mounted remote file systems

Above error looks like you have not configured NFS mount point share .

Couple things to start from scratch, becoz info post on your original post its very simple and we need to check step by step

1. can ping D Clasd Server <=> L class server

verse vise ?

2. ps -ef |grep nsf

3. # showmount -e servername
current export list on NFS server

# showmount -a
currently connected NFS clients


Problems are common to all, but attitude makes the difference
Johnson Punniyalingam
Honored Contributor

Re: Error on mounted remote file systems

# mount amlicmgen02:/backL1000 ? -. you are missing ??

mount: amlicmgen02:/backL1000 was either ignored or not found in /etc/fstab

when your trying to mount like above "it will look for the mount point in your "NFS Client"
without specifying were /which directory . System will sreach in "Current fstab file of your nfs client"

Example :-

# mount NFS_SERVER_NAME:/ABC /ABC_NFS_Client

NFS_SERVER_NAME= amlicmgen02
/ABC = Source Directory of your NFS Server
/ABC_NSF_Client = target are were you want to mount

Please take note /ABC_NSF_Client -> directory is temporary mount point for your "NFS Server mount point to have has NFS mount point under your NFS Client

Problems are common to all, but attitude makes the difference
Johnson Punniyalingam
Honored Contributor

Re: Error on mounted remote file systems

Also please refer to attachment file

Please read and understand the document
How to setup "NSF Server & NFS Client"

and then try to mounted remote file systems


Problems are common to all, but attitude makes the difference
Chui Kock You_1
Frequent Advisor

Re: Error on mounted remote file systems

Hi Johnson,

Below is the result show in D Class server.

# ps -ef |grep nsf
root 16024 16010 0 15:01:59 ttyp2 0:00 grep nsf

# showmount -e amlicmgen02
export list for amlicmgen02:
/backup (everyone)


# showmount -a
#

Regards
Chui
R.K. #
Honored Contributor

Re: Error on mounted remote file systems

Hello..

Looks like a typo in previous thread.Correct command is:
# ps -ef |grep nfs

>># showmount -e amlicmgen02
>> export list for amlicmgen02:
>> /backup (everyone)

This means that /backup is exported from nfs server.

All you need is to mount /backup onto the client by using:

# mount :/backup /newdir
Where /newdir is a newly created directory on client (or any other directory that you wish).



Don't fix what ain't broke
R.K. #
Honored Contributor

Re: Error on mounted remote file systems

If above "mount" command works well (check with #bdf), then to make this mount point permanent on NFS CLIENT, make en entry in fstab:

# vi /etc/fstab
:/backup /newdir nfs soft 0 0

This will survive reboot.
Don't fix what ain't broke