gpt4 book ai didi

python - Supervisor 命令不会启动 Chromium

转载 作者:太空宇宙 更新时间:2023-11-04 10:16:40 24 4
gpt4 key购买 nike

编辑:显然脚本确实运行了,但它只是没有启动我的浏览器。仍然不知道为什么。

我正在尝试使用 supervisor 来运行命令/脚本,但我似乎无法让它工作。

我得到了 Pi_Video_looper 的想法,它对以下脚本执行相同的操作:

# Supervisord configuration to run video looper at boot and
# ensure it runs continuously.
[program:video_looper]
command=python -u -m Adafruit_Video_Looper.video_looper
autostart=true
autorestart=unexpected
startsecs=5

所以我根据自己的需要修改了它:

# Supervisord configuration to run video looper at boot and
# ensure it runs continuously.
[program:video_looper]
command=chromium-browser http://google.be --incognito
autostart=true
autorestart=unexpected
startsecs=5

我也将它与命令一起使用:

python /home/pi/Startup/Script.py

它会进行一些测试,然后调用浏览器,但也不会执行任何操作,尽管它可以从命令行完美运行。我错过了什么吗?

编辑:重启后不起作用,sudo service supervisor restart 后不起作用

编辑 2:日志文件显示它应该正在运行,所以显然它只是没有在我的 GUI 中打开它?:

2016-01-27 16:40:43,569 INFO daemonizing the supervisord process
2016-01-27 16:40:43,573 INFO supervisord started with pid 4767
2016-01-27 16:40:44,583 INFO spawned: 'video_looper' with pid 4773
2016-01-27 16:40:49,593 INFO success: video_looper entered RUNNING state, process has stayed up for > than 5 seconds (startsecs)

最佳答案

下面的工作版本:这里的主要问题是由于某些不明原因,chromium 不能以 root 身份运行

# Supervisord configuration to run chromium at boot and
# ensure it runs continuously.
[program:chromiumbrowser]
command=chromium-browser http://google.be --incognito
user=pi
autostart=true
autorestart=unexpected
startsecs=5

关于python - Supervisor 命令不会启动 Chromium,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35041574/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com