[Linux] ASF doesn't run even though the service is running / No errors #2738
-
Hi, I been running ASF on my Raspberry Pi for the past 3 years, more or less without issues. Today I had a look at my config file via the ASF-ui and noticed that my "UpdatePeriod" was set to 48, so I changed it 24, saved and waited for ASF to restart. Unfortunately it never came back online and I'm a bit baffled as to why. I attached the last lines from the log before it closed down ( https://hastebin.com/iyuwivipab.apache ) no other logs are being created when I try to start it. I start it with
I close it down with
When I run
I'm not exactly sure as to what happened, is not the first time I change the config file via asf-ui and I never had any problems. Is there a command that I'm missing to get a bit more details? Enabling debug doesn't do much since ASF doesn't actually starts in the first place. The fact that I don't get any errors it confuses me a bit, the service is running, although is showed as defunct.
But nothing happens, what am I missing here? Any help is appreciated, thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
I'll need more details from you, check |
Beta Was this translation helpful? Give feedback.
-
https://hastebin.com/egosoyekeg.http By the looks of it, it can't read the values on [email protected] file, beside editing the ExecStart parameters, I have never touched anything else on that file, plus I just unpacked the files again, so everything should be default. I double check and user asf does have access to /home/asf/ArchiSteamFarm , shouldn't have a problem reading / writing there. |
Beta Was this translation helpful? Give feedback.
-
Thanks, you're using pretty old systemd version (from Debian oldstable), this is probably the root culprit of your issue. Find
Save the file, get to the root shell |
Beta Was this translation helpful? Give feedback.
-
Yes, commenting those two lines worked, it started normally after reboot as well. I'm still running on pi OS based on buster since switching to the newer one requires a fresh install and I'm not that comfortable with moving everything back after install, pretty sure I will screw something up but I guess I might have to do it eventually if this becomes a problem again. Thank you very much for your help, I was really stuck on this one, much appreciated. |
Beta Was this translation helpful? Give feedback.
Thanks, you're using pretty old systemd version (from Debian oldstable), this is probably the root culprit of your issue.
Find
[email protected]
file in/etc/systemd/system
directory, and try to comment out lines 37 and 38, like this:Save the file, get to the root shell
su
orsudo -i
, and then executesystemctl daemon-reload
andsystemctl start ArchiSteamFarm@asf
, see if it helps.