You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When trying to follow Testing in docker from the contribution guidelines, after running bitbake core-image-minimal-rubygems -c testimage bitbake can't establish a connection:
NOTE: Bitbake server didn't start within 5 seconds, waiting for 90
ERROR: Unable to start bitbake server (None)
ERROR: Server log for this session (/opt/build/build-ruby/bitbake-cookerdaemon.log):
47 14:06:28.923106 --- Starting bitbake server pid 47 at 2023-05-01 14:06:28.923057 ---
Traceback (most recent call last):
File "/opt/build/layer/poky/bitbake/bin/bitbake-server", line 53, in <module>
bb.server.process.execServer(lockfd, readypipeinfd, lockname, sockname, timeout, xmlrpcinterface)
File "/opt/build/layer/poky/bitbake/lib/bb/server/process.py", line 538, in execServer
sock.bind(os.path.basename(sockname))
PermissionError: [Errno 1] Operation not permitted
Note that I am mounting my project directory via sshfs, and I have found that people experience this issue when their path exceeded the character limit on socket paths and the way Docker constructs it's paths. So I have shortened the path to about 20 characters, which should fall under the character limit after Docker constructs the paths. Currently my project directory is mounted under /home/horn/f (so the paths I enter when running the docker container are /home/horn/f/build/tmp and /home/horn/f/sources). However I am still experiencing the same issue.
The text was updated successfully, but these errors were encountered:
@priv-kweihmann Thanks for getting back to me - unfortunately neither the container I just tried from crops/yocto (same error) or using --privileged --user=yoctouser work, so it seems there is some problem on my end.
Describe the bug
When trying to follow
Testing in docker
from the contribution guidelines, after runningbitbake core-image-minimal-rubygems -c testimage
bitbake can't establish a connection:Note that I am mounting my project directory via sshfs, and I have found that people experience this issue when their path exceeded the character limit on socket paths and the way Docker constructs it's paths. So I have shortened the path to about 20 characters, which should fall under the character limit after Docker constructs the paths. Currently my project directory is mounted under
/home/horn/f
(so the paths I enter when running the docker container are/home/horn/f/build/tmp
and/home/horn/f/sources
). However I am still experiencing the same issue.The text was updated successfully, but these errors were encountered: