개요
podman 컨테이너 구동 중 Error: OCI runtime error: crun: sd-bus call: Process org.freedesktop.systemdl exited with status 1: Input/output error 에러가 발생하여 해결하는 과정을 기록한다.
해결
동작중인 podman 컨테이너가 있음에도 해당 에러가 발생하는 이유는 podman socket service가 구동중이지 않기 때문에 발생한다. https://access.redhat.com/solutions/6512011 페이지를 참고하여 서비스를 구동한다.
sudo systemctl systus podman으로 서비스 구동 여부를 확인한다.
sudo systemctl daemon-reload
sudo systemctl enable podman.socket podman
sudo systemctl start podman.socket podman
반응형
'OSX Tips > Trouble Shooting' 카테고리의 다른 글
[podman] 실행중인 컨테이너가 임의 종료되는 문제 해결 (0) | 2024.02.27 |
---|---|
bits/libc-header-start.h: No such file or directory 해결 (0) | 2023.01.31 |
[pi] Read-only file system 오류 해결 (0) | 2021.07.12 |
[Kali] metasploit Could not locate gemfile 해결 (0) | 2021.03.10 |
[Big Sur] homebrew-core is a shallow clone 에러 해결 (0) | 2020.12.31 |