VScode golang调试错误 __debug_bin: 权限被拒绝

huangapple go评论102阅读模式
英文:

VScode golang debug error __debug_bin: Permission Denied

问题

我正在使用一个包含SSH的容器https://hub.docker.com/r/redhat/ubi9-init作为Golang开发环境。当我需要调试一个单元测试时,我遇到了一个权限错误:

VScode golang调试错误 __debug_bin: 权限被拒绝
VScode golang调试错误 __debug_bin: 权限被拒绝

我进行了一些搜索,并找到了一些建议在.gitignore中添加*__debug_bin并检查Selinux权限。但是这个镜像中没有Selinux。容器中的/Home目录权限为776,我以root用户的身份登录SSH。还有什么其他尝试的方法吗?

英文:

I am using a container https://hub.docker.com/r/redhat/ubi9-init with SSH as a Golang development environment. When I have to debug a unit test I am receiving a permission error:

VScode golang调试错误 __debug_bin: 权限被拒绝
VScode golang调试错误 __debug_bin: 权限被拒绝

I've done some searches and found tips to add *__ debug_bin on .gitignore and check the Selinux permissions. Selinux is not present in this image. The /Home directory permissions in the container is 776 and I am logged in SSH as a root user. What else can I try?

答案1

得分: 3

我在这里遇到了相同的错误。我的问题是我无意中将main.go文件的包名从main更改为其他名称。

我不确定这是否适用于你的情况,但希望能有所帮助。

英文:

I was experiencing the same error here. My issue was that I inadvertently changed the package name of the main.go file from main to something else.

I'm not sure if it's your case, but hope it helps.

huangapple
  • 本文由 发表于 2022年11月2日 21:46:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/74290238.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定