[Detector Support]: TensorRT not working and stopping frigate completely #19373
-
Describe the problem you are havingI add the yolov4-416 to my frigate config and it just completley stops frigate from booting. it errors out and shuts down all services. I am trying to get this to work with my gtx 1050 2GB docker container toolkit is installed Version0.15.2-3bda638 Frigate config filemqtt:
host: ###
port: 1883
topic_prefix: ###
client_id: ###
enabled: true
ffmpeg:
hwaccel_args: preset-nvidia
detectors:
tensorrt:
type: tensorrt
device: 0 #This is the default, select the first GPU
model:
path: /config/model_cache/tensorrt/yolov4-416.trt
input_tensor: nchw
input_pixel_format: rgb
width: 320
height: 320
go2rtc:
streams:
front: rtsp://###/FrontSTRM
side: rtsp://###/SideSTRM
kitchen: rtsp://###/KitchenSTRM
garden: rtsp://###/GardenSTRM
objects:
track:
- person
- car
- cat
cameras:
front: # <------ Name the camera
enabled: true
ffmpeg:
inputs:
- path: rtsp://###/Streaming/Channels/101 # <----- The stream you want to use for detection
roles:
- detect
- record
input_args: preset-rtsp-generic
detect:
enabled: true
fps: 5
record: # <----- Enable recording
enabled: true
side: # <------ Name the camera
enabled: true
ffmpeg:
inputs:
- path: rtsp://###/Live/SideStream # <----- The stream you want to use for detection
roles:
- detect
- record
input_args: preset-rtsp-generic
detect:
enabled: true # <---- disable detection until you have a working camera feed
fps: 5
record:
enabled: true
kitchen: # <------ Name the camera
enabled: true
ffmpeg:
inputs:
- path: rtsp://###/Live/KitchenStream # <----- The stream you want to use for detection
roles:
- detect
- record
input_args: preset-rtsp-generic
detect:
enabled: true # <---- disable detection until you have a working camera feed
fps: 5
record:
enabled: true
garden: # <------ Name the camera
enabled: true
ffmpeg:
inputs:
- path: rtsp://###/Live/GardenStream # <----- The stream you want to use for detection
roles:
- detect
- record
input_args: preset-rtsp-generic
detect:
enabled: true # <---- disable detection until you have a working camera feed
fps: 5
record:
enabled: true
garage: # <------ Name the camera
enabled: true
ffmpeg:
inputs:
- path: rtsp://###/unicast/c1/s0/live # <----- The stream you want to use for detection
roles:
- detect
- record
input_args: preset-rtsp-generic
detect:
enabled: true # <---- disable detection until you have a working camera feed
fps: 5
record:
enabled: true
road: # <------ Name the camera
enabled: true
ffmpeg:
inputs:
- path: rtsp://###/unicast/c1/s0/live # <----- The stream you want to use for detection
roles:
- detect
- record
input_args: preset-rtsp-generic
detect:
enabled: true # <---- disable detection until you have a working camera feed
fps: 5
record:
enabled: true
semantic_search:
enabled: true
reindex: false
model_size: small
version: 0.15-1
camera_groups:
front:
order: 1
icon: LuCar
cameras:
- front
- birdseye
kitchen:
order: 2
icon: LuCoffee
cameras: kitchen
Side:
order: 3
icon: LuGhost
cameras: side
Garden:
order: 4
icon: LuSprout
cameras: garden docker-compose file or Docker CLI commandversion: "3.9"
services:
frigate:
container_name: frigate
privileged: true # this may not be necessary for all setups
restart: unless-stopped
stop_grace_period: 30s # allow enough time to shut down the various services
image: ghcr.io/blakeblackshear/frigate:stable-tensorrt
runtime: nvidia
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
shm_size: "1024mb" # update for your cameras based on calculation above
volumes:
- /etc/localtime:/etc/localtime:ro
- /frigate12/config:/config
- /home/Records/storage:/media/frigate
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 1000000000
ports:
- "8971:8971"
- "5000:5000" # Internal unauthenticated access. Expose carefully.
- "8554:8554" # RTSP feeds
- "8555:8555/tcp" # WebRTC over tcp
- "8555:8555/udp" # WebRTC over udp
environment:
- YOLO_MODELS=yolov4-416
- USE_FP16=false
- TRT_MODEL_PREP_DEVICE=0 Relevant Frigate log output2025-08-04 01:01:40.307226360 10.1.2.31 - - [04/Aug/2025:01:01:40 +0000] "GET /api/side/latest.webp?height=339&cache=1754269300228 HTTP/1.1" 200 6726 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:40.455475063 10.1.2.31 - - [04/Aug/2025:01:01:40 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269300422 HTTP/1.1" 200 17000 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:40.482319102 10.1.2.31 - - [04/Aug/2025:01:01:40 +0000] "GET /api/side/latest.webp?height=339&cache=1754269300461 HTTP/1.1" 200 6706 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:40.657327105 10.1.2.31 - - [04/Aug/2025:01:01:40 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269300622 HTTP/1.1" 200 8632 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:40.658383711 10.1.2.31 - - [04/Aug/2025:01:01:40 +0000] "GET /api/front/latest.webp?height=339&cache=1754269300622 HTTP/1.1" 200 15010 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:40.878476088 10.1.2.31 - - [04/Aug/2025:01:01:40 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269300720 HTTP/1.1" 200 17176 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:41.053635705 10.1.2.31 - - [04/Aug/2025:01:01:41 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269300938 HTTP/1.1" 200 8632 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:41.068105685 10.1.2.31 - - [04/Aug/2025:01:01:41 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269300973 HTTP/1.1" 200 17176 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:41.071781680 10.1.2.31 - - [04/Aug/2025:01:01:41 +0000] "GET /api/front/latest.webp?height=339&cache=1754269300938 HTTP/1.1" 499 0 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:41.179531351 10.1.2.31 - - [04/Aug/2025:01:01:41 +0000] "GET /api/front/latest.webp?height=339&cache=1754269301106 HTTP/1.1" 200 15138 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:41.383489908 10.1.2.31 - - [04/Aug/2025:01:01:41 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269301326 HTTP/1.1" 200 8632 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:41.403841049 10.1.2.31 - - [04/Aug/2025:01:01:41 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269301350 HTTP/1.1" 200 17176 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:41.805175212 10.1.2.31 - - [04/Aug/2025:01:01:41 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269301727 HTTP/1.1" 200 8244 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:41.809539629 10.1.2.31 - - [04/Aug/2025:01:01:41 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269301744 HTTP/1.1" 200 17306 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:41.977864271 10.1.2.31 - - [04/Aug/2025:01:01:41 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269301825 HTTP/1.1" 200 8244 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:42.025358962 10.1.2.31 - - [04/Aug/2025:01:01:42 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269301990 HTTP/1.1" 200 17306 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:42.143112580 10.1.2.31 - - [04/Aug/2025:01:01:42 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269302057 HTTP/1.1" 200 17306 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:42.421456669 10.1.2.31 - - [04/Aug/2025:01:01:42 +0000] "GET /clips/previews/kitchen/1754266792.578152-1754269200.137947.mp4 HTTP/1.1" 206 2761624 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:42.903959852 [2025-08-04 01:01:42] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:42.904390494 [2025-08-04 01:01:42] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:01:43.694301374 10.1.2.31 - - [04/Aug/2025:01:01:43 +0000] "GET /clips/previews/front/1754266792.537132-1754269200.147657.mp4 HTTP/1.1" 206 1521272 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:45.693601225 10.1.2.31 - - [04/Aug/2025:01:01:45 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 200 704 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:48.594162463 10.1.2.31 - - [04/Aug/2025:01:01:48 +0000] "GET /live/mse/api/ws?src=side HTTP/1.1" 101 313734 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:01:49.810812192 [2025-08-04 01:01:49] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:01:49.820856099 [2025-08-04 01:01:49] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:01:49.823229841 [2025-08-04 01:01:49] ffmpeg.road.detect ERROR : [tcp @ 0x60bd1e4d95c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:01:49.823233722 [2025-08-04 01:01:49] ffmpeg.road.detect ERROR : [in#0 @ 0x60bd1e4d8180] Error opening input: No route to host
2025-08-04 01:01:49.823235433 [2025-08-04 01:01:49] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:01:49.823236918 [2025-08-04 01:01:49] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:01:52.952227705 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.952544041 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.952755059 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.952993810 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.953206363 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.953447834 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.954419027 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.954585910 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.954755384 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.954911010 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.955100054 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.955284534 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.955473552 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.955720391 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.955979720 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.956151156 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.956314611 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.956466715 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.956623776 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.956774967 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.956931401 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.957087263 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.957241660 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.957422919 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.957573371 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.957738844 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.957901192 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.958064876 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.961147556 [2025-08-04 01:01:52] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:01:52.961151997 [2025-08-04 01:01:52] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:01:59.839817185 [2025-08-04 01:01:59] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:01:59.839822271 [2025-08-04 01:01:59] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:01:59.839824039 [2025-08-04 01:01:59] ffmpeg.road.detect ERROR : [tcp @ 0x5bffdf5b55c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:01:59.839825525 [2025-08-04 01:01:59] ffmpeg.road.detect ERROR : [in#0 @ 0x5bffdf5b4180] Error opening input: No route to host
2025-08-04 01:01:59.839826988 [2025-08-04 01:01:59] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:01:59.839828372 [2025-08-04 01:01:59] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:02:02.173368118 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/config HTTP/1.1" 200 30983 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.174281813 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/profile HTTP/1.1" 200 17 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.196045636 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/preview/front/start/1754267912/end/1754267944 HTTP/1.1" 200 159 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.200519622 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 200 704 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.205240376 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/preview/kitchen/start/1754267150/end/1754267455 HTTP/1.1" 200 163 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.276086993 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/front/latest.webp?height=339&cache=1754269322031 HTTP/1.1" 200 15008 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.331117364 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269322031 HTTP/1.1" 200 17256 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.337135226 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/side/latest.webp?height=339&cache=1754269322031 HTTP/1.1" 200 6686 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.337139896 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269322031 HTTP/1.1" 200 8866 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.383804830 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/garage/latest.webp?height=339&cache=1754269322031 HTTP/1.1" 200 13320 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.516181181 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269322449 HTTP/1.1" 200 8866 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.541686320 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269322472 HTTP/1.1" 200 17256 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.548932593 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/side/latest.webp?height=339&cache=1754269322449 HTTP/1.1" 200 6704 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.573479373 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/front/latest.webp?height=339&cache=1754269322472 HTTP/1.1" 200 14668 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.936940640 [2025-08-04 01:02:02] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:02:02.936945248 [2025-08-04 01:02:02] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:02:02.947308188 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/front/latest.webp?height=339&cache=1754269322718 HTTP/1.1" 200 14668 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.976095569 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269322716 HTTP/1.1" 200 8816 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.988178836 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269322720 HTTP/1.1" 200 17134 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:02.992571345 10.1.2.31 - - [04/Aug/2025:01:02:02 +0000] "GET /api/side/latest.webp?height=339&cache=1754269322715 HTTP/1.1" 200 6696 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:03.570438032 10.1.2.31 - - [04/Aug/2025:01:02:03 +0000] "GET /api/front/latest.webp?height=339&cache=1754269323314 HTTP/1.1" 200 14834 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:03.601927744 10.1.2.31 - - [04/Aug/2025:01:02:03 +0000] "GET /api/side/latest.webp?height=339&cache=1754269323449 HTTP/1.1" 200 6634 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:03.606970327 10.1.2.31 - - [04/Aug/2025:01:02:03 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269323449 HTTP/1.1" 200 17166 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.253759821 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269324218 HTTP/1.1" 200 8540 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.275128855 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /api/front/latest.webp?height=339&cache=1754269324237 HTTP/1.1" 200 14932 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.325579469 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269324269 HTTP/1.1" 200 17130 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.617672975 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /live/mse/api/ws?src=front HTTP/1.1" 101 5987730 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.640679840 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /api/side/latest.webp?height=339&cache=1754269324482 HTTP/1.1" 200 6648 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.666116545 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /live/mse/api/ws?src=garden HTTP/1.1" 101 2 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.666433633 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /live/mse/api/ws?src=side HTTP/1.1" 101 163227 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.682483291 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /api/front/latest.webp?height=339&cache=1754269324486 HTTP/1.1" 200 14932 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.721768735 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269324653 HTTP/1.1" 200 17084 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:04.726078279 10.1.2.31 - - [04/Aug/2025:01:02:04 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269324515 HTTP/1.1" 200 8540 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:06.626569157 10.1.2.31 - - [04/Aug/2025:01:02:06 +0000] "GET /live/mse/api/ws?src=kitchen HTTP/1.1" 101 4455143 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:06.709900249 10.1.2.31 - - [04/Aug/2025:01:02:06 +0000] "GET /api/config HTTP/1.1" 200 30983 "http://10.1.2.36:5000/system" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:07.988676756 10.1.2.31 - - [04/Aug/2025:01:02:07 +0000] "GET /live/mse/api/ws?src=kitchen HTTP/1.1" 101 1201063 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:08.404995094 10.1.2.31 - - [04/Aug/2025:01:02:08 +0000] "GET /live/mse/api/ws?src=garden HTTP/1.1" 101 5289562 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:08.755096002 10.1.2.31 - - [04/Aug/2025:01:02:08 +0000] "GET /live/mse/api/ws?src=front HTTP/1.1" 101 1838446 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:09.868789522 [2025-08-04 01:02:09] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:02:09.868816946 [2025-08-04 01:02:09] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:02:09.869132646 [2025-08-04 01:02:09] ffmpeg.road.detect ERROR : [tcp @ 0x59da744ac5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:02:09.869135602 [2025-08-04 01:02:09] ffmpeg.road.detect ERROR : [in#0 @ 0x59da744ab180] Error opening input: No route to host
2025-08-04 01:02:09.869137210 [2025-08-04 01:02:09] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:02:09.869138591 [2025-08-04 01:02:09] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:02:12.631798086 127.0.0.1 - - [04/Aug/2025:01:02:12 +0000] "" 400 0 "-" "-" "-"
2025-08-04 01:02:12.979526490 [2025-08-04 01:02:12] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:02:12.979942160 [2025-08-04 01:02:12] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:02:13.698015982 10.1.2.31 - - [04/Aug/2025:01:02:13 +0000] "GET /api/config HTTP/1.1" 200 30983 "http://10.1.2.36:5000/system" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:13.698488354 10.1.2.31 - - [04/Aug/2025:01:02:13 +0000] "GET /api/profile HTTP/1.1" 200 17 "http://10.1.2.36:5000/system" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:02:19.883141274 [2025-08-04 01:02:19] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:02:19.883344692 [2025-08-04 01:02:19] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:02:19.883347316 [2025-08-04 01:02:19] ffmpeg.road.detect ERROR : [tcp @ 0x5ee18b5035c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:02:19.883348838 [2025-08-04 01:02:19] ffmpeg.road.detect ERROR : [in#0 @ 0x5ee18b502180] Error opening input: No route to host
2025-08-04 01:02:19.883350311 [2025-08-04 01:02:19] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:02:19.883351628 [2025-08-04 01:02:19] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:02:22.967168568 [2025-08-04 01:02:22] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:02:22.967446889 [2025-08-04 01:02:22] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:02:29.914611486 [2025-08-04 01:02:29] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:02:29.914616276 [2025-08-04 01:02:29] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:02:29.914618118 [2025-08-04 01:02:29] ffmpeg.road.detect ERROR : [tcp @ 0x5c535fc8d5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:02:29.914619739 [2025-08-04 01:02:29] ffmpeg.road.detect ERROR : [in#0 @ 0x5c535fc8c180] Error opening input: No route to host
2025-08-04 01:02:29.914621380 [2025-08-04 01:02:29] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:02:29.914622790 [2025-08-04 01:02:29] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:02:29.996727631 [2025-08-04 01:02:29] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:02:29.996731797 [2025-08-04 01:02:29] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:02:33.011608067 [2025-08-04 01:02:33] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:02:33.012616657 [2025-08-04 01:02:33] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:02:39.939070715 [2025-08-04 01:02:39] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:02:39.940346558 [2025-08-04 01:02:39] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:02:39.940349743 [2025-08-04 01:02:39] ffmpeg.road.detect ERROR : [tcp @ 0x5e8fce22c5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:02:39.940351401 [2025-08-04 01:02:39] ffmpeg.road.detect ERROR : [in#0 @ 0x5e8fce22b180] Error opening input: No route to host
2025-08-04 01:02:39.940352954 [2025-08-04 01:02:39] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:02:39.940354356 [2025-08-04 01:02:39] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:02:43.064975764 [2025-08-04 01:02:43] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:02:43.065245583 [2025-08-04 01:02:43] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:02:49.966255617 [2025-08-04 01:02:49] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:02:49.966523957 [2025-08-04 01:02:49] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:02:49.966687598 [2025-08-04 01:02:49] ffmpeg.road.detect ERROR : [tcp @ 0x64cb3f17b5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:02:49.966857063 [2025-08-04 01:02:49] ffmpeg.road.detect ERROR : [in#0 @ 0x64cb3f17a180] Error opening input: No route to host
2025-08-04 01:02:49.967026494 [2025-08-04 01:02:49] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:02:49.967183680 [2025-08-04 01:02:49] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:02:53.110157532 [2025-08-04 01:02:53] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:02:53.110646307 [2025-08-04 01:02:53] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:02:59.990594086 [2025-08-04 01:02:59] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:02:59.997461093 [2025-08-04 01:02:59] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:02:59.997633410 [2025-08-04 01:02:59] ffmpeg.road.detect ERROR : [tcp @ 0x5e7112fdd5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:02:59.997635983 [2025-08-04 01:02:59] ffmpeg.road.detect ERROR : [in#0 @ 0x5e7112fdc180] Error opening input: No route to host
2025-08-04 01:02:59.997637646 [2025-08-04 01:02:59] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:02:59.997829469 [2025-08-04 01:02:59] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:03:03.092046575 [2025-08-04 01:03:03] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:03:03.092494206 [2025-08-04 01:03:03] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:03:10.025506675 [2025-08-04 01:03:10] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:03:10.025511265 [2025-08-04 01:03:10] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:03:10.025513042 [2025-08-04 01:03:10] ffmpeg.road.detect ERROR : [tcp @ 0x60b5cbc2d5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:03:10.025514566 [2025-08-04 01:03:10] ffmpeg.road.detect ERROR : [in#0 @ 0x60b5cbc2c180] Error opening input: No route to host
2025-08-04 01:03:10.025516057 [2025-08-04 01:03:10] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:03:10.025517444 [2025-08-04 01:03:10] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:03:12.659119199 127.0.0.1 - - [04/Aug/2025:01:03:12 +0000] "" 400 0 "-" "-" "-"
2025-08-04 01:03:13.139892308 [2025-08-04 01:03:13] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:03:13.140400767 [2025-08-04 01:03:13] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:03:20.056114748 [2025-08-04 01:03:20] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:03:20.056119757 [2025-08-04 01:03:20] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:03:20.056121577 [2025-08-04 01:03:20] ffmpeg.road.detect ERROR : [tcp @ 0x596a8db9b5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:03:20.056123103 [2025-08-04 01:03:20] ffmpeg.road.detect ERROR : [in#0 @ 0x596a8db9a180] Error opening input: No route to host
2025-08-04 01:03:20.056124596 [2025-08-04 01:03:20] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:03:20.056126026 [2025-08-04 01:03:20] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:03:23.123844908 [2025-08-04 01:03:23] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:03:23.124526502 [2025-08-04 01:03:23] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:03:30.067058179 [2025-08-04 01:03:30] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:03:30.067063041 [2025-08-04 01:03:30] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:03:30.067064853 [2025-08-04 01:03:30] ffmpeg.road.detect ERROR : [tcp @ 0x62e90fca65c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:03:30.067066403 [2025-08-04 01:03:30] ffmpeg.road.detect ERROR : [in#0 @ 0x62e90fca5180] Error opening input: No route to host
2025-08-04 01:03:30.067067898 [2025-08-04 01:03:30] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:03:30.067069293 [2025-08-04 01:03:30] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:03:33.174291116 [2025-08-04 01:03:33] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:03:33.178226103 [2025-08-04 01:03:33] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:03:40.092457047 [2025-08-04 01:03:40] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:03:40.096625136 [2025-08-04 01:03:40] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:03:40.096759895 [2025-08-04 01:03:40] ffmpeg.road.detect ERROR : [tcp @ 0x5b7e938305c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:03:40.096851399 [2025-08-04 01:03:40] ffmpeg.road.detect ERROR : [in#0 @ 0x5b7e9382f180] Error opening input: No route to host
2025-08-04 01:03:40.096962168 [2025-08-04 01:03:40] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:03:40.097059908 [2025-08-04 01:03:40] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:03:43.220253178 [2025-08-04 01:03:43] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:03:43.221419995 [2025-08-04 01:03:43] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:03:50.114162866 [2025-08-04 01:03:50] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:03:50.114168422 [2025-08-04 01:03:50] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:03:50.114170211 [2025-08-04 01:03:50] ffmpeg.road.detect ERROR : [tcp @ 0x60739bf145c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:03:50.114171796 [2025-08-04 01:03:50] ffmpeg.road.detect ERROR : [in#0 @ 0x60739bf13180] Error opening input: No route to host
2025-08-04 01:03:50.114173339 [2025-08-04 01:03:50] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:03:50.114174755 [2025-08-04 01:03:50] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:03:53.207187893 [2025-08-04 01:03:53] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:03:53.207457167 [2025-08-04 01:03:53] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:04:00.138966828 [2025-08-04 01:04:00] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:04:00.139645718 [2025-08-04 01:04:00] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:04:00.139648898 [2025-08-04 01:04:00] ffmpeg.road.detect ERROR : [tcp @ 0x64d59489a5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:04:00.139650513 [2025-08-04 01:04:00] ffmpeg.road.detect ERROR : [in#0 @ 0x64d594899180] Error opening input: No route to host
2025-08-04 01:04:00.139652065 [2025-08-04 01:04:00] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:04:00.139653489 [2025-08-04 01:04:00] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:04:03.251606766 [2025-08-04 01:04:03] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:04:03.252162632 [2025-08-04 01:04:03] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:04:05.372375335 10.1.2.31 - - [04/Aug/2025:01:04:05 +0000] "GET /api/config/raw HTTP/1.1" 200 3611 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:04:05.551039478 10.1.2.31 - - [04/Aug/2025:01:04:05 +0000] "GET /api/config/schema.json HTTP/1.1" 200 40848 "http://10.1.2.36:5000/assets/yaml.worker.bundle.js" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:04:10.189475626 [2025-08-04 01:04:10] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:04:10.189782984 [2025-08-04 01:04:10] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:04:10.190134377 [2025-08-04 01:04:10] ffmpeg.road.detect ERROR : [tcp @ 0x556e5faff5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:04:10.190137298 [2025-08-04 01:04:10] ffmpeg.road.detect ERROR : [in#0 @ 0x556e5fafe180] Error opening input: No route to host
2025-08-04 01:04:10.190138988 [2025-08-04 01:04:10] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:04:10.190140476 [2025-08-04 01:04:10] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:04:12.692846181 127.0.0.1 - - [04/Aug/2025:01:04:12 +0000] "" 400 0 "-" "-" "-"
2025-08-04 01:04:13.303644379 [2025-08-04 01:04:13] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:04:13.303648981 [2025-08-04 01:04:13] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:04:20.220120683 [2025-08-04 01:04:20] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:04:20.220125662 [2025-08-04 01:04:20] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:04:20.220127541 [2025-08-04 01:04:20] ffmpeg.road.detect ERROR : [tcp @ 0x64764c5735c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:04:20.220129157 [2025-08-04 01:04:20] ffmpeg.road.detect ERROR : [in#0 @ 0x64764c572180] Error opening input: No route to host
2025-08-04 01:04:20.220130710 [2025-08-04 01:04:20] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:04:20.220132125 [2025-08-04 01:04:20] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:04:23.347646364 [2025-08-04 01:04:23] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:04:23.348337294 [2025-08-04 01:04:23] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:04:29.941501375 10.1.2.31 - - [04/Aug/2025:01:04:29 +0000] "GET /api/config HTTP/1.1" 200 30983 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:04:29.961810873 10.1.2.31 - - [04/Aug/2025:01:04:29 +0000] "GET /api/profile HTTP/1.1" 200 17 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:04:29.963635876 10.1.2.31 - - [04/Aug/2025:01:04:29 +0000] "GET /api/config/raw HTTP/1.1" 200 3611 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:04:30.004166172 [2025-08-04 01:04:30] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:04:30.005752451 [2025-08-04 01:04:30] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:04:30.231715472 [2025-08-04 01:04:30] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:04:30.231720221 [2025-08-04 01:04:30] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:04:30.231722067 [2025-08-04 01:04:30] ffmpeg.road.detect ERROR : [tcp @ 0x628ff18965c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:04:30.231723625 [2025-08-04 01:04:30] ffmpeg.road.detect ERROR : [in#0 @ 0x628ff1895180] Error opening input: No route to host
2025-08-04 01:04:30.231725077 [2025-08-04 01:04:30] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:04:30.231726413 [2025-08-04 01:04:30] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:04:33.335177674 [2025-08-04 01:04:33] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:04:33.335496326 [2025-08-04 01:04:33] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:04:36.482860764 10.1.2.31 - - [04/Aug/2025:01:04:36 +0000] "GET /api/profile HTTP/1.1" 200 17 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:04:36.483273856 10.1.2.31 - - [04/Aug/2025:01:04:36 +0000] "GET /api/config/raw HTTP/1.1" 200 3611 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:04:36.483661236 10.1.2.31 - - [04/Aug/2025:01:04:36 +0000] "GET /api/config HTTP/1.1" 200 30983 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:04:40.269782707 [2025-08-04 01:04:40] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:04:40.269787618 [2025-08-04 01:04:40] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:04:40.269789482 [2025-08-04 01:04:40] ffmpeg.road.detect ERROR : [tcp @ 0x5dfeec4fa5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:04:40.269791046 [2025-08-04 01:04:40] ffmpeg.road.detect ERROR : [in#0 @ 0x5dfeec4f9180] Error opening input: No route to host
2025-08-04 01:04:40.269792577 [2025-08-04 01:04:40] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:04:40.269793998 [2025-08-04 01:04:40] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:04:43.380485845 [2025-08-04 01:04:43] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:04:43.380997896 [2025-08-04 01:04:43] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:04:50.290959821 [2025-08-04 01:04:50] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:04:50.290964442 [2025-08-04 01:04:50] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:04:50.290966369 [2025-08-04 01:04:50] ffmpeg.road.detect ERROR : [tcp @ 0x62a039ba75c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:04:50.290967920 [2025-08-04 01:04:50] ffmpeg.road.detect ERROR : [in#0 @ 0x62a039ba6180] Error opening input: No route to host
2025-08-04 01:04:50.290969465 [2025-08-04 01:04:50] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:04:50.290970890 [2025-08-04 01:04:50] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:04:53.431451677 [2025-08-04 01:04:53] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:04:53.431724849 [2025-08-04 01:04:53] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:04:55.748943646 10.1.2.31 - - [04/Aug/2025:01:04:55 +0000] "POST /api/config/save?save_option=restart HTTP/1.1" 200 102 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
s6-rc: info: service legacy-services: stopping
s6-rc: info: service legacy-services successfully stopped
s6-rc: info: service go2rtc-healthcheck: stopping
s6-rc: info: service certsync: stopping
2025-08-04 01:04:55.809518802 [INFO] Service CERTSYNC exited with code 256 (by signal 15)
2025-08-04 01:04:55.809940194 [INFO] The go2rtc-healthcheck service exited with code 256 (by signal 15)
s6-rc: info: service go2rtc-healthcheck successfully stopped
s6-rc: info: service certsync successfully stopped
s6-rc: info: service nginx: stopping
s6-rc: info: service certsync-log: stopping
s6-rc: info: service certsync-log successfully stopped
2025-08-04 01:04:55.863604981 [INFO] Service NGINX exited with code 0 (by signal 0)
s6-rc: info: service nginx successfully stopped
s6-rc: info: service nginx-log: stopping
s6-rc: info: service frigate: stopping
s6-rc: info: service nginx-log successfully stopped
2025-08-04 01:04:56.038851039 [2025-08-04 01:04:56] frigate.app INFO : Stopping...
2025-08-04 01:04:56.040199843 [2025-08-04 01:04:56] frigate.ptz.autotrack INFO : Exiting autotracker...
2025-08-04 01:04:56.040202535 [2025-08-04 01:04:56] frigate.watchdog INFO : Exiting watchdog...
2025-08-04 01:04:56.040204024 [2025-08-04 01:04:56] frigate.stats.emitter INFO : Exiting stats emitter...
2025-08-04 01:04:56.041638987 [2025-08-04 01:04:56] frigate.storage INFO : Exiting storage maintainer...
2025-08-04 01:04:56.042416375 [2025-08-04 01:04:56] frigate.events.cleanup INFO : Exiting event cleanup...
2025-08-04 01:04:56.042956877 [2025-08-04 01:04:56] frigate.app INFO : Waiting for capture process for front to stop
2025-08-04 01:04:56.043728364 [2025-08-04 01:04:56] watchdog.front INFO : Terminating the existing ffmpeg process...
2025-08-04 01:04:56.044203740 [2025-08-04 01:04:56] watchdog.front INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:04:56.047755585 [2025-08-04 01:04:56] frigate.object_processing INFO : Exiting object processor...
2025-08-04 01:04:56.574899038 [2025-08-04 01:04:56] frigate.events.maintainer INFO : Exiting event processor...
2025-08-04 01:04:56.747117034 [2025-08-04 01:04:56] frigate.app INFO : Waiting for capture process for side to stop
2025-08-04 01:04:56.749814540 [2025-08-04 01:04:56] watchdog.side INFO : Terminating the existing ffmpeg process...
2025-08-04 01:04:56.749818459 [2025-08-04 01:04:56] watchdog.side INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:04:57.135915011 [2025-08-04 01:04:57] frigate.app INFO : Waiting for capture process for kitchen to stop
2025-08-04 01:04:57.138588785 [2025-08-04 01:04:57] watchdog.kitchen INFO : Terminating the existing ffmpeg process...
2025-08-04 01:04:57.138591924 [2025-08-04 01:04:57] watchdog.kitchen INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:04:57.773653224 [2025-08-04 01:04:57] frigate.app INFO : Waiting for capture process for garden to stop
2025-08-04 01:04:57.774557309 [2025-08-04 01:04:57] watchdog.garden INFO : Terminating the existing ffmpeg process...
2025-08-04 01:04:57.776385925 [2025-08-04 01:04:57] watchdog.garden INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:04:58.231620422 [2025-08-04 01:04:58] frigate.app INFO : Waiting for capture process for garage to stop
2025-08-04 01:04:58.232349410 [2025-08-04 01:04:58] watchdog.garage INFO : Terminating the existing ffmpeg process...
2025-08-04 01:04:58.232541328 [2025-08-04 01:04:58] watchdog.garage INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:04:58.759278957 [2025-08-04 01:04:58] frigate.app INFO : Waiting for capture process for road to stop
2025-08-04 01:04:58.760472960 [2025-08-04 01:04:58] watchdog.road INFO : Terminating the existing ffmpeg process...
2025-08-04 01:04:58.760476621 [2025-08-04 01:04:58] watchdog.road INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:04:58.771067545 [2025-08-04 01:04:58] frigate.app INFO : Waiting for process for front to stop
2025-08-04 01:04:59.574425130 [2025-08-04 01:04:59] frigate.video INFO : front: emptying frame queue
2025-08-04 01:04:59.574431051 [2025-08-04 01:04:59] frigate.video INFO : front: exiting subprocess
2025-08-04 01:04:59.590614486 [2025-08-04 01:04:59] frigate.app INFO : Closing frame queue for front
2025-08-04 01:05:00.091940077 [2025-08-04 01:05:00] frigate.app INFO : Waiting for process for side to stop
2025-08-04 01:05:00.885099246 [2025-08-04 01:05:00] frigate.video INFO : side: emptying frame queue
2025-08-04 01:05:00.885103837 [2025-08-04 01:05:00] frigate.video INFO : side: exiting subprocess
2025-08-04 01:05:00.895776347 [2025-08-04 01:05:00] frigate.app INFO : Closing frame queue for side
2025-08-04 01:05:01.397042841 [2025-08-04 01:05:01] frigate.app INFO : Waiting for process for kitchen to stop
2025-08-04 01:05:01.783846625 [2025-08-04 01:05:01] frigate.video INFO : kitchen: emptying frame queue
2025-08-04 01:05:01.784346734 [2025-08-04 01:05:01] frigate.video INFO : kitchen: exiting subprocess
2025-08-04 01:05:01.796581023 [2025-08-04 01:05:01] frigate.app INFO : Closing frame queue for kitchen
2025-08-04 01:05:02.297527273 [2025-08-04 01:05:02] frigate.app INFO : Waiting for process for garden to stop
2025-08-04 01:05:02.729558182 [2025-08-04 01:05:02] frigate.video INFO : garden: emptying frame queue
2025-08-04 01:05:02.729801638 [2025-08-04 01:05:02] frigate.video INFO : garden: exiting subprocess
2025-08-04 01:05:02.740877688 [2025-08-04 01:05:02] frigate.app INFO : Closing frame queue for garden
2025-08-04 01:05:03.241719358 [2025-08-04 01:05:03] frigate.app INFO : Waiting for process for garage to stop
2025-08-04 01:05:04.162329110 [2025-08-04 01:05:04] frigate.video INFO : garage: emptying frame queue
2025-08-04 01:05:04.162580731 [2025-08-04 01:05:04] frigate.video INFO : garage: exiting subprocess
2025-08-04 01:05:04.172213780 [2025-08-04 01:05:04] frigate.app INFO : Closing frame queue for garage
2025-08-04 01:05:04.673017649 [2025-08-04 01:05:04] frigate.app INFO : Waiting for process for road to stop
2025-08-04 01:05:05.254731517 [2025-08-04 01:05:05] frigate.video INFO : road: emptying frame queue
2025-08-04 01:05:05.254789518 [2025-08-04 01:05:05] frigate.video INFO : road: exiting subprocess
2025-08-04 01:05:05.263888983 [2025-08-04 01:05:05] frigate.app INFO : Closing frame queue for road
2025-08-04 01:05:05.764798120 [2025-08-04 01:05:05] root INFO : Waiting for detection process to exit gracefully...
2025-08-04 01:05:06.161536364 [2025-08-04 01:05:06] detector.cpu INFO : Exited detection process...
2025-08-04 01:05:06.170615870 [2025-08-04 01:05:06] root INFO : Detection process has exited...
2025-08-04 01:05:06.671726977 [2025-08-04 01:05:06] frigate.app INFO : Detection queue closed
2025-08-04 01:05:07.173238397 [2025-08-04 01:05:07] frigate.app INFO : Detected frames queue closed
2025-08-04 01:05:07.673585559 [2025-08-04 01:05:07] frigate.app INFO : Timeline queue closed
2025-08-04 01:05:08.786758394 [2025-08-04 01:05:08] frigate.output.output INFO : exiting output process...
2025-08-04 01:05:10.430934838 [2025-08-04 01:05:10] frigate.record.maintainer INFO : Exiting recording maintenance...
2025-08-04 01:05:11.571328930 [INFO] Service Frigate exited with code 0 (by signal 0)
s6-rc: info: service frigate successfully stopped
s6-rc: info: service trt-model-prepare: stopping
s6-rc: info: service go2rtc: stopping
s6-rc: info: service frigate-log: stopping
s6-rc: info: service trt-model-prepare successfully stopped
2025-08-04 01:05:11.573834535 exit with signal: terminated
s6-rc: info: service frigate-log successfully stopped
2025-08-04 01:05:11.579763633 [INFO] The go2rtc service exited with code 0 (by signal 0)
s6-rc: info: service go2rtc successfully stopped
s6-rc: info: service go2rtc-log: stopping
s6-rc: info: service go2rtc-log successfully stopped
s6-rc: info: service log-prepare: stopping
s6-rc: info: service s6rc-fdholder: stopping
s6-rc: info: service log-prepare successfully stopped
s6-rc: info: service legacy-cont-init: stopping
s6-rc: info: service s6rc-fdholder successfully stopped
s6-rc: info: service legacy-cont-init successfully stopped
s6-rc: info: service fix-attrs: stopping
s6-rc: info: service fix-attrs successfully stopped
s6-rc: info: service s6rc-oneshot-runner: stopping
s6-rc: info: service s6rc-oneshot-runner successfully stopped
s6-rc: info: service s6rc-fdholder: starting
s6-rc: info: service s6rc-oneshot-runner: starting
s6-rc: info: service s6rc-oneshot-runner successfully started
s6-rc: info: service fix-attrs: starting
s6-rc: info: service s6rc-fdholder successfully started
s6-rc: info: service fix-attrs successfully started
s6-rc: info: service legacy-cont-init: starting
s6-rc: info: service legacy-cont-init successfully started
s6-rc: info: service trt-model-prepare: starting
s6-rc: info: service log-prepare: starting
s6-rc: info: service log-prepare successfully started
No models to convert.
s6-rc: info: service nginx-log: starting
s6-rc: info: service go2rtc-log: starting
s6-rc: info: service frigate-log: starting
s6-rc: info: service certsync-log: starting
s6-rc: info: service trt-model-prepare successfully started
s6-rc: info: service frigate-log successfully started
s6-rc: info: service nginx-log successfully started
s6-rc: info: service go2rtc-log successfully started
s6-rc: info: service go2rtc: starting
s6-rc: info: service certsync-log successfully started
s6-rc: info: service go2rtc successfully started
s6-rc: info: service go2rtc-healthcheck: starting
s6-rc: info: service frigate: starting
2025-08-04 01:05:18.133342496 [INFO] Preparing new go2rtc config...
s6-rc: info: service go2rtc-healthcheck successfully started
s6-rc: info: service frigate successfully started
s6-rc: info: service nginx: starting
2025-08-04 01:05:18.140325167 [INFO] Preparing Frigate...
2025-08-04 01:05:18.141761545 [INFO] Starting NGINX...
2025-08-04 01:05:18.365468752 [INFO] Starting Frigate...
2025-08-04 01:05:18.959067157 [INFO] Starting go2rtc...
2025-08-04 01:05:19.064073368 01:05:19.063 INF go2rtc platform=linux/amd64 revision=b2399f3 version=1.9.2
2025-08-04 01:05:19.064094332 01:05:19.064 INF config path=/dev/shm/go2rtc.yaml
2025-08-04 01:05:19.064646714 01:05:19.064 INF [api] listen addr=:1984
2025-08-04 01:05:19.064649277 01:05:19.064 INF [rtsp] listen addr=:8554
2025-08-04 01:05:19.064839232 01:05:19.064 INF [webrtc] listen addr=:8555/tcp
s6-rc: info: service nginx successfully started
s6-rc: info: service certsync: starting
s6-rc: info: service certsync successfully started
s6-rc: info: service legacy-services: starting
2025-08-04 01:05:19.378959002 [INFO] Starting certsync...
s6-rc: info: service legacy-services successfully started
2025-08-04 01:05:19.480529742 127.0.0.1 - - [04/Aug/2025:01:05:19 +0000] "" 400 0 "-" "-" "-"
2025-08-04 01:05:22.048774131 [2025-08-04 01:05:22] frigate.util.config INFO : Checking if frigate config needs migration...
2025-08-04 01:05:22.083862348 [2025-08-04 01:05:22] frigate.util.config INFO : frigate config does not need migration...
2025-08-04 01:05:22.349828245 2025/08/04 01:05:22 [error] 218#218: *2 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.2.31, server: , request: "GET /api/config HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "10.1.2.36:5000", referrer: "http://10.1.2.36:5000/config"
2025-08-04 01:05:22.349834404 2025/08/04 01:05:22 [error] 218#218: *2 auth request unexpected status: 502 while sending to client, client: 10.1.2.31, server: , request: "GET /api/config HTTP/1.1", host: "10.1.2.36:5000", referrer: "http://10.1.2.36:5000/config"
2025-08-04 01:05:22.349836794 10.1.2.31 - - [04/Aug/2025:01:05:22 +0000] "GET /api/config HTTP/1.1" 500 177 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:05:22.349839477 2025/08/04 01:05:22 [error] 218#218: *3 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.2.31, server: , request: "GET /api/profile HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "10.1.2.36:5000", referrer: "http://10.1.2.36:5000/config"
2025-08-04 01:05:22.349889827 2025/08/04 01:05:22 [error] 218#218: *3 auth request unexpected status: 502 while sending to client, client: 10.1.2.31, server: , request: "GET /api/profile HTTP/1.1", host: "10.1.2.36:5000", referrer: "http://10.1.2.36:5000/config"
2025-08-04 01:05:22.349943891 10.1.2.31 - - [04/Aug/2025:01:05:22 +0000] "GET /api/profile HTTP/1.1" 500 177 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:05:22.878715565 2025/08/04 01:05:22 [error] 217#217: *6 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2025-08-04 01:05:22.878720618 2025/08/04 01:05:22 [error] 217#217: *6 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2025-08-04 01:05:23.449369251 2025/08/04 01:05:23 [error] 251#251: *8 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.2.31, server: , request: "GET /ws HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "10.1.2.36:5000"
2025-08-04 01:05:23.449374259 2025/08/04 01:05:23 [error] 251#251: *8 auth request unexpected status: 502 while sending to client, client: 10.1.2.31, server: , request: "GET /ws HTTP/1.1", host: "10.1.2.36:5000"
2025-08-04 01:05:23.449536138 10.1.2.31 - - [04/Aug/2025:01:05:23 +0000] "GET /ws HTTP/1.1" 500 177 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:05:27.510914441 2025/08/04 01:05:27 [error] 252#252: *10 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.2.31, server: , request: "GET /api/config/raw HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "10.1.2.36:5000", referrer: "http://10.1.2.36:5000/config"
2025-08-04 01:05:27.510952257 2025/08/04 01:05:27 [error] 252#252: *10 auth request unexpected status: 502 while sending to client, client: 10.1.2.31, server: , request: "GET /api/config/raw HTTP/1.1", host: "10.1.2.36:5000", referrer: "http://10.1.2.36:5000/config"
2025-08-04 01:05:27.511122835 10.1.2.31 - - [04/Aug/2025:01:05:27 +0000] "GET /api/config/raw HTTP/1.1" 500 177 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:05:27.915655186 2025/08/04 01:05:27 [error] 218#218: *12 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2025-08-04 01:05:27.915660039 2025/08/04 01:05:27 [error] 218#218: *12 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2025-08-04 01:05:28.140092569 [INFO] Starting go2rtc healthcheck service...
2025-08-04 01:05:28.527654685 2025/08/04 01:05:28 [error] 218#218: *14 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.2.31, server: , request: "GET /ws HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "10.1.2.36:5000"
2025-08-04 01:05:28.527659728 2025/08/04 01:05:28 [error] 218#218: *14 auth request unexpected status: 502 while sending to client, client: 10.1.2.31, server: , request: "GET /ws HTTP/1.1", host: "10.1.2.36:5000"
2025-08-04 01:05:28.527689319 10.1.2.31 - - [04/Aug/2025:01:05:28 +0000] "GET /ws HTTP/1.1" 500 177 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:05:31.125688831 [2025-08-04 01:05:31] frigate.app INFO : Starting Frigate (0.15.2-3bda638)
2025-08-04 01:05:31.126129598 [2025-08-04 01:05:31] frigate.util.services INFO : Current file limits - Soft: 524288, Hard: 524288
2025-08-04 01:05:31.126261449 [2025-08-04 01:05:31] frigate.util.services INFO : File limit set. New soft limit: 65536, Hard limit remains: 524288
2025-08-04 01:05:31.151907707 [2025-08-04 01:05:31] peewee_migrate.logs INFO : Starting migrations
2025-08-04 01:05:31.152297713 [2025-08-04 01:05:31] peewee_migrate.logs INFO : There is nothing to migrate
2025-08-04 01:05:31.197037286 [2025-08-04 01:05:31] frigate.app INFO : Recording process started: 430
2025-08-04 01:05:31.201330990 [2025-08-04 01:05:31] frigate.app INFO : Review process started: 432
2025-08-04 01:05:31.201945527 [2025-08-04 01:05:31] frigate.app INFO : go2rtc process pid: 156
2025-08-04 01:05:31.221215282 [2025-08-04 01:05:31] frigate.app INFO : Embedding process started: 448
2025-08-04 01:05:31.240264417 [2025-08-04 01:05:31] frigate.app INFO : Output process started: 467
2025-08-04 01:05:31.240269226 [2025-08-04 01:05:31] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:05:31.240778033 [2025-08-04 01:05:31] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:05:31.302944019 [2025-08-04 01:05:31] frigate.app INFO : Camera processor started for front: 483
2025-08-04 01:05:31.326818687 [2025-08-04 01:05:31] frigate.app INFO : Camera processor started for side: 484
2025-08-04 01:05:31.327157312 [2025-08-04 01:05:31] frigate.app INFO : Camera processor started for kitchen: 490
2025-08-04 01:05:31.360370225 [2025-08-04 01:05:31] frigate.app INFO : Camera processor started for garden: 500
2025-08-04 01:05:31.384868188 [2025-08-04 01:05:31] frigate.app INFO : Camera processor started for garage: 506
2025-08-04 01:05:31.392696024 [2025-08-04 01:05:31] frigate.app INFO : Camera processor started for road: 517
2025-08-04 01:05:31.414231370 [2025-08-04 01:05:31] frigate.app INFO : Capture process started for front: 540
2025-08-04 01:05:31.431522566 [2025-08-04 01:05:31] frigate.app INFO : Capture process started for side: 550
2025-08-04 01:05:31.450023194 [2025-08-04 01:05:31] frigate.app INFO : Capture process started for kitchen: 561
2025-08-04 01:05:31.472756696 [2025-08-04 01:05:31] frigate.app INFO : Capture process started for garden: 566
2025-08-04 01:05:31.495562466 [2025-08-04 01:05:31] detector.tensorrt INFO : Starting detection process: 446
2025-08-04 01:05:31.518518716 [2025-08-04 01:05:31] frigate.app INFO : Capture process started for garage: 577
2025-08-04 01:05:31.523152544 [2025-08-04 01:05:31] frigate.app INFO : Capture process started for road: 586
2025-08-04 01:05:31.857517984 [2025-08-04 01:05:31] frigate.api.fastapi_app INFO : Starting FastAPI app
2025-08-04 01:05:32.124003882 [2025-08-04 01:05:32] frigate.detectors.plugins.tensorrt INFO : Loaded engine size: 382 MiB
2025-08-04 01:05:32.152895237 [2025-08-04 01:05:32] frigate.api.fastapi_app INFO : FastAPI started
2025-08-04 01:05:32.246323390 [2025-08-04 01:05:32] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:05:32.248613889 [2025-08-04 01:05:32] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:05:33.113942636 [2025-08-04 01:05:33] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +6, GPU +300, now: CPU 544, GPU 920 (MiB)
2025-08-04 01:05:33.157292727 [2025-08-04 01:05:33] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuDNN: CPU +1, GPU +64, now: CPU 545, GPU 984 (MiB)
2025-08-04 01:05:33.179080414 [2025-08-04 01:05:33] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] TensorRT-managed allocation in engine deserialization: CPU +0, GPU +384, now: CPU 0, GPU 384 (MiB)
2025-08-04 01:05:33.529604857 [2025-08-04 01:05:33] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +1, GPU +8, now: CPU 164, GPU 1034 (MiB)
2025-08-04 01:05:33.550305993 [2025-08-04 01:05:33] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuDNN: CPU +0, GPU +8, now: CPU 164, GPU 1042 (MiB)
2025-08-04 01:05:33.559458640 [2025-08-04 01:05:33] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] TensorRT-managed allocation in IExecutionContext creation: CPU +0, GPU +67, now: CPU 0, GPU 451 (MiB)
2025-08-04 01:05:33.588133611 Fatal Python error: Segmentation fault
2025-08-04 01:05:33.588146133
2025-08-04 01:05:33.588147406 Thread 0x000078cf059ba6c0 (most recent call first):
2025-08-04 01:05:33.588308061 File "/usr/lib/python3.9/threading.py", line 312 in wait
2025-08-04 01:05:33.588348835 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2025-08-04 01:05:33.588371122 File "/usr/lib/python3.9/threading.py", line 892 in run
2025-08-04 01:05:33.588419658 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-08-04 01:05:33.588461620 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-08-04 01:05:33.588462753
2025-08-04 01:05:33.588471300 Current thread 0x000078cf9f0dc740 (most recent call first):
2025-08-04 01:05:33.588497099 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 193 in <listcomp>
2025-08-04 01:05:33.588850551 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 192 in _do_inference
2025-08-04 01:05:33.588852791 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 309 in detect_raw
2025-08-04 01:05:33.588853979 File "/opt/frigate/frigate/object_detection.py", line 95 in detect_raw
2025-08-04 01:05:33.588858388 File "/opt/frigate/frigate/object_detection.py", line 145 in run_detector
2025-08-04 01:05:33.588881759 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2025-08-04 01:05:33.588883560 File "/opt/frigate/frigate/util/process.py", line 41 in run_wrapper
2025-08-04 01:05:33.588885408 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2025-08-04 01:05:33.588894532 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2025-08-04 01:05:33.588972221 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2025-08-04 01:05:33.589033221 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2025-08-04 01:05:33.589088068 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2025-08-04 01:05:33.589122015 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2025-08-04 01:05:33.589157908 File "/opt/frigate/frigate/util/process.py", line 30 in start
2025-08-04 01:05:33.589188723 File "/opt/frigate/frigate/object_detection.py", line 204 in start_or_restart
2025-08-04 01:05:33.589226630 File "/opt/frigate/frigate/object_detection.py", line 172 in __init__
2025-08-04 01:05:33.589266431 File "/opt/frigate/frigate/app.py", line 351 in start_detectors
2025-08-04 01:05:33.589309971 File "/opt/frigate/frigate/app.py", line 602 in start
2025-08-04 01:05:33.589503722 File "/opt/frigate/frigate/__main__.py", line 60 in main
2025-08-04 01:05:33.589505857 File "/opt/frigate/frigate/__main__.py", line 64 in <module>
2025-08-04 01:05:33.589507049 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2025-08-04 01:05:33.589508203 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2025-08-04 01:05:34.253716194 [2025-08-04 01:05:34] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:05:34.255966585 [2025-08-04 01:05:34] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:05:34.708441681 [2025-08-04 01:05:34] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:05:34.708995985 [2025-08-04 01:05:34] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:05:38.260571350 [2025-08-04 01:05:38] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:05:38.263145701 [2025-08-04 01:05:38] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:05:46.265885738 [2025-08-04 01:05:46] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:05:46.268045883 [2025-08-04 01:05:46] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:05:51.619119968 [2025-08-04 01:05:51] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:05:51.626725689 [2025-08-04 01:05:51] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:05:51.627173852 [2025-08-04 01:05:51] ffmpeg.road.detect ERROR : [tcp @ 0x5dec808015c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:05:51.627175960 [2025-08-04 01:05:51] ffmpeg.road.detect ERROR : [in#0 @ 0x5dec80800180] Error opening input: No route to host
2025-08-04 01:05:51.627177504 [2025-08-04 01:05:51] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:05:51.627178908 [2025-08-04 01:05:51] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:05:51.856162446 [2025-08-04 01:05:51] frigate.watchdog INFO : Detection appears to be stuck. Restarting detection process...
2025-08-04 01:05:51.893539364 [2025-08-04 01:05:51] detector.tensorrt INFO : Starting detection process: 780
2025-08-04 01:05:53.510538900 [2025-08-04 01:05:53] frigate.detectors.plugins.tensorrt INFO : Loaded engine size: 382 MiB
2025-08-04 01:05:53.754290154 [2025-08-04 01:05:53] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +6, GPU +8, now: CPU 570, GPU 1162 (MiB)
2025-08-04 01:05:53.760644269 [2025-08-04 01:05:53] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuDNN: CPU +1, GPU +10, now: CPU 571, GPU 1172 (MiB)
2025-08-04 01:05:53.788474588 [2025-08-04 01:05:53] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] TensorRT-managed allocation in engine deserialization: CPU +0, GPU +384, now: CPU 0, GPU 384 (MiB)
2025-08-04 01:05:53.803583717 [2025-08-04 01:05:53] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +8, now: CPU 190, GPU 1166 (MiB)
2025-08-04 01:05:53.821641577 [2025-08-04 01:05:53] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuDNN: CPU +0, GPU +8, now: CPU 190, GPU 1174 (MiB)
2025-08-04 01:05:53.821705887 [2025-08-04 01:05:53] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] TensorRT-managed allocation in IExecutionContext creation: CPU +0, GPU +67, now: CPU 0, GPU 451 (MiB)
2025-08-04 01:05:53.828350743 Fatal Python error: Segmentation fault
2025-08-04 01:05:53.828355238
2025-08-04 01:05:53.828356545 Thread 0x000078ce46ffd6c0 (most recent call first):
2025-08-04 01:05:53.828382900 File "/usr/lib/python3.9/threading.py", line 312 in wait
2025-08-04 01:05:53.828409310 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2025-08-04 01:05:53.828432069 File "/usr/lib/python3.9/threading.py", line 892 in run
2025-08-04 01:05:53.828463286 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-08-04 01:05:53.828488847 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-08-04 01:05:53.828489953
2025-08-04 01:05:53.828495186 Current thread 0x000078ce477fe6c0 (most recent call first):
2025-08-04 01:05:53.828526905 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 193 in <listcomp>
2025-08-04 01:05:53.828564770 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 192 in _do_inference
2025-08-04 01:05:53.828601146 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 309 in detect_raw
2025-08-04 01:05:53.828630538 File "/opt/frigate/frigate/object_detection.py", line 95 in detect_raw
2025-08-04 01:05:53.828658908 File "/opt/frigate/frigate/object_detection.py", line 145 in run_detector
2025-08-04 01:05:53.828686599 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2025-08-04 01:05:53.828713649 File "/opt/frigate/frigate/util/process.py", line 41 in run_wrapper
2025-08-04 01:05:53.828745468 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2025-08-04 01:05:53.828779963 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2025-08-04 01:05:53.828814387 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2025-08-04 01:05:53.828847489 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2025-08-04 01:05:53.828879550 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2025-08-04 01:05:53.828911442 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2025-08-04 01:05:53.828952837 File "/opt/frigate/frigate/util/process.py", line 30 in start
2025-08-04 01:05:53.828982692 File "/opt/frigate/frigate/object_detection.py", line 204 in start_or_restart
2025-08-04 01:05:53.829010482 File "/opt/frigate/frigate/watchdog.py", line 33 in run
2025-08-04 01:05:53.829040556 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-08-04 01:05:53.829069282 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-08-04 01:05:55.651964066 [2025-08-04 01:05:55] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:05:55.652985814 [2025-08-04 01:05:55] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:05:59.934320976 10.1.2.31 - - [04/Aug/2025:01:05:59 +0000] "GET /ws HTTP/1.1" 101 14479 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:05:59.972280618 10.1.2.31 - - [04/Aug/2025:01:05:59 +0000] "GET / HTTP/1.1" 200 2651 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.002471189 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/profile HTTP/1.1" 200 0 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.004098224 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/config HTTP/1.1" 200 0 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.005302091 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/config/raw HTTP/1.1" 200 0 "http://10.1.2.36:5000/config" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.434770907 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/profile HTTP/1.1" 200 17 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.435976265 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/config HTTP/1.1" 200 31072 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.442913682 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 200 704 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.495898526 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/preview/front/start/1754267912/end/1754267944 HTTP/1.1" 200 159 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.497016737 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/preview/kitchen/start/1754267150/end/1754267455 HTTP/1.1" 200 163 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.504776201 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /images/apple-touch-icon.png HTTP/1.1" 200 4042 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.725956588 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /clips/previews/front/1754266792.537132-1754269200.147657.mp4 HTTP/1.1" 206 195110 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.805566650 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/kitchen/latest.webp?height=339&cache=1754269560502 HTTP/1.1" 200 3460 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.813189220 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/garage/latest.webp?height=339&cache=1754269560506 HTTP/1.1" 200 13172 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.827489097 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/garden/latest.webp?height=339&cache=1754269560502 HTTP/1.1" 200 3460 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.832529604 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/side/latest.webp?height=339&cache=1754269560502 HTTP/1.1" 200 3460 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.834276579 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/front/latest.webp?height=339&cache=1754269560502 HTTP/1.1" 200 3460 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.900937765 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/road/latest.webp?height=339&cache=1754269560502 HTTP/1.1" 200 3460 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:00.963298105 10.1.2.31 - - [04/Aug/2025:01:06:00 +0000] "GET /api/garage/latest.webp?height=339&cache=1754269560879 HTTP/1.1" 200 13172 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:01.178532715 10.1.2.31 - - [04/Aug/2025:01:06:01 +0000] "GET /api/garage/latest.webp?height=339&cache=1754269561095 HTTP/1.1" 200 13172 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:01.583354417 10.1.2.31 - - [04/Aug/2025:01:06:01 +0000] "GET /api/garage/latest.webp?height=339&cache=1754269561489 HTTP/1.1" 200 13172 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:01.638875326 [2025-08-04 01:06:01] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:06:01.638881347 [2025-08-04 01:06:01] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:06:01.638883169 [2025-08-04 01:06:01] ffmpeg.road.detect ERROR : [tcp @ 0x5df462bad5c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:06:01.638884690 [2025-08-04 01:06:01] ffmpeg.road.detect ERROR : [in#0 @ 0x5df462bac180] Error opening input: No route to host
2025-08-04 01:06:01.638886250 [2025-08-04 01:06:01] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:06:01.657684658 [2025-08-04 01:06:01] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:06:01.866065351 [2025-08-04 01:06:01] frigate.watchdog INFO : Detection appears to have stopped. Exiting Frigate...
s6-rc: info: service legacy-services: stopping
s6-rc: info: service legacy-services successfully stopped
s6-rc: info: service go2rtc-healthcheck: stopping
s6-rc: info: service certsync: stopping
2025-08-04 01:06:01.885586917 10.1.2.31 - - [04/Aug/2025:01:06:01 +0000] "GET /api/garage/latest.webp?height=339&cache=1754269561805 HTTP/1.1" 200 13172 "http://10.1.2.36:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0" "-"
2025-08-04 01:06:01.894170938 [INFO] The go2rtc-healthcheck service exited with code 256 (by signal 15)
s6-rc: info: service go2rtc-healthcheck successfully stopped
2025-08-04 01:06:01.896458428 [INFO] Service CERTSYNC exited with code 256 (by signal 15)
s6-rc: info: service certsync successfully stopped
s6-rc: info: service nginx: stopping
s6-rc: info: service certsync-log: stopping
s6-rc: info: service certsync-log successfully stopped
2025-08-04 01:06:01.930417694 [INFO] Service NGINX exited with code 0 (by signal 0)
s6-rc: info: service nginx successfully stopped
s6-rc: info: service nginx-log: stopping
s6-rc: info: service frigate: stopping
s6-rc: info: service nginx-log successfully stopped
2025-08-04 01:06:02.122119676 [2025-08-04 01:06:02] frigate.app INFO : Stopping...
2025-08-04 01:06:02.123321218 [2025-08-04 01:06:02] frigate.ptz.autotrack INFO : Exiting autotracker...
2025-08-04 01:06:02.123387068 [2025-08-04 01:06:02] frigate.watchdog INFO : Exiting watchdog...
2025-08-04 01:06:02.123518754 [2025-08-04 01:06:02] frigate.events.cleanup INFO : Exiting event cleanup...
2025-08-04 01:06:02.123910756 [2025-08-04 01:06:02] frigate.record.cleanup INFO : Exiting recording cleanup...
2025-08-04 01:06:02.124020689 [2025-08-04 01:06:02] frigate.stats.emitter INFO : Exiting stats emitter...
2025-08-04 01:06:02.124193242 [2025-08-04 01:06:02] frigate.storage INFO : Exiting storage maintainer...
2025-08-04 01:06:02.129015757 [2025-08-04 01:06:02] frigate.app INFO : Waiting for capture process for front to stop
2025-08-04 01:06:02.129996770 [2025-08-04 01:06:02] watchdog.front INFO : Terminating the existing ffmpeg process...
2025-08-04 01:06:02.130210021 [2025-08-04 01:06:02] watchdog.front INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:06:02.135863051 [2025-08-04 01:06:02] frigate.events.maintainer INFO : Exiting event processor...
2025-08-04 01:06:02.271545622 [2025-08-04 01:06:02] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:06:02.273371953 [2025-08-04 01:06:02] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:06:02.552274912 [2025-08-04 01:06:02] frigate.app INFO : Waiting for capture process for side to stop
2025-08-04 01:06:02.553213373 [2025-08-04 01:06:02] watchdog.side INFO : Terminating the existing ffmpeg process...
2025-08-04 01:06:02.553967883 [2025-08-04 01:06:02] watchdog.side INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:06:02.811906997 [2025-08-04 01:06:02] frigate.object_processing INFO : Exiting object processor...
2025-08-04 01:06:03.227492428 [2025-08-04 01:06:03] frigate.app INFO : Waiting for capture process for kitchen to stop
2025-08-04 01:06:03.228316776 [2025-08-04 01:06:03] watchdog.kitchen INFO : Terminating the existing ffmpeg process...
2025-08-04 01:06:03.228734131 [2025-08-04 01:06:03] watchdog.kitchen INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:06:03.861844286 [2025-08-04 01:06:03] frigate.app INFO : Waiting for capture process for garden to stop
2025-08-04 01:06:03.862689539 [2025-08-04 01:06:03] watchdog.garden INFO : Terminating the existing ffmpeg process...
2025-08-04 01:06:03.862883141 [2025-08-04 01:06:03] watchdog.garden INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:06:04.322995302 [2025-08-04 01:06:04] frigate.app INFO : Waiting for capture process for garage to stop
2025-08-04 01:06:04.323628445 [2025-08-04 01:06:04] watchdog.garage INFO : Terminating the existing ffmpeg process...
2025-08-04 01:06:04.323839382 [2025-08-04 01:06:04] watchdog.garage INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:06:04.787598516 [2025-08-04 01:06:04] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:06:04.788158877 [2025-08-04 01:06:04] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:06:04.910339727 [2025-08-04 01:06:04] frigate.app INFO : Waiting for capture process for road to stop
2025-08-04 01:06:04.910802090 [2025-08-04 01:06:04] watchdog.road INFO : Terminating the existing ffmpeg process...
2025-08-04 01:06:04.910855424 [2025-08-04 01:06:04] watchdog.road INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:06:04.919622457 [2025-08-04 01:06:04] frigate.app INFO : Waiting for process for front to stop
2025-08-04 01:06:08.078817090 [2025-08-04 01:06:08] frigate.video INFO : front: emptying frame queue
2025-08-04 01:06:08.079165921 [2025-08-04 01:06:08] frigate.video INFO : front: exiting subprocess
2025-08-04 01:06:08.088374794 [2025-08-04 01:06:08] frigate.app INFO : Closing frame queue for front
2025-08-04 01:06:08.589195672 [2025-08-04 01:06:08] frigate.app INFO : Waiting for process for side to stop
2025-08-04 01:06:13.507547183 [2025-08-04 01:06:13] frigate.video INFO : side: emptying frame queue
2025-08-04 01:06:13.508000375 [2025-08-04 01:06:13] frigate.video INFO : side: exiting subprocess
2025-08-04 01:06:13.517398118 [2025-08-04 01:06:13] frigate.app INFO : Closing frame queue for side
2025-08-04 01:06:14.018209126 [2025-08-04 01:06:14] frigate.app INFO : Waiting for process for kitchen to stop
2025-08-04 01:06:14.229291589 [2025-08-04 01:06:14] frigate.video INFO : kitchen: emptying frame queue
2025-08-04 01:06:14.229387390 [2025-08-04 01:06:14] frigate.video INFO : kitchen: exiting subprocess
2025-08-04 01:06:14.238358427 [2025-08-04 01:06:14] frigate.app INFO : Closing frame queue for kitchen
2025-08-04 01:06:14.739147961 [2025-08-04 01:06:14] frigate.app INFO : Waiting for process for garden to stop
2025-08-04 01:06:15.182422398 [2025-08-04 01:06:15] frigate.video INFO : garden: emptying frame queue
2025-08-04 01:06:15.182441897 [2025-08-04 01:06:15] frigate.video INFO : garden: exiting subprocess
2025-08-04 01:06:15.191408312 [2025-08-04 01:06:15] frigate.app INFO : Closing frame queue for garden
2025-08-04 01:06:15.692241471 [2025-08-04 01:06:15] frigate.app INFO : Waiting for process for garage to stop
2025-08-04 01:06:15.991530103 [2025-08-04 01:06:15] frigate.video INFO : garage: emptying frame queue
2025-08-04 01:06:15.991550405 [2025-08-04 01:06:15] frigate.video INFO : garage: exiting subprocess
2025-08-04 01:06:16.000575943 [2025-08-04 01:06:16] frigate.app INFO : Closing frame queue for garage
2025-08-04 01:06:16.501395521 [2025-08-04 01:06:16] frigate.app INFO : Waiting for process for road to stop
2025-08-04 01:06:17.451831539 [2025-08-04 01:06:17] frigate.video INFO : road: emptying frame queue
2025-08-04 01:06:17.452004623 [2025-08-04 01:06:17] frigate.video INFO : road: exiting subprocess
2025-08-04 01:06:17.460420191 [2025-08-04 01:06:17] frigate.app INFO : Closing frame queue for road
2025-08-04 01:06:18.462801948 [2025-08-04 01:06:18] frigate.app INFO : Detection queue closed
2025-08-04 01:06:18.964149148 [2025-08-04 01:06:18] frigate.app INFO : Detected frames queue closed
2025-08-04 01:06:19.464403717 [2025-08-04 01:06:19] frigate.app INFO : Timeline queue closed
2025-08-04 01:06:20.657945290 [2025-08-04 01:06:20] frigate.output.output INFO : exiting output process...
2025-08-04 01:06:21.245770652 [2025-08-04 01:06:21] frigate.record.maintainer INFO : Exiting recording maintenance...
2025-08-04 01:06:21.823589025 [2025-08-04 01:06:21] frigate.review.maintainer INFO : Exiting review maintainer...
2025-08-04 01:06:22.408064081 [INFO] Service Frigate exited with code 0 (by signal 0)
s6-rc: info: service frigate successfully stopped
s6-rc: info: service trt-model-prepare: stopping
s6-rc: info: service go2rtc: stopping
s6-rc: info: service frigate-log: stopping
s6-rc: info: service trt-model-prepare successfully stopped
2025-08-04 01:06:22.411420377 exit with signal: terminated
s6-rc: info: service frigate-log successfully stopped
2025-08-04 01:06:22.416622545 [INFO] The go2rtc service exited with code 0 (by signal 0)
s6-rc: info: service go2rtc successfully stopped
s6-rc: info: service go2rtc-log: stopping
s6-rc: info: service go2rtc-log successfully stopped
s6-rc: info: service log-prepare: stopping
s6-rc: info: service s6rc-fdholder: stopping
s6-rc: info: service log-prepare successfully stopped
s6-rc: info: service legacy-cont-init: stopping
s6-rc: info: service s6rc-fdholder successfully stopped
s6-rc: info: service legacy-cont-init successfully stopped
s6-rc: info: service fix-attrs: stopping
s6-rc: info: service fix-attrs successfully stopped
s6-rc: info: service s6rc-oneshot-runner: stopping
s6-rc: info: service s6rc-oneshot-runner successfully stopped
s6-rc: info: service s6rc-fdholder: starting
s6-rc: info: service s6rc-oneshot-runner: starting
s6-rc: info: service s6rc-oneshot-runner successfully started
s6-rc: info: service fix-attrs: starting
s6-rc: info: service s6rc-fdholder successfully started
s6-rc: info: service fix-attrs successfully started
s6-rc: info: service legacy-cont-init: starting
s6-rc: info: service legacy-cont-init successfully started
s6-rc: info: service trt-model-prepare: starting
s6-rc: info: service log-prepare: starting
No models to convert.
s6-rc: info: service log-prepare successfully started
s6-rc: info: service nginx-log: starting
s6-rc: info: service go2rtc-log: starting
s6-rc: info: service frigate-log: starting
s6-rc: info: service certsync-log: starting
s6-rc: info: service trt-model-prepare successfully started
s6-rc: info: service nginx-log successfully started
s6-rc: info: service go2rtc-log successfully started
s6-rc: info: service go2rtc: starting
s6-rc: info: service frigate-log successfully started
s6-rc: info: service certsync-log successfully started
s6-rc: info: service go2rtc successfully started
s6-rc: info: service go2rtc-healthcheck: starting
s6-rc: info: service frigate: starting
s6-rc: info: service frigate successfully started
s6-rc: info: service nginx: starting
s6-rc: info: service go2rtc-healthcheck successfully started
2025-08-04 01:06:29.170067905 [INFO] Preparing new go2rtc config...
2025-08-04 01:06:29.173420913 [INFO] Preparing Frigate...
2025-08-04 01:06:29.175434254 [INFO] Starting NGINX...
2025-08-04 01:06:29.326303628 [INFO] Starting Frigate...
2025-08-04 01:06:29.859276664 [INFO] Starting go2rtc...
2025-08-04 01:06:29.961775531 01:06:29.961 INF go2rtc platform=linux/amd64 revision=b2399f3 version=1.9.2
2025-08-04 01:06:29.961800010 01:06:29.961 INF config path=/dev/shm/go2rtc.yaml
2025-08-04 01:06:29.962325832 01:06:29.962 INF [api] listen addr=:1984
2025-08-04 01:06:29.962327997 01:06:29.962 INF [rtsp] listen addr=:8554
2025-08-04 01:06:29.962507680 01:06:29.962 INF [webrtc] listen addr=:8555/tcp
s6-rc: info: service nginx successfully started
s6-rc: info: service certsync: starting
s6-rc: info: service certsync successfully started
s6-rc: info: service legacy-services: starting
2025-08-04 01:06:30.327581385 [INFO] Starting certsync...
s6-rc: info: service legacy-services successfully started
2025-08-04 01:06:30.435108735 127.0.0.1 - - [04/Aug/2025:01:06:30 +0000] "" 400 0 "-" "-" "-"
2025-08-04 01:06:33.401966409 [2025-08-04 01:06:33] frigate.util.config INFO : Checking if frigate config needs migration...
2025-08-04 01:06:33.442738138 [2025-08-04 01:06:33] frigate.util.config INFO : frigate config does not need migration...
2025-08-04 01:06:33.916337153 2025/08/04 01:06:33 [error] 217#217: *2 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2025-08-04 01:06:33.916363323 2025/08/04 01:06:33 [error] 217#217: *2 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2025-08-04 01:06:38.955028828 2025/08/04 01:06:38 [error] 250#250: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2025-08-04 01:06:38.955034137 2025/08/04 01:06:38 [error] 250#250: *4 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2025-08-04 01:06:39.173768670 [INFO] Starting go2rtc healthcheck service...
2025-08-04 01:06:42.875143851 [2025-08-04 01:06:42] frigate.app INFO : Starting Frigate (0.15.2-3bda638)
2025-08-04 01:06:42.875601565 [2025-08-04 01:06:42] frigate.util.services INFO : Current file limits - Soft: 524288, Hard: 524288
2025-08-04 01:06:42.875658936 [2025-08-04 01:06:42] frigate.util.services INFO : File limit set. New soft limit: 65536, Hard limit remains: 524288
2025-08-04 01:06:42.896302166 [2025-08-04 01:06:42] peewee_migrate.logs INFO : Starting migrations
2025-08-04 01:06:42.897435411 [2025-08-04 01:06:42] peewee_migrate.logs INFO : There is nothing to migrate
2025-08-04 01:06:42.938663025 [2025-08-04 01:06:42] frigate.app INFO : Recording process started: 430
2025-08-04 01:06:42.942947559 [2025-08-04 01:06:42] frigate.app INFO : Review process started: 432
2025-08-04 01:06:42.943325196 [2025-08-04 01:06:42] frigate.app INFO : go2rtc process pid: 156
2025-08-04 01:06:42.962351719 [2025-08-04 01:06:42] frigate.app INFO : Embedding process started: 448
2025-08-04 01:06:42.978081695 [2025-08-04 01:06:42] frigate.app INFO : Output process started: 467
2025-08-04 01:06:42.980359305 [2025-08-04 01:06:42] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:06:42.987284983 [2025-08-04 01:06:42] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:06:43.044593451 [2025-08-04 01:06:43] frigate.app INFO : Camera processor started for front: 483
2025-08-04 01:06:43.052956035 [2025-08-04 01:06:43] frigate.app INFO : Camera processor started for side: 484
2025-08-04 01:06:43.105717430 [2025-08-04 01:06:43] frigate.app INFO : Camera processor started for kitchen: 485
2025-08-04 01:06:43.105722469 [2025-08-04 01:06:43] frigate.app INFO : Camera processor started for garden: 494
2025-08-04 01:06:43.109648215 [2025-08-04 01:06:43] frigate.app INFO : Camera processor started for garage: 508
2025-08-04 01:06:43.132363823 [2025-08-04 01:06:43] frigate.app INFO : Camera processor started for road: 518
2025-08-04 01:06:43.157649788 [2025-08-04 01:06:43] frigate.app INFO : Capture process started for front: 540
2025-08-04 01:06:43.171511940 [2025-08-04 01:06:43] frigate.app INFO : Capture process started for side: 549
2025-08-04 01:06:43.193706206 [2025-08-04 01:06:43] frigate.app INFO : Capture process started for kitchen: 560
2025-08-04 01:06:43.229509647 [2025-08-04 01:06:43] frigate.app INFO : Capture process started for garden: 576
2025-08-04 01:06:43.234411874 [2025-08-04 01:06:42] detector.tensorrt INFO : Starting detection process: 446
2025-08-04 01:06:43.248177332 [2025-08-04 01:06:43] frigate.app INFO : Capture process started for garage: 586
2025-08-04 01:06:43.289361131 [2025-08-04 01:06:43] frigate.app INFO : Capture process started for road: 593
2025-08-04 01:06:43.422247923 [2025-08-04 01:06:43] frigate.api.fastapi_app INFO : Starting FastAPI app
2025-08-04 01:06:43.522803295 [2025-08-04 01:06:43] frigate.detectors.plugins.tensorrt INFO : Loaded engine size: 382 MiB
2025-08-04 01:06:43.716876877 [2025-08-04 01:06:43] frigate.api.fastapi_app INFO : FastAPI started
2025-08-04 01:06:43.989192843 [2025-08-04 01:06:43] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:06:43.991351851 [2025-08-04 01:06:43] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:06:44.066204053 [2025-08-04 01:06:44] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +6, GPU +8, now: CPU 544, GPU 436 (MiB)
2025-08-04 01:06:44.087556802 [2025-08-04 01:06:44] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuDNN: CPU +1, GPU +10, now: CPU 545, GPU 446 (MiB)
2025-08-04 01:06:44.096436203 [2025-08-04 01:06:44] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] TensorRT-managed allocation in engine deserialization: CPU +0, GPU +384, now: CPU 0, GPU 384 (MiB)
2025-08-04 01:06:44.235106302 [2025-08-04 01:06:44] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +1, GPU +8, now: CPU 164, GPU 440 (MiB)
2025-08-04 01:06:44.237895904 [2025-08-04 01:06:44] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuDNN: CPU +0, GPU +8, now: CPU 164, GPU 448 (MiB)
2025-08-04 01:06:44.237966488 [2025-08-04 01:06:44] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] TensorRT-managed allocation in IExecutionContext creation: CPU +0, GPU +67, now: CPU 0, GPU 451 (MiB)
2025-08-04 01:06:44.708023183 Fatal Python error: Segmentation fault
2025-08-04 01:06:44.708027672
2025-08-04 01:06:44.708028990 Thread 0x0000787dc17206c0 (most recent call first):
2025-08-04 01:06:44.708030273 File "/usr/lib/python3.9/threading.py", line 312 in wait
2025-08-04 01:06:44.708031546 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2025-08-04 01:06:44.708035556 File "/usr/lib/python3.9/threading.py", line 892 in run
2025-08-04 01:06:44.708051365 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-08-04 01:06:44.708053164 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-08-04 01:06:44.708054600
2025-08-04 01:06:44.708055757 Current thread 0x0000787e5ae42740 (most recent call first):
2025-08-04 01:06:44.708057279 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 193 in <listcomp>
2025-08-04 01:06:44.708080876 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 192 in _do_inference
2025-08-04 01:06:44.708082494 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 309 in detect_raw
2025-08-04 01:06:44.708083805 File "/opt/frigate/frigate/object_detection.py", line 95 in detect_raw
2025-08-04 01:06:44.708085010 File "/opt/frigate/frigate/object_detection.py", line 145 in run_detector
2025-08-04 01:06:44.708099971 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2025-08-04 01:06:44.708101479 File "/opt/frigate/frigate/util/process.py", line 41 in run_wrapper
2025-08-04 01:06:44.708102906 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2025-08-04 01:06:44.708104127 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2025-08-04 01:06:44.708105684 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2025-08-04 01:06:44.708106932 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2025-08-04 01:06:44.708108101 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2025-08-04 01:06:44.708122941 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2025-08-04 01:06:44.708124406 File "/opt/frigate/frigate/util/process.py", line 30 in start
2025-08-04 01:06:44.708125642 File "/opt/frigate/frigate/object_detection.py", line 204 in start_or_restart
2025-08-04 01:06:44.708127404 File "/opt/frigate/frigate/object_detection.py", line 172 in __init__
2025-08-04 01:06:44.708128581 File "/opt/frigate/frigate/app.py", line 351 in start_detectors
2025-08-04 01:06:44.708129701 File "/opt/frigate/frigate/app.py", line 602 in start
2025-08-04 01:06:44.708130811 File "/opt/frigate/frigate/__main__.py", line 60 in main
2025-08-04 01:06:44.708150665 File "/opt/frigate/frigate/__main__.py", line 64 in <module>
2025-08-04 01:06:44.708152128 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2025-08-04 01:06:44.708153303 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2025-08-04 01:06:45.995687896 [2025-08-04 01:06:45] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:06:45.997774765 [2025-08-04 01:06:45] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:06:46.387892224 [2025-08-04 01:06:46] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:06:46.388401574 [2025-08-04 01:06:46] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:06:50.003718868 [2025-08-04 01:06:50] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:06:50.005797267 [2025-08-04 01:06:50] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:06:58.010134809 [2025-08-04 01:06:58] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:06:58.012408865 [2025-08-04 01:06:58] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:07:03.331632052 [2025-08-04 01:07:03] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:07:03.331791213 [2025-08-04 01:07:03] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:07:03.331794310 [2025-08-04 01:07:03] ffmpeg.road.detect ERROR : [tcp @ 0x5da8e1ce65c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:07:03.331795983 [2025-08-04 01:07:03] ffmpeg.road.detect ERROR : [in#0 @ 0x5da8e1ce5180] Error opening input: No route to host
2025-08-04 01:07:03.331808505 [2025-08-04 01:07:03] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:07:03.331853842 [2025-08-04 01:07:03] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:07:03.404791146 [2025-08-04 01:07:03] frigate.watchdog INFO : Detection appears to be stuck. Restarting detection process...
2025-08-04 01:07:03.443214353 [2025-08-04 01:07:03] detector.tensorrt INFO : Starting detection process: 780
2025-08-04 01:07:04.695886110 [2025-08-04 01:07:04] frigate.detectors.plugins.tensorrt INFO : Loaded engine size: 382 MiB
2025-08-04 01:07:04.899596039 [2025-08-04 01:07:04] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +7, GPU +8, now: CPU 570, GPU 1186 (MiB)
2025-08-04 01:07:04.956681039 [2025-08-04 01:07:04] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuDNN: CPU +1, GPU +10, now: CPU 571, GPU 1196 (MiB)
2025-08-04 01:07:04.978829893 [2025-08-04 01:07:04] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] TensorRT-managed allocation in engine deserialization: CPU +0, GPU +384, now: CPU 0, GPU 384 (MiB)
2025-08-04 01:07:04.991686313 [2025-08-04 01:07:04] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +8, now: CPU 189, GPU 1190 (MiB)
2025-08-04 01:07:04.991793085 [2025-08-04 01:07:04] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] Init cuDNN: CPU +1, GPU +8, now: CPU 190, GPU 1198 (MiB)
2025-08-04 01:07:04.994942164 [2025-08-04 01:07:04] frigate.detectors.plugins.tensorrt INFO : [MemUsageChange] TensorRT-managed allocation in IExecutionContext creation: CPU +0, GPU +67, now: CPU 0, GPU 451 (MiB)
2025-08-04 01:07:04.998020001 Fatal Python error: Segmentation fault
2025-08-04 01:07:04.998023855
2025-08-04 01:07:04.998025116 Thread 0x0000787d06ffd6c0 (most recent call first):
2025-08-04 01:07:04.998037465 File "/usr/lib/python3.9/threading.py", line 312 in wait
2025-08-04 01:07:04.998056312 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2025-08-04 01:07:04.998076779 File "/usr/lib/python3.9/threading.py", line 892 in run
2025-08-04 01:07:04.998107545 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-08-04 01:07:04.998154573 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-08-04 01:07:04.998155883
2025-08-04 01:07:04.998156977 Current thread 0x0000787d077fe6c0 (most recent call first):
2025-08-04 01:07:04.998162673 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 193 in <listcomp>
2025-08-04 01:07:04.998193451 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 192 in _do_inference
2025-08-04 01:07:04.998227737 File "/opt/frigate/frigate/detectors/plugins/tensorrt.py", line 309 in detect_raw
2025-08-04 01:07:04.998257685 File "/opt/frigate/frigate/object_detection.py", line 95 in detect_raw
2025-08-04 01:07:04.998288624 File "/opt/frigate/frigate/object_detection.py", line 145 in run_detector
2025-08-04 01:07:04.998318308 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2025-08-04 01:07:04.998347649 File "/opt/frigate/frigate/util/process.py", line 41 in run_wrapper
2025-08-04 01:07:04.998380822 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2025-08-04 01:07:04.998416321 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2025-08-04 01:07:04.998451266 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2025-08-04 01:07:04.998484481 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2025-08-04 01:07:04.998514608 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2025-08-04 01:07:04.998544017 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2025-08-04 01:07:04.998570667 File "/opt/frigate/frigate/util/process.py", line 30 in start
2025-08-04 01:07:04.998604536 File "/opt/frigate/frigate/object_detection.py", line 204 in start_or_restart
2025-08-04 01:07:04.998630304 File "/opt/frigate/frigate/watchdog.py", line 33 in run
2025-08-04 01:07:04.998657966 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-08-04 01:07:04.998680943 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-08-04 01:07:06.420723650 [2025-08-04 01:07:06] frigate.video ERROR : road: Unable to read frames from ffmpeg process.
2025-08-04 01:07:06.421573607 [2025-08-04 01:07:06] frigate.video ERROR : road: ffmpeg process is not running. exiting capture thread...
2025-08-04 01:07:13.351645512 [2025-08-04 01:07:13] watchdog.road ERROR : Ffmpeg process crashed unexpectedly for road.
2025-08-04 01:07:13.351651937 [2025-08-04 01:07:13] watchdog.road ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-08-04 01:07:13.351653711 [2025-08-04 01:07:13] ffmpeg.road.detect ERROR : [tcp @ 0x62218a7985c0] Connection to tcp://193.2.1.60:554?timeout=5000000 failed: No route to host
2025-08-04 01:07:13.351655183 [2025-08-04 01:07:13] ffmpeg.road.detect ERROR : [in#0 @ 0x62218a797180] Error opening input: No route to host
2025-08-04 01:07:13.351656714 [2025-08-04 01:07:13] ffmpeg.road.detect ERROR : Error opening input file rtsp://*:*@193.2.1.60:554/unicast/c1/s0/live.
2025-08-04 01:07:13.351658202 [2025-08-04 01:07:13] ffmpeg.road.detect ERROR : Error opening input files: No route to host
2025-08-04 01:07:13.414076686 [2025-08-04 01:07:13] frigate.watchdog INFO : Detection appears to have stopped. Exiting Frigate...
s6-rc: info: service legacy-services: stopping
s6-rc: info: service legacy-services successfully stopped
s6-rc: info: service go2rtc-healthcheck: stopping
s6-rc: info: service certsync: stopping
s6-rc: info: service go2rtc-healthcheck successfully stopped
2025-08-04 01:07:13.447615340 [INFO] The go2rtc-healthcheck service exited with code 256 (by signal 15)
2025-08-04 01:07:13.449137707 [INFO] Service CERTSYNC exited with code 256 (by signal 15)
s6-rc: info: service certsync successfully stopped
s6-rc: info: service nginx: stopping
s6-rc: info: service certsync-log: stopping
s6-rc: info: service certsync-log successfully stopped
2025-08-04 01:07:13.514005883 [INFO] Service NGINX exited with code 0 (by signal 0)
s6-rc: info: service nginx successfully stopped
s6-rc: info: service nginx-log: stopping
s6-rc: info: service frigate: stopping
s6-rc: info: service nginx-log successfully stopped
2025-08-04 01:07:13.669913112 [2025-08-04 01:07:13] frigate.app INFO : Stopping...
2025-08-04 01:07:13.671655547 [2025-08-04 01:07:13] frigate.stats.emitter INFO : Exiting stats emitter...
2025-08-04 01:07:13.672711485 [2025-08-04 01:07:13] frigate.record.cleanup INFO : Exiting recording cleanup...
2025-08-04 01:07:13.673292293 [2025-08-04 01:07:13] frigate.ptz.autotrack INFO : Exiting autotracker...
2025-08-04 01:07:13.673557096 [2025-08-04 01:07:13] frigate.storage INFO : Exiting storage maintainer...
2025-08-04 01:07:13.680223981 [2025-08-04 01:07:13] frigate.events.cleanup INFO : Exiting event cleanup...
2025-08-04 01:07:13.680358466 [2025-08-04 01:07:13] frigate.watchdog INFO : Exiting watchdog...
2025-08-04 01:07:13.681293892 [2025-08-04 01:07:13] frigate.app INFO : Waiting for capture process for front to stop
2025-08-04 01:07:13.682480273 [2025-08-04 01:07:13] watchdog.front INFO : Terminating the existing ffmpeg process...
2025-08-04 01:07:13.682869617 [2025-08-04 01:07:13] watchdog.front INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:07:14.017760963 [2025-08-04 01:07:14] frigate.comms.mqtt ERROR : Unable to connect to MQTT server: MQTT Not authorized
2025-08-04 01:07:14.020082020 [2025-08-04 01:07:14] frigate.comms.mqtt ERROR : MQTT disconnected
2025-08-04 01:07:14.267504968 [2025-08-04 01:07:14] frigate.app INFO : Waiting for capture process for side to stop
2025-08-04 01:07:14.268427150 [2025-08-04 01:07:14] watchdog.side INFO : Terminating the existing ffmpeg process...
2025-08-04 01:07:14.269248333 [2025-08-04 01:07:14] watchdog.side INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:07:14.331191379 [2025-08-04 01:07:14] frigate.object_processing INFO : Exiting object processor...
2025-08-04 01:07:14.449141040 [2025-08-04 01:07:14] frigate.events.maintainer INFO : Exiting event processor...
2025-08-04 01:07:14.614856080 [2025-08-04 01:07:14] frigate.app INFO : Waiting for capture process for kitchen to stop
2025-08-04 01:07:14.615554192 [2025-08-04 01:07:14] watchdog.kitchen INFO : Terminating the existing ffmpeg process...
2025-08-04 01:07:14.615845266 [2025-08-04 01:07:14] watchdog.kitchen INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:07:15.097152157 [2025-08-04 01:07:15] frigate.app INFO : Waiting for capture process for garden to stop
2025-08-04 01:07:15.098031929 [2025-08-04 01:07:15] watchdog.garden INFO : Terminating the existing ffmpeg process...
2025-08-04 01:07:15.098386489 [2025-08-04 01:07:15] watchdog.garden INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:07:15.551903159 [2025-08-04 01:07:15] frigate.app INFO : Waiting for capture process for garage to stop
2025-08-04 01:07:15.552738421 [2025-08-04 01:07:15] watchdog.garage INFO : Terminating the existing ffmpeg process...
2025-08-04 01:07:15.552986396 [2025-08-04 01:07:15] watchdog.garage INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:07:16.123235035 [2025-08-04 01:07:16] frigate.app INFO : Waiting for capture process for road to stop
2025-08-04 01:07:16.123815256 [2025-08-04 01:07:16] watchdog.road INFO : Terminating the existing ffmpeg process...
2025-08-04 01:07:16.123898920 [2025-08-04 01:07:16] watchdog.road INFO : Waiting for ffmpeg to exit gracefully...
2025-08-04 01:07:16.133696536 [2025-08-04 01:07:16] frigate.app INFO : Waiting for process for front to stop
2025-08-04 01:07:19.724855915 [2025-08-04 01:07:19] frigate.video INFO : front: emptying frame queue
2025-08-04 01:07:19.725221490 [2025-08-04 01:07:19] frigate.video INFO : front: exiting subprocess
2025-08-04 01:07:19.734408699 [2025-08-04 01:07:19] frigate.app INFO : Closing frame queue for front
2025-08-04 01:07:20.235230486 [2025-08-04 01:07:20] frigate.app INFO : Waiting for process for side to stop
2025-08-04 01:07:24.997750565 [2025-08-04 01:07:24] frigate.video INFO : side: emptying frame queue
2025-08-04 01:07:24.998029167 [2025-08-04 01:07:24] frigate.video INFO : side: exiting subprocess
2025-08-04 01:07:25.006349368 [2025-08-04 01:07:25] frigate.app INFO : Closing frame queue for side
2025-08-04 01:07:25.507246775 [2025-08-04 01:07:25] frigate.app INFO : Waiting for process for kitchen to stop
2025-08-04 01:07:26.043794426 [2025-08-04 01:07:26] frigate.video INFO : kitchen: emptying frame queue
2025-08-04 01:07:26.043840289 [2025-08-04 01:07:26] frigate.video INFO : kitchen: exiting subprocess
2025-08-04 01:07:26.051955071 [2025-08-04 01:07:26] frigate.app INFO : Closing frame queue for kitchen
2025-08-04 01:07:26.552484858 [2025-08-04 01:07:26] frigate.app INFO : Waiting for process for garden to stop
2025-08-04 01:07:26.921586307 [2025-08-04 01:07:26] frigate.video INFO : garden: emptying frame queue
2025-08-04 01:07:26.921681822 [2025-08-04 01:07:26] frigate.video INFO : garden: exiting subprocess
2025-08-04 01:07:26.930389675 [2025-08-04 01:07:26] frigate.app INFO : Closing frame queue for garden
2025-08-04 01:07:27.431235095 [2025-08-04 01:07:27] frigate.app INFO : Waiting for process for garage to stop
2025-08-04 01:07:28.351193027 [2025-08-04 01:07:28] frigate.video INFO : garage: emptying frame queue
2025-08-04 01:07:28.351217674 [2025-08-04 01:07:28] frigate.video INFO : garage: exiting subprocess
2025-08-04 01:07:28.359495892 [2025-08-04 01:07:28] frigate.app INFO : Closing frame queue for garage
2025-08-04 01:07:28.860295211 [2025-08-04 01:07:28] frigate.app INFO : Waiting for process for road to stop
2025-08-04 01:07:29.196560078 [2025-08-04 01:07:29] frigate.video INFO : road: emptying frame queue
2025-08-04 01:07:29.196689155 [2025-08-04 01:07:29] frigate.video INFO : road: exiting subprocess
2025-08-04 01:07:29.204462601 [2025-08-04 01:07:29] frigate.app INFO : Closing frame queue for road
2025-08-04 01:07:30.207341398 [2025-08-04 01:07:30] frigate.app INFO : Detection queue closed
2025-08-04 01:07:30.708603566 [2025-08-04 01:07:30] frigate.app INFO : Detected frames queue closed
2025-08-04 01:07:31.209162776 [2025-08-04 01:07:31] frigate.app INFO : Timeline queue closed
2025-08-04 01:07:32.402634376 [2025-08-04 01:07:32] frigate.output.output INFO : exiting output process...
2025-08-04 01:07:32.994820408 [2025-08-04 01:07:32] frigate.record.maintainer INFO : Exiting recording maintenance...
2025-08-04 01:07:33.342720815 [2025-08-04 01:07:33] frigate.review.maintainer INFO : Exiting review maintainer...
2025-08-04 01:07:33.577063590 [2025-08-04 01:07:33] frigate.comms.ws INFO : Exiting websocket client...
2025-08-04 01:07:34.001612355 [2025-08-04 01:07:33] peewee.sqliteq INFO : writer received shutdown request, exiting.
2025-08-04 01:07:34.132446849 [INFO] Service Frigate exited with code 0 (by signal 0)
s6-rc: info: service frigate successfully stopped
s6-rc: info: service trt-model-prepare: stopping
s6-rc: info: service go2rtc: stopping
s6-rc: info: service frigate-log: stopping
s6-rc: info: service trt-model-prepare successfully stopped
s6-rc: info: service frigate-log successfully stopped
2025-08-04 01:07:34.138113799 exit with signal: terminated
2025-08-04 01:07:34.143925209 [INFO] The go2rtc service exited with code 0 (by signal 0)
s6-rc: info: service go2rtc successfully stopped
s6-rc: info: service go2rtc-log: stopping
s6-rc: info: service go2rtc-log successfully stopped
s6-rc: info: service log-prepare: stopping
s6-rc: info: service s6rc-fdholder: stopping
s6-rc: info: service log-prepare successfully stopped
s6-rc: info: service legacy-cont-init: stopping
s6-rc: info: service s6rc-fdholder successfully stopped
s6-rc: info: service legacy-cont-init successfully stopped
s6-rc: info: service fix-attrs: stopping
s6-rc: info: service fix-attrs successfully stopped
s6-rc: info: service s6rc-oneshot-runner: stopping
s6-rc: info: service s6rc-oneshot-runner successfully stopped
s6-rc: info: service s6rc-fdholder: starting
s6-rc: info: service s6rc-oneshot-runner: starting
s6-rc: info: service s6rc-oneshot-runner successfully started
s6-rc: info: service fix-attrs: starting
s6-rc: info: service s6rc-fdholder successfully started
s6-rc: info: service fix-attrs successfully started
s6-rc: info: service legacy-cont-init: starting
s6-rc: info: service legacy-cont-init successfully started
s6-rc: info: service trt-model-prepare: starting
s6-rc: info: service log-prepare: starting
No models to convert.
s6-rc: info: service log-prepare successfully started
s6-rc: info: service nginx-log: starting
s6-rc: info: service go2rtc-log: starting
s6-rc: info: service frigate-log: starting
s6-rc: info: service certsync-log: starting
s6-rc: info: service trt-model-prepare successfully started
s6-rc: info: service nginx-log successfully started
s6-rc: info: service frigate-log successfully started
s6-rc: info: service go2rtc-log successfully started
s6-rc: info: service go2rtc: starting
s6-rc: info: service certsync-log successfully started
s6-rc: info: service go2rtc successfully started
s6-rc: info: service go2rtc-healthcheck: starting
s6-rc: info: service frigate: starting
s6-rc: info: service go2rtc-healthcheck successfully started
2025-08-04 01:07:40.537380588 [INFO] Preparing new go2rtc config...
s6-rc: info: service frigate successfully started
s6-rc: info: service nginx: starting
2025-08-04 01:07:40.540533544 [INFO] Preparing Frigate...
2025-08-04 01:07:40.543589061 [INFO] Starting NGINX...
2025-08-04 01:07:40.665765538 [INFO] Starting Frigate...
2025-08-04 01:07:41.150877536 [INFO] Starting go2rtc...
2025-08-04 01:07:41.251800117 01:07:41.251 INF go2rtc platform=linux/amd64 revision=b2399f3 version=1.9.2
2025-08-04 01:07:41.251823455 01:07:41.251 INF config path=/dev/shm/go2rtc.yaml
2025-08-04 01:07:41.252429261 01:07:41.252 INF [rtsp] listen addr=:8554
2025-08-04 01:07:41.252431372 01:07:41.252 INF [api] listen addr=:1984
2025-08-04 01:07:41.252494930 01:07:41.252 INF [webrtc] listen addr=:8555/tcp
s6-rc: info: service nginx successfully started
s6-rc: info: service certsync: starting
s6-rc: info: service certsync successfully started
s6-rc: info: service legacy-services: starting
2025-08-04 01:07:41.674424380 [INFO] Starting certsync...
s6-rc: info: service legacy-services successfully started
2025-08-04 01:07:41.777554275 127.0.0.1 - - [04/Aug/2025:01:07:41 +0000] "" 400 0 "-" "-" "-"
2025-08-04 01:07:44.159197284 [2025-08-04 01:07:44] frigate.util.config INFO : Checking if frigate config needs migration...
2025-08-04 01:07:44.196248893 [2025-08-04 01:07:44] frigate.util.config INFO : frigate config does not need migration...
2025-08-04 01:07:45.289050548 2025/08/04 01:07:45 [error] 221#221: *2 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2025-08-04 01:07:45.289055939 2025/08/04 01:07:45 [error] 221#221: *2 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2025-08-04 01:07:50.328795026 2025/08/04 01:07:50 [error] 218#218: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2025-08-04 01:07:50.328820259 2025/08/04 01:07:50 [error] 218#218: *4 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2025-08-04 01:07:50.541122351 [INFO] Starting go2rtc healthcheck service... Install methodProxmox via Docker Object DetectorTensorRT Screenshots of the Frigate UI's System metrics pagesThere is nothing to show as frigate is stuck in a boot loop Any other information that may be helpfulfrigate is running inside a proxmox lxc container and aslo through portainer inside the lxc container. The gpu is also shared amongst other lxc containers but hardly ever used by them |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Your config shows you are using TensorRT with a GTX 1050 2GB and the
Action steps:
See the full TensorRT setup and requirements here: Supported Hardware(1). 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
Your biggest issue is you have the model size set to 320 but you are using a 416 model |
Beta Was this translation helpful? Give feedback.
Your biggest issue is you have the model size set to 320 but you are using a 416 model