- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- System Administration
- >
- NFS client start issue
-
- Forums
-
Blogs
- Alliances
- Around the Storage Block
- Behind the scenes @ Labs
- HPE Careers
- HPE Storage Tech Insiders
- Infrastructure Insights
- Inspiring Progress
- Internet of Things (IoT)
- My Learning Certification
- OEM Solutions
- Servers: The Right Compute
- Shifting to Software-Defined
- Telecom IQ
- Transforming IT
- Infrastructure Solutions German
- L’Avenir de l’IT
- IT e Trasformazione Digitale
- Enterprise Topics
- ИТ для нового стиля бизнеса
- Blogs
-
Quick Links
- Community
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Contact
- Email us
- Tell us what you think
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Enterprise.nxt
- Marketplace
- Aruba Airheads Community
-
Forums
-
Blogs
-
InformationEnglish
- 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
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 02:40 AM
03-10-2010 02:40 AM
NFS client start issue
Hello all,
I am trying to setup nfs client on this server.
I am experiencing problem in starting nfs.client on one of hp-ux ll1 server.
Please find below error message when i tried to start the nfs.client.
root@server1:>./nfs.client start
starting NFS CLIENT networking
starting up the rpcbind
rpcbind already started, using pid: 7811
starting up the BIO daemons
/usr/sbin/biod 16
starting up the Status Monitor daemon
/usr/sbin/rpc.statd
starting up the Lock Manager daemon
/usr/sbin/rpc.lockd
mounting remote NFS file systems ...
FAILURE CODE: 126
Mount failed! Possible local filesystem mount.
If local filesystem, then nfs.server will mount it.
mounting CacheFS file systems ...
FAILURE CODE: 126
Mount failed! Possible local filesystem mount.
If local filesystem, then nfs.server will mount it.
Can anybody tell me what is causing this issue?
Thanks & regards
Manoj PU
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 02:55 AM
03-10-2010 02:55 AM
Re: NFS client start issue
If local filesystem, then nfs.server will mount it.
Maybe your client is trying to mount a local filesystem.
Try to start also the server and then re-start the client.
nfs.client stop
nfs.server start
nfs.client start
Horia.
Horia.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 03:01 AM
03-10-2010 03:01 AM
Re: NFS client start issue
Thanks for your response.
I tried as you suggested but no luck. any other suggestion please.
Thanks & regards
Manoj
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 03:19 AM
03-10-2010 03:19 AM
Re: NFS client start issue
>Mount failed! Possible local filesystem mount.
If local filesystem, then nfs.server will mount it.
Please post the output for
nfs.client stop
nfs.server start
nfs.client start
Horia.
Horia.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 03:23 AM
03-10-2010 03:23 AM
Re: NFS client start issue
killing rpc.lockd
killing rpc.statd
killing biod
root@server1:>./nfs.server start
starting NFS SERVER networking
starting up the rpcbind daemon
rpcbind already started, using pid: 19091
starting up the Status Monitor daemon
/usr/sbin/rpc.statd
starting up the Lock Manager daemon
/usr/sbin/rpc.lockd
root@server1:>./nfs.client start
starting NFS CLIENT networking
starting up the rpcbind
rpcbind already started, using pid: 19091
starting up the BIO daemons
/usr/sbin/biod 16
starting up the Status Monitor daemon
rpc.statd already started, using pid: 23747
starting up the Lock Manager daemon
rpc.lockd already started, using pid: 23753
mounting remote NFS file systems ...
FAILURE CODE: 126
Mount failed! Possible local filesystem mount.
If local filesystem, then nfs.server will mount it.
mounting CacheFS file systems ...
FAILURE CODE: 126
Mount failed! Possible local filesystem mount.
If local filesystem, then nfs.server will mount it.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 04:12 AM
03-10-2010 04:12 AM
Re: NFS client start issue
--------------------------------
echo " mounting remote NFS file systems ..."
x=0
/sbin/mount -aQF nfs
set_return
if [ $x -ne 0 ];then
echo " Mount failed! Possible local filesystem mount."
echo " If local filesystem, then nfs.server will mount it."
echo ""
rval=0
fi
##
# mount the CacheFS file systems specified in /etc/fstab.
##
echo " mounting CacheFS file systems ..."
x=0
/sbin/mount -aQF cachefs
set_return
if [ $x -ne 0 ];then
echo " Mount failed! Possible local filesystem mount."
echo " If local filesystem, then nfs.server will mount it."
echo ""
rval=0
fi
--------------------------
mount -a ... How does it look like
/etc/fstab
cat /etc/fstab
Horia.
Horia.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 05:44 AM
03-10-2010 05:44 AM
Re: NFS client start issue
Thanks for the feedback.
Problem has been resolved.
/sbin/mount file was empty.
FAILURE CODE: 126 was coming from the mount command exit code when nfs.client start command was issued.
exit code 126 represents permission denied.
Thanks again for the response.
Regards
Manoj
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 05:48 AM
03-10-2010 05:48 AM
Re: NFS client start issue
empty ?! And you had a running system? How does your filesystems were able to be mounted if the mount command was missing?
Horia.
Horia.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 06:06 AM
03-10-2010 06:06 AM
Re: NFS client start issue
Hi Horia,
From the time stamp of the file,it seems like unkowingly /sbin/mount was nollified yesterday.
We would experienced problem with mounting filesystems if we restart the server.
Thanks & regards
Manoj
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-10-2010 06:21 AM
03-10-2010 06:21 AM
Re: NFS client start issue
Thanks & Regards
Manoj
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2019 Hewlett Packard Enterprise Development LP