Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • seems like thats exactly what I'm looking for. Allow me to ask one question regarding your answer as I'm not a linux expert: Why do we have to use KillSignal=SIGCONT? Sockets=xxx contains the name of the Socket you created above, correct? The socket-file (in this case test.socket?) has to be placed in the same directory as the service? Commented Sep 4, 2019 at 17:21
  • 1
    I added clarifications in the answer. Commented Sep 4, 2019 at 18:04
  • Unfortunately it's not exactly working as intended. For debugging purpose I opened 3 terminals (journal to view the log, a console to view the fifo and a terminal to pass the command (echo "/help" > /run/minecraft.control). Unfortunately, the journal just tells me that the entered command is unknown and I should type /help for help. Commented Sep 4, 2019 at 20:08
  • Could it be expecting \r\n at the end? Try instead: printf "/help\r\n" > /run/minecraft.control Commented Sep 6, 2019 at 5:36