本帖最后由 vr7jj 于 2017-12-14 21:21 编辑
自测有效
建立文件/etc/systemd/system/homeassistant.service
内容:
[Unit]
Description=Homebridge
#[email protected]
After=network.target
[Service]
Type=simple
#使用pi用户执行
User=pi
#python3环境激活命令
ExecStartPre=source /home/pi/hass/bin/activate
#homeassistant启动命令
ExecStart=/home/pi/hass/bin/hass
[Install]
WantedBy=multi-user.target
最后生效
sudo systemctl daemon-reload
sudo systemctl enable homeassistant.service
详细请参考systemd详细介绍 |