6

我有一个 python 脚本,可以解码来自 USB 设备的输入并将命令发送到 php 脚本。从控制台运行时,该脚本运行良好,但我需要它在启动时运行。

我创建了一个 systemd 服务来启动脚本,它似乎运行良好,除了该systemctl start service-name过程永远不会让我返回命令提示符。在它运行时,我可以完全按照预期与输入设备进行交互。但是,如果我用 ctr-z 退出systemctl start进程,脚本只会运行几秒钟。

这是我编写的 .service 文件:

[Unit]
After=default.target

[Service]
ExecStart=/usr/bin/python /root/pidora-keyboard.py

[Install]
WantedBy=default.target

这是我的python脚本:

#!/usr/bin/env python
import json, random
from evdev import InputDevice, categorize, ecodes
from urllib.request import urlopen

dev = InputDevice('/dev/input/event2')

def sendCommand(c):
    return json.loads(urlopen("http://127.0.0.1/api.php?command="+c).read().decode("utf-8"))
def getRandomStation():
    list = sendCommand('stationList')
    list = list['stations']
    index = random.randint(0, (len(list)-1))
    print(list[index]['id'] + " - " + list[index]['name'])
    sendCommand('s' + list[index]['id'])

print(dev)
for event in dev.read_loop():
    if event.type == ecodes.EV_KEY:
        key_pressed = str(categorize(event))
        if ', down' in key_pressed:
            print(key_pressed)
            if 'KEY_PLAYPAUSE' in key_pressed:
                print('play')
                sendCommand('p')
            if 'KEY_FASTFORWARD' in key_pressed:
                print('fastforward')
                sendCommand('n')
            if 'KEY_NEXTSONG' in key_pressed:
                print('skip')
                sendCommand('n')
            if 'KEY_POWER' in key_pressed:
                print('power')
                sendCommand('q')
            if 'KEY_VOLUMEUP' in key_pressed:
                print('volume up')
                sendCommand('v%2b')
            if 'KEY_VOLUMEDOWN' in key_pressed:
                print('volume down')
                sendCommand('v-')
            if 'KEY_CONFIG' in key_pressed:
                print('Random Station')
                getRandomStation()

如何让脚本从服务文件异步运行,让启动命令完成,脚本可以在后台继续运行?

4

2 回答 2

4

您已经指定了After=default.targetWantedBy=default.target。这是无法解决的。

WantedBy 指定目标在启动时将包含此服务,但 After 表示在启动此服务之前确保命名的目标已启动!

您很可能不需要并且After=default.target应该删除它。


我还建议您明确指定服务Type=。虽然默认值是当前simple(这应该适用于您正在做的事情),但旧版本的 systemd 可能表现不同。

[Service]
Type=simple
于 2015-06-09T01:08:59.107 回答
1

What about usig nohup? http://en.wikipedia.org/wiki/Nohup nohup is a POSIX command to ignore the HUP (hangup) signal. The HUP (hangup) signal is by convention the way a terminal warns dependent processes of logout.

于 2013-08-10T15:51:10.583 回答