▲ 1 r/frigate_nvr
Detector Error and Bootloop
I've been pulling my hair out for days. I've been using v0.13.2 in an community scripts lxc container passing in a Coral TPU for years, rock solid. I've been trying to get v0.17.2 via proxmox community scripts wokrin so I can use my Arc A310 rather then the TPU, but even fresh installs with sample conf are going into a bootloop. So I broke down and did it per the docs and built it on docker. Exact same issue! What am I missing? Here is the logs before it reboots itself:
info | 2026-06-29 22:58:33 | startup | Preparing Frigate...
info | 2026-06-29 22:58:33 | startup | Starting Frigate...
info | 2026-06-29 22:58:35 | frigate.util.config | Checking if frigate config needs migration...
info | 2026-06-29 22:58:35 | frigate.util.config | frigate config does not need migration...
info | 2026-06-29 22:58:35 | frigate.app | Starting Frigate (0.17.2-3d4dd3a)
info | 2026-06-29 22:58:35 | peewee_migrate.logs | Starting migrations
info | 2026-06-29 22:58:35 | peewee_migrate.logs | There is nothing to migrate
info | 2026-06-29 22:58:35 | frigate.app | Recording process started: 443
info | 2026-06-29 22:58:35 | frigate.app | Review process started: 456
info | 2026-06-29 22:58:35 | frigate.app | go2rtc process pid: 120
info | 2026-06-29 22:58:36 | frigate.app | Embedding process started: 466
info | 2026-06-29 22:58:36 | frigate.app | Output process started: 515
info | 2026-06-29 22:58:36 | frigate.camera.maintainer | Camera processor started for House: 564
info | 2026-06-29 22:58:36 | frigate.camera.maintainer | Capture process started for House: 621
info | 2026-06-29 22:58:36 | frigate.api.fastapi_app | Starting FastAPI app
unknown | 2026-06-29 22:58:36 | unknown | Process frigate.detector:ov:
unknown | 2026-06-29 22:58:36 | unknown | Traceback (most recent call last):
unknown | 2026-06-29 22:58:36 | unknown | File "/usr/lib/python3.11/multiprocessing/process.py", line 314, in _bootstrap
unknown | 2026-06-29 22:58:36 | unknown | self.run()
unknown | 2026-06-29 22:58:36 | unknown | File "/opt/frigate/frigate/object_detection/base.py", line 143, in run
unknown | 2026-06-29 22:58:36 | unknown | object_detector = LocalObjectDetector(detector_config=self.detector_config)
unknown | 2026-06-29 22:58:36 | unknown | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
unknown | 2026-06-29 22:58:36 | unknown | File "/opt/frigate/frigate/object_detection/base.py", line 62, in __init__
unknown | 2026-06-29 22:58:36 | unknown | self.detect_api = create_detector(detector_config)
unknown | 2026-06-29 22:58:36 | unknown | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
unknown | 2026-06-29 22:58:36 | unknown | File "/opt/frigate/frigate/detectors/__init__.py", line 18, in create_detector
unknown | 2026-06-29 22:58:36 | unknown | return api(detector_config)
unknown | 2026-06-29 22:58:36 | unknown | ^^^^^^^^^^^^^^^^^^^^
| | |
I also tried building in docker per instructions, same results. Docker Compose:
version: "3.9"
services:
mqtt:
image: eclipse-mosquitto:2
restart: unless-stopped
ports: ["1883:1883"]
volumes:
- ./mosquitto/config:/mosquitto/config
- ./mosquitto/data:/mosquitto/data
frigate:
image: ghcr.io/blakeblackshear/frigate:stable
privileged: true
restart: unless-stopped
shm_size: "1024mb" # Adjust for camera count
devices: ["/dev/dri/renderD129"] # Intel iGPU acceleration
volumes:
- ./config:/config
- ./storage:/media/frigate
- type: tmpfs
target: /tmp/cache
tmpfs: { size: 1000000000 }
ports: ["5000:5000", "8554:8554", "8555:8555/tcp", "8555:8555/udp"]
depends_on: [mqtt]
frigate config
mqtt:
enabled: False
# host: mqtt.vand # MQTT broker hostname
# user: HAAS # MQTT username
# password: {passowrd} # MQTT password
ffmpeg:
hwaccel_args: preset-intel-qsv-h264 # Use Intel QuickSync on the Arc A310
detectors:
ov:
type: openvino # OpenVINO detector
device: GPU # Use Intel Arc GPU for inference
objects:
track:
- person # Detect people
- car # Detect cars
- dog # Detect dogs
- cat # Detect cats
snapshots:
enabled: true # Enable snapshots
bounding_box: true # Draw boxes on snapshots
timestamp: true # Add timestamp to snapshots
cameras:
House:
ffmpeg:
inputs:
- path: rtsp://10.0.0.1:7447/{path to camera}
roles:
- detect
detect:
width: 1920
height: 1080
fps: 5
objects:
track:
- person
- cat
- dog
motion:
mask:
- 0,0,351,0,354,84,0,92
u/ZeroPointMX — 6 days ago