Bug 637117

Summary: Fix nfs/rpcsvcgssd start priorities
Product: [Fedora] Fedora Reporter: Zdenek Kabelac <zkabelac>
Component: nfs-utilsAssignee: Steve Dickson <steved>
Status: CLOSED CURRENTRELEASE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: low    
Version: rawhideCC: bfields, jlayton, lpoetter, metherid, mschmidt, notting, plautrba, steved
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2011-10-04 15:30:45 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
Log output of systemctl restart nfs.service none

Description Zdenek Kabelac 2010-09-24 11:00:46 UTC
Created attachment 449392 [details]
Log output of systemctl restart nfs.service

Description of problem:

While I've been using nfs before I switched to systemd - I'm not able to start this service with systemd anymore.

Here is just something for 'linux systemd guru masters' which are probably able to decrypt the reason of nfs failure?


Version-Release number of selected component (if applicable):
systemd-10-4.fc15.x86_64

How reproducible:


Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:


Additional info:

Comment 1 Michal Schmidt 2010-09-24 11:13:52 UTC
This is another case of a deadlock when starting of a service triggers a synchronous start of another one, but the latter has an After dependency on the first one.
Specifically here /etc/init.d/nfs does:
   ...
   start)
      ...
      [ -x /usr/sbin/rpc.svcgssd ] && /sbin/service rpcsvcgssd start
      ...

And "systemctl show rpcsvcgssd.service" says:
  After=... nfs.service ...

Comment 2 Zdenek Kabelac 2010-09-24 11:26:19 UTC
Usable workaround here seems to be:

SYSTEMCTL_SKIP_REDIRECT=1 /etc/init.d/nfs restart

Comment 3 Bill Nottingham 2010-09-24 16:36:45 UTC
If nfs has a unilateral dep on rpcsvcgssd such that it starts it always, it shouldn't have a chkconfig priority set earlier than rpcsvcgssd.

Comment 4 Zdenek Kabelac 2010-09-25 13:08:46 UTC
I'm starting nfs only when I need to use on my machine i.e. for kvm guest - there is no reason to run this service all the time or even have it available on demand.

Comment 5 Steve Dickson 2010-09-27 13:10:54 UTC
> If nfs has a unilateral dep on rpcsvcgssd such that it starts it always, it
> shouldn't have a chkconfig priority set earlier than rpcsvcgssd
No. rpcsvcgssd is only need if the NFS server is exported 
secure exports (i.e. exports with the 'sec=krb5:krb5i:krb5p' opts).

To enable the daemon one needs to set the  SECURE_NFS=yes
in /etc/sysconfig/nfs.

Comment 6 Bill Nottingham 2010-09-27 17:01:03 UTC
Still, there's no reason for it to have a hardcoded later priority, if in the circumstances where it is needed, it is always needed before nfsd.

Comment 7 Steve Dickson 2010-12-01 20:14:41 UTC
There are plans afoot to combined the client side daemon (rpc.gssd)
and the server side daemon (rpc.svcgssd) into one daemon. When
that happens (hopefully by f15) I'll remove the hard coded call
to rpc.svcgssd from the nfs start up script.