Things like this keep showing up in my my logs. Any idea what to look for to (1) figure out why and (2) track it to a particular service?
systemd: Failed to mark scope session-19.scope as abandoned : Stale file handle
On 08/19/14 10:49, Steven Stern wrote:
Things like this keep showing up in my my logs. Any idea what to look for to (1) figure out why and (2) track it to a particular service?
systemd: Failed to mark scope session-19.scope as abandoned : Stale file handle
This may help out:
http://cgit.freedesktop.org/systemd/systemd-stable/commit/?id=f517790db5277f...
http://cgit.freedesktop.org/systemd/systemd-stable/tree/src/core/scope.c#n43...
On 08/19/2014 03:13 PM, Edward M wrote:
On 08/19/14 10:49, Steven Stern wrote:
Things like this keep showing up in my my logs. Any idea what to look for to (1) figure out why and (2) track it to a particular service?
systemd: Failed to mark scope session-19.scope as abandoned : Stale file handle
This may help out:
http://cgit.freedesktop.org/systemd/systemd-stable/commit/?id=f517790db5277f...
http://cgit.freedesktop.org/systemd/systemd-stable/tree/src/core/scope.c#n43...
I did this service file myself... does anything here look fishy?
$ more /etc/systemd/system/dropbox.service
[Unit] Description=Dropbox as a system service
[Service] ExecStart=/home/sdstern/.dropbox-dist/dropboxd User=sdstern # 'LANG' might be unnecessary, since systemd already sets the # locale for all services according to "/etc/locale.conf". # Run `systemctl show-environment` to make sure. Environment=LANG=en_US.utf-8
[Install] WantedBy=multi-user.target
On 2014-08-19 22:42, Steven Stern wrote:
I did this service file myself... does anything here look fishy?
$ more /etc/systemd/system/dropbox.service
[Unit] Description=Dropbox as a system service
[Service] ExecStart=/home/sdstern/.dropbox-dist/dropboxd User=sdstern # 'LANG' might be unnecessary, since systemd already sets the # locale for all services according to "/etc/locale.conf". # Run `systemctl show-environment` to make sure. Environment=LANG=en_US.utf-8
[Install] WantedBy=multi-user.target
I don't know anything about dropboxd, but it might be that you need "Type=forking" in the service section.