首页 > 系统服务 > 详细

standard_init_linux.go:207: exec user process caused "no such file or directory"

时间:2019-08-11 23:00:13      阅读:744      评论:0      收藏:0      [点我收藏+]

运行docker容器异常中止,使用docker logs CONTAINER_ID查看异常信息如下:standard_init_linux.go:207: exec user process caused "no such file or directory" 

这是dos字符与unix字符的问题,我使用的windows 环境里 visual studio 编写的 shell 脚本 默认是以DOS文本格式来创建的,所以才导致这样的问题。

解决方法:

使用 Notepad++.执行一个批量的替换 :

  1. Menu: Search -> Find in Files...
  2. Directory = the directory you want to be converted to Unix format, recursively. E.g., C:\MyDir
  3. Find what = \r\n
  4. Replace with = \n
  5. Search Mode = Extended
  6. Press "Replace in Files"

standard_init_linux.go:207: exec user process caused "no such file or directory"

原文:https://www.cnblogs.com/shanyou/p/11336501.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!