docker: Error response from daemon: OCI runtime create failed: container_linux.go:344: starting container process caused "exec: \"-it\": executable file not found in $PATH": unknown.
时间: 2024-04-09 19:27:56 浏览: 289
这个错误是由于在执行Docker命令时使用了"-it"参数,而该参数并不是一个可执行文件。"-it"参数用于在交互式终端中运行容器。要解决这个问题,您可以尝试删除"-it"参数并重新运行Docker命令。例如,将命令从类似于以下形式:
```shell
docker run -it <image_name> <command>
```
更改为:
```shell
docker run <image_name> <command>
```
这样应该能够正常运行容器。请注意,这取决于您的具体使用情况,您可能需要对命令做出适当的修改。
相关问题
这个错误怎么解决‘docker: Error response from daemon: failed to create shim: OCI runtime create failed: container_linux.go:380: starting container process caused: process_linux.go:545: container init caused: rootfs_linux.go:75: mounting "/usr/local/docker_elasticsearch/elasticsearch.yml" to rootfs at "/usr/share/elasticsearch/config/elasticsearch.yml" caused: mount through procfd: not a directory: unknown: Are you trying to mount a directory onto a file (or vice-versa)? Check if the specified host path exists and is the expected type.’
这个错误提示是由于在启动 Docker 容器时,挂载的文件路径有误导致的。
具体来说,这个错误提示中提到了一个文件路径 `"/usr/local/docker_elasticsearch/elasticsearch.yml"`,它被挂载到了容器中的 `"/usr/share/elasticsearch/config/elasticsearch.yml"`,但是在挂载时出现了问题,导致容器无法正常启动。
首先,你需要确认一下 `/usr/local/docker_elasticsearch/elasticsearch.yml` 这个路径是否存在,并且该路径下是否有 `elasticsearch.yml` 这个文件。如果该文件不存在,则需要先创建该文件。
其次,你需要检查容器启动命令中关于挂载的部分是否正确。在这个错误提示中,可能是因为在挂载时将一个文件挂载到了一个目录上,或者是将一个目录挂载到了一个文件上,导致挂载失败。因此,你需要确认一下挂载的目标路径是否正确,以及该路径是否存在。
最后,你可以尝试在启动容器时添加 `--privileged` 参数,这会给予容器更高的权限,可能能够解决这个问题。不过,建议你在使用 `--privileged` 参数时要格外小心,以免给容器带来安全风险。
Error response from daemon: OCI runtime create failed: container_linux.go:348
引用中的报错信息是"Docker: Error response from daemon: OCI runtime create failed: container_linux.go:318: starting container process caused "chdir to cwd ("/tmp/project") set in config.json failed: no such file or directory": unknown. time="2023-05-10T15:37:43 08:00" level=error msg="error waiting for container: context canceled"。"
这个报错可能是由于容器在创建过程中失败导致的。报错中提到的container_linux.go文件以及相关的错误信息表明可能是容器的配置文件或路径设置有问题。
解决这个问题的方法可以参考引用和提供的信息。可以尝试以下步骤来解决该错误:
1. 检查容器的配置文件(config.json)中的路径设置是否正确,特别是/tmp/project是否存在。确保路径设置正确。
2. 检查系统内核和显卡驱动是否有更新。如果有更新,可能导致版本不一致并删除了某些依赖文件。可以尝试更新系统和显卡驱动。
3. 根据操作系统类型,执行相应的命令来安装nvidia-container-toolkit并重新启动Docker服务。对于Ubuntu系统,可以使用以下命令:
```
sudo apt-get update && sudo apt install nvidia-container-toolkit
sudo systemctl restart docker
```
对于Centos系统,可以使用以下命令:
```
distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.repo | sudo tee /etc/yum.repos.d/nvidia-docker.repo
yum update
yum install -y nvidia-container-toolkit
sudo systemctl restart docker
```
4. 如果需要在容器中共享宿主机的显卡,可以使用以下命令创建容器:
```
sudo docker run -it --gpus all --shm-size 20g nvidia/cuda:11.4.0-cudnn8-devel-ubuntu18.04 /bin/bash
```
通过执行上述步骤,您应该能够解决报错"Error response from daemon: OCI runtime create failed: container_linux.go:348"。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [docker: Error response from daemon: OCI runtime create failed: container_linux.go:318 no such file](https://blog.csdn.net/thlzjfefe/article/details/130605453)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *2* [解决docker报错Error response from daemon oci runtime error_centos安装docker](https://download.csdn.net/download/lj_70596/14038620)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *3* [docker: Error response from daemon: OCI runtime create failed: container_linux.go:367](https://blog.csdn.net/Darren_yy/article/details/131942758)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
[ .reference_list ]
阅读全文