当我用HA服务命令systemctl start [email protected]启动HA的时候,会出现如下报错:
可是当我不通过服务启动,直接命令行/srv/homeassistant/bin/hass -c /home/homeassistant/.homeassistant/的时候,这个报错却是没有的,这是什么原因呢,两个命令差别在哪里啊,以下是我的HA开机自启服务代码:
[Unit]
Description=Home Assistant for %i
After=network.target
[Service]
Type=simple
User=%i
ExecStart=/srv/homeassistant/bin/hass -c /home/homeassistant/.homeassistant/
SendSIGKILL=no
[Install]
WantedBy=multi-user.target
|