Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem:
Server = RHEL 6 CSB
Client = RHEL 5.7 workstation
with 5.7 set up as the server I could mount dirs on CSB ok.
With CSB as the server I had to jump through all sorts of hoops (ask steved) to get it working.
Mostly I received the following sorts of errors:
failed: RPC Error: Authentication error
mount: mount to NFS server 'daobrien' failed: RPC Error: Program not registered
Trying with nfs4 produced:
mount.nfs4: Permission denied
Firewall on both ends disabled.
SELinux in permissive.
Command used on client:
[root@jupiter ~]# mount -vvv daobrien:/home/daobrien/sandbox/OpenShift /home/david/sandbox/
# cat /etc/exports
/home/daobrien/sandbox/OpenShift *(rw,no_root_squash)
Version-Release number of selected component (if applicable):
Server:
nfs-utils-1.2.3-7.el6.x86_64
nfs-utils-lib-1.1.5-3.el6.x86_64
Client:
nfs-utils-lib-1.0.8-7.6.el5
nfs-utils-1.0.9-54.el5
How reproducible:
Steps to Reproduce:
1. Export a dir on the server
2. Disable both firewalls while setting up/testing
3. Run mount command as described above
Actual results:
Error messages as shown above. /var/log/messages also shows messages like:
Aug 9 02:25:30 daobrien rpcbind: connect from 192.168.1.5 to getport/addr(nfs): request from unauthorized host
Expected results:
Additional info:
eventually ran this to get it to work:
pkill rpc.mountd && service nfslock restart && service nfs restart
AND
commented out all lines in /etc/hosts.allow
# ALL: 127.0.0.1 : ALLOW
# sshd: ALL : ALLOW
# ALL: ALL : DENY
http://fpaste.org/Kwtg/ has rpcinfo -p (for now).
I did try adding nfsd to the allow list but that didn't help.