Issue Description
podman run, pull, version, info, and possibly other commands do not work on a fresh 5.8.0 install on Windows 11 Home
The behavior is very similar to: #22439 but the cause is not the same.
Steps to reproduce the issue
Steps to reproduce the issue
- wsl --update
- download podman 5.8.0 binary for windows
- podman machine init
- podman machine start
- podman run ubi8-micro date
Describe the results you received
Cannot connect to Podman. Please verify your connection to the Linux system using podman system connection list, or try podman machine init and podman machine start to manage a new Linux VM
Error: unable to connect to Podman socket: Get "http://d/v5.8.0/libpod/_ping": ssh: rejected: connect failed (open failed)
Describe the results you expected
Today's date.
podman info output
PS C:\Users\rossb> podman info
Cannot connect to Podman. Please verify your connection to the Linux system using `podman system connection list`, or try `podman machine init` and `podman machine start` to manage a new Linux VM
Error: unable to connect to Podman socket: Get "http://d/v5.8.0/libpod/_ping": ssh: rejected: connect failed (open failed)
If you are unable to run podman info for any reason, please provide the podman version, operating system and its version and the architecture you are running.
Podman version: 5.8.0
OS: Windows 11 Home
OS Version: 10.0.26200 Build 26200
Hardware: Lenovo Legion Pro 7i Intel Ultra 9 275HX
Podman in a container
No
Privileged Or Rootless
Rootless
Upstream Latest Release
Yes
Additional environment details
Additional environment details
Additional information
Installed 5.8.0 from msi.
PS C:\Users\rossb> podman machine init
...all good
PS C:\Users\rossb> podman machine start
...all good
PS C:\Users\rossb> podman run ubi8-micro date
Cannot connect to Podman. Please verify your connection to the Linux system using podman system connection list, or try podman machine init and podman machine start to manage a new Linux VM
Error: unable to connect to Podman socket: Get "http://d/v5.8.0/libpod/_ping": ssh: rejected: connect failed (open failed)
PS C:\Users\rossb> podman system connection list
Name URI Identity Default ReadWrite
podman-machine-default ssh://user@127.0.0.1:51537/run/user/1000/podman/podman.sock C:\Users\rossb.local\share\containers\podman\machine\machine true true
podman-machine-default-root ssh://root@127.0.0.1:51537/run/podman/podman.sock C:\Users\rossb.local\share\containers\podman\machine\machine false true
PS C:\Users\rossb> podman machine ssh
Connecting to vm podman-machine-default. To close connection, use ~. or exit
Last login: Mon Mar 9 19:12:17 2026 from ::1
[user@Derek ~]$ systemctl status podman.service
○ podman.service - Podman API Service
Loaded: loaded (/usr/lib/systemd/system/podman.service; disabled; preset: disabled)
Drop-In: /usr/lib/systemd/system/service.d
└─10-timeout-abort.conf
Active: inactive (dead)
TriggeredBy: ● podman.socket
Docs: man:podman-system-service(1)
[user@Derek ~]$ systemctl status podman.socket
● podman.socket - Podman API Socket
Loaded: loaded (/usr/lib/systemd/system/podman.socket; enabled; preset: disabled)
Drop-In: /etc/systemd/system/podman.socket.d
└─10-group.conf
Active: active (listening) since Mon 2026-03-09 19:07:32 PDT; 40min ago
Invocation: 53f6ab8781524627859da78bd1cf61dc
Triggers: ● podman.service
Docs: man:podman-system-service(1)
Listen: /run/podman/podman.sock (Stream)
Tasks: 0 (limit: 38157)
Memory: 0B (peak: 256K)
CPU: 870us
CGroup: /system.slice/podman.socket
Mar 09 19:07:32 Derek systemd[1]: Starting podman.socket - Podman API Socket...
Mar 09 19:07:32 Derek systemd[1]: Listening on podman.socket - Podman API Socket.
[user@Derek ~]$ sudo systemctl start podman.service
[user@Derek ~]$ systemctl status podman.service
○ podman.service - Podman API Service
Loaded: loaded (/usr/lib/systemd/system/podman.service; disabled; preset: disabled)
Drop-In: /usr/lib/systemd/system/service.d
└─10-timeout-abort.conf
Active: inactive (dead) since Mon 2026-03-09 19:50:20 PDT; 1s ago
Duration: 5.043s
Invocation: e94cbced928b423ca8cb896cd1b39e06
TriggeredBy: ● podman.socket
Docs: man:podman-system-service(1)
Process: 1129 ExecStart=/usr/bin/podman $LOGGING system service (code=exited, status=0/SUCCESS)
Main PID: 1129 (code=exited, status=0/SUCCESS)
Mem peak: 17.1M
CPU: 41ms
Mar 09 19:50:15 Derek systemd[1]: Starting podman.service - Podman API Service...
Mar 09 19:50:15 Derek systemd[1]: Started podman.service - Podman API Service.
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="/usr/bin/podman filtering at log level info"
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="Setting parallel job count to 73"
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="Using sqlite as database backend"
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="Not using native diff for overlay, this may cause degraded performance for building images: k>
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="Using systemd socket activation to determine API endpoint"
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="API service listening on "/run/podman/podman.sock". URI: "unix:///run/podman/podman.sock""
Mar 09 19:50:20 Derek podman[1129]: time="2026-03-09T19:50:20-07:00" level=info msg="Received shutdown.Stop(), terminating!" PID=1129
Mar 09 19:50:20 Derek systemd[1]: podman.service: Deactivated successfully.
// Now debug logs:
[user@Derek ~]$ sudo sh
sh-5.3# vi /usr/lib/systemd/system/podman.service
sh-5.3# grep log /usr/lib/systemd/system/podman.service
Environment=LOGGING="--log-level=debug"
sh-5.3# systemctl daemon-reload
sh-5.3# systemctl restart podman.service
sh-5.3# journalctl -u podman.service
Mar 09 20:28:39 Derek systemd[1]: Starting podman.service - Podman API Service...
Mar 09 20:28:39 Derek systemd[1]: Started podman.service - Podman API Service.
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="/usr/bin/podman filtering at log level debug"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Called service.PersistentPreRunE(/usr/bin/podman --log-level=debug system service)"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="Setting parallel job count to 73"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using conmon: "/usr/bin/conmon""
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="Using sqlite as database backend"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using graph driver overlay"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using graph root /var/lib/containers/storage"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using run root /run/containers/storage"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using static dir /var/lib/containers/storage/libpod"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using tmp dir /run/libpod"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using volume path /var/lib/containers/storage/volumes"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using transient store: false"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="[graphdriver] trying provided driver "overlay""
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="overlay: imagestore=/usr/lib/containers/storage"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Cached value indicated that overlay is supported"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Cached value indicated that overlay is supported"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Cached value indicated that metacopy is being used"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Cached value indicated that native-diff is not being used"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="Not using native diff for overlay, this may cause degraded performance for building images: kernel has CONFIG_OVERLAY_FS_REDIRECT_DIR enabled"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="backingFs=extfs, projectQuotaSupported=false, useNativeDiff=false, usingMetacopy=true"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Initializing event backend journald"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime runsc initialization failed: no valid executable found for OCI runtime runsc: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime youki initialization failed: no valid executable found for OCI runtime youki: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime ocijail initialization failed: no valid executable found for OCI runtime ocijail: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime crun-wasm initialization failed: no valid executable found for OCI runtime crun-wasm: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime runj initialization failed: no valid executable found for OCI runtime runj: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime krun initialization failed: no valid executable found for OCI runtime krun: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime crun-vm initialization failed: no valid executable found for OCI runtime crun-vm: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime runc initialization failed: no valid executable found for OCI runtime runc: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime kata initialization failed: no valid executable found for OCI runtime kata: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using OCI runtime "/usr/bin/crun""
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="Using systemd socket activation to determine API endpoint"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="registered SIGHUP watcher for config"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="API service listening on "/run/podman/podman.sock". URI: "unix:///run/podman/podman.sock""
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="CORS Headers were not set"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="waiting for SIGHUP to reload configuration"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="API service(s) shutting down, idle for 5s"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="API service shutdown, 0/0 connection(s)"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="API service forced shutdown, ignoring timeout Duration"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="Called service.PersistentPostRunE(/usr/bin/podman --log-level=debug system service)"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="Shutting down engines"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=info msg="Received shutdown.Stop(), terminating!" PID=2653
Mar 09 20:28:44 Derek systemd[1]: podman.service: Deactivated successfully.
This looks fine to me until the SIGHUP causes the whole thing to shut down.
Issue Description
podman run, pull, version, info, and possibly other commands do not work on a fresh 5.8.0 install on Windows 11 Home
The behavior is very similar to: #22439 but the cause is not the same.
Steps to reproduce the issue
Steps to reproduce the issue
Describe the results you received
Cannot connect to Podman. Please verify your connection to the Linux system using
podman system connection list, or trypodman machine initandpodman machine startto manage a new Linux VMError: unable to connect to Podman socket: Get "http://d/v5.8.0/libpod/_ping": ssh: rejected: connect failed (open failed)
Describe the results you expected
Today's date.
podman info output
Podman in a container
No
Privileged Or Rootless
Rootless
Upstream Latest Release
Yes
Additional environment details
Additional environment details
Additional information
Installed 5.8.0 from msi.
PS C:\Users\rossb> podman machine init
...all good
PS C:\Users\rossb> podman machine start
...all good
PS C:\Users\rossb> podman run ubi8-micro date
Cannot connect to Podman. Please verify your connection to the Linux system using
podman system connection list, or trypodman machine initandpodman machine startto manage a new Linux VMError: unable to connect to Podman socket: Get "http://d/v5.8.0/libpod/_ping": ssh: rejected: connect failed (open failed)
PS C:\Users\rossb> podman system connection list
Name URI Identity Default ReadWrite
podman-machine-default ssh://user@127.0.0.1:51537/run/user/1000/podman/podman.sock C:\Users\rossb.local\share\containers\podman\machine\machine true true
podman-machine-default-root ssh://root@127.0.0.1:51537/run/podman/podman.sock C:\Users\rossb.local\share\containers\podman\machine\machine false true
PS C:\Users\rossb> podman machine ssh
Connecting to vm podman-machine-default. To close connection, use
~.orexitLast login: Mon Mar 9 19:12:17 2026 from ::1
[user@Derek ~]$ systemctl status podman.service
○ podman.service - Podman API Service
Loaded: loaded (/usr/lib/systemd/system/podman.service; disabled; preset: disabled)
Drop-In: /usr/lib/systemd/system/service.d
└─10-timeout-abort.conf
Active: inactive (dead)
TriggeredBy: ● podman.socket
Docs: man:podman-system-service(1)
[user@Derek ~]$ systemctl status podman.socket
● podman.socket - Podman API Socket
Loaded: loaded (/usr/lib/systemd/system/podman.socket; enabled; preset: disabled)
Drop-In: /etc/systemd/system/podman.socket.d
└─10-group.conf
Active: active (listening) since Mon 2026-03-09 19:07:32 PDT; 40min ago
Invocation: 53f6ab8781524627859da78bd1cf61dc
Triggers: ● podman.service
Docs: man:podman-system-service(1)
Listen: /run/podman/podman.sock (Stream)
Tasks: 0 (limit: 38157)
Memory: 0B (peak: 256K)
CPU: 870us
CGroup: /system.slice/podman.socket
Mar 09 19:07:32 Derek systemd[1]: Starting podman.socket - Podman API Socket...
Mar 09 19:07:32 Derek systemd[1]: Listening on podman.socket - Podman API Socket.
[user@Derek ~]$ sudo systemctl start podman.service
[user@Derek ~]$ systemctl status podman.service
○ podman.service - Podman API Service
Loaded: loaded (/usr/lib/systemd/system/podman.service; disabled; preset: disabled)
Drop-In: /usr/lib/systemd/system/service.d
└─10-timeout-abort.conf
Active: inactive (dead) since Mon 2026-03-09 19:50:20 PDT; 1s ago
Duration: 5.043s
Invocation: e94cbced928b423ca8cb896cd1b39e06
TriggeredBy: ● podman.socket
Docs: man:podman-system-service(1)
Process: 1129 ExecStart=/usr/bin/podman $LOGGING system service (code=exited, status=0/SUCCESS)
Main PID: 1129 (code=exited, status=0/SUCCESS)
Mem peak: 17.1M
CPU: 41ms
Mar 09 19:50:15 Derek systemd[1]: Starting podman.service - Podman API Service...
Mar 09 19:50:15 Derek systemd[1]: Started podman.service - Podman API Service.
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="/usr/bin/podman filtering at log level info"
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="Setting parallel job count to 73"
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="Using sqlite as database backend"
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="Not using native diff for overlay, this may cause degraded performance for building images: k>
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="Using systemd socket activation to determine API endpoint"
Mar 09 19:50:15 Derek podman[1129]: time="2026-03-09T19:50:15-07:00" level=info msg="API service listening on "/run/podman/podman.sock". URI: "unix:///run/podman/podman.sock""
Mar 09 19:50:20 Derek podman[1129]: time="2026-03-09T19:50:20-07:00" level=info msg="Received shutdown.Stop(), terminating!" PID=1129
Mar 09 19:50:20 Derek systemd[1]: podman.service: Deactivated successfully.
// Now debug logs:
[user@Derek ~]$ sudo sh
sh-5.3# vi /usr/lib/systemd/system/podman.service
sh-5.3# grep log /usr/lib/systemd/system/podman.service
Environment=LOGGING="--log-level=debug"
sh-5.3# systemctl daemon-reload
sh-5.3# systemctl restart podman.service
sh-5.3# journalctl -u podman.service
Mar 09 20:28:39 Derek systemd[1]: Starting podman.service - Podman API Service...
Mar 09 20:28:39 Derek systemd[1]: Started podman.service - Podman API Service.
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="/usr/bin/podman filtering at log level debug"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Called service.PersistentPreRunE(/usr/bin/podman --log-level=debug system service)"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="Setting parallel job count to 73"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using conmon: "/usr/bin/conmon""
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="Using sqlite as database backend"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using graph driver overlay"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using graph root /var/lib/containers/storage"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using run root /run/containers/storage"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using static dir /var/lib/containers/storage/libpod"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using tmp dir /run/libpod"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using volume path /var/lib/containers/storage/volumes"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using transient store: false"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="[graphdriver] trying provided driver "overlay""
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="overlay: imagestore=/usr/lib/containers/storage"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Cached value indicated that overlay is supported"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Cached value indicated that overlay is supported"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Cached value indicated that metacopy is being used"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Cached value indicated that native-diff is not being used"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="Not using native diff for overlay, this may cause degraded performance for building images: kernel has CONFIG_OVERLAY_FS_REDIRECT_DIR enabled"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="backingFs=extfs, projectQuotaSupported=false, useNativeDiff=false, usingMetacopy=true"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Initializing event backend journald"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime runsc initialization failed: no valid executable found for OCI runtime runsc: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime youki initialization failed: no valid executable found for OCI runtime youki: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime ocijail initialization failed: no valid executable found for OCI runtime ocijail: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime crun-wasm initialization failed: no valid executable found for OCI runtime crun-wasm: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime runj initialization failed: no valid executable found for OCI runtime runj: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime krun initialization failed: no valid executable found for OCI runtime krun: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime crun-vm initialization failed: no valid executable found for OCI runtime crun-vm: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime runc initialization failed: no valid executable found for OCI runtime runc: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Configured OCI runtime kata initialization failed: no valid executable found for OCI runtime kata: invalid argument"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="Using OCI runtime "/usr/bin/crun""
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="Using systemd socket activation to determine API endpoint"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="registered SIGHUP watcher for config"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=info msg="API service listening on "/run/podman/podman.sock". URI: "unix:///run/podman/podman.sock""
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="CORS Headers were not set"
Mar 09 20:28:39 Derek podman[2653]: time="2026-03-09T20:28:39-07:00" level=debug msg="waiting for SIGHUP to reload configuration"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="API service(s) shutting down, idle for 5s"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="API service shutdown, 0/0 connection(s)"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="API service forced shutdown, ignoring timeout Duration"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="Called service.PersistentPostRunE(/usr/bin/podman --log-level=debug system service)"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=debug msg="Shutting down engines"
Mar 09 20:28:44 Derek podman[2653]: time="2026-03-09T20:28:44-07:00" level=info msg="Received shutdown.Stop(), terminating!" PID=2653
Mar 09 20:28:44 Derek systemd[1]: podman.service: Deactivated successfully.
This looks fine to me until the SIGHUP causes the whole thing to shut down.