[1.0.0] Error InterruptibleStdioStream.cpp:61: Got EOF on stdin; closing
Posted: Mon Jan 11, 2021 1:56 pm
I'm setting up a headless Factorio server on Ubuntu 20.04.
When I start the same with systemd, I get the following:
Interestingly, the game seems to continue running just fine so far.
I don't get this error if I start the server myself (instead of using the service)
Is there something I did wrong with my service file? Or maybe there's something else I did incorrectly?
factorio.service:
When I start the same with systemd, I get the following:
Code: Select all
Error InterruptibleStdioStream.cpp:61: Got EOF on stdin; closing
I don't get this error if I start the server myself (instead of using the service)
Is there something I did wrong with my service file? Or maybe there's something else I did incorrectly?
factorio.service:
Code: Select all
[Unit]
Description=Factorio Headless Server
[Service]
Type=simple
User=factorio
Group=factorio
WorkingDirectory=/opt/factorio
Restart=on-failure
KillSignal=SIGINT
ExecStart=/opt/factorio/bin/x64/factorio --start-server /opt/factorio/saves/hugeore.zip --server-settings /opt/factorio/data/server-settings.json --server-adminlist /opt/factorio/data/server-adminlist.json
[Install]
WantedBy=multi-user.target