programing

컨테이너 프로세스를 시작하여 "exec: \"bash\": $PATH에서 실행 파일을 찾을 수 없음: 알 수 없음

goodsources 2022. 9. 14. 22:31
반응형

컨테이너 프로세스를 시작하여 "exec: \"bash\": $PATH에서 실행 파일을 찾을 수 없음: 알 수 없음

e44671200b7c /# mysql -u root -p bash 

mysql: command not found

나는 컨테이너 "마리아드브"에 들어갈 수 있었다.

docker exec -it e44671200b7c /bin/bash

할 수 없어서 지금 이 에러가 발생하고 있습니다.

OCI runtime exec failed: exec failed: container_linux.go:349: starting container process caused "exec: \"bash\": executable file not found in $PATH": unknown

bash에는 없습니다.mariadb도커 이미지사용하다docker exec -it e44671200b7c /bin/sh또는 간단히 말하면docker exec -it e44671200b7c sh대신.

언급URL : https://stackoverflow.com/questions/63937096/starting-container-process-caused-exec-bash-executable-file-not-found-in

반응형