Dashboard.sh /no space left on device: unknown

hi Storj team,
since update I have this message from the dashboard:

failed to create runc console socket: mkdir /tmp/pty844183882: no space left on device: unknown

there is space I see with df -h.

node is still running have no errors in my log._
but like to see the dashboard back.
thanks.

You might be running out of space on your system disk, not your data disk. Docker can take up a lot of space after a while. You can try running docker system prune to clean up unused stuff.

i clean up all old containers with:
docker system prune --all --force --volumes

but still no space on /tmp/pty425872207
"-------
docker exec -it storagenode /app/dashboard.sh
failed to create runc console socket: mkdir /tmp/pty425872207: no space left on device: unknown
"----------
also cleaned the tmpfs.
still no dashboard.

do you have another idea? thanks
I try to get info at docker also …

I’m not sure at the moment whether that is trying to create the socket inside the docker container or outside, but could you paste the output of sudo sh -c 'cat /proc/mounts; df' | grep '/dev\b' ? That may reveal some clue in the volume mounting and usage details.

udev /dev devtmpfs rw,nosuid,relatime,size=32905504k,nr_inodes=8226376,mode=755 0 0
devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
/dev/sda1 / ext3 rw,noatime,nobarrier,data=ordered 0 0
/dev/vg00/usr /usr ext4 rw,noatime,errors=remount-ro,data=ordered 0 0
tmpfs /dev/shm tmpfs rw,nosuid,nodev 0 0
mqueue /dev/mqueue mqueue rw,relatime 0 0
hugetlbfs /dev/hugepages hugetlbfs rw,relatime,pagesize=2M 0 0
/dev/mapper/vg00-home /home ext4 rw,noatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/vg00-var /var ext4 rw,noatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/hdd-data /data ext4 rw,noatime,errors=remount-ro,data=ordered 0 0
udev 32905504 0 32905504 0% /dev
/dev/sda1 4030144 4030144 0 100% /
/dev/vg00/usr 30832636 3243624 26251448 11% /usr
tmpfs 32936752 0 32936752 0% /dev/shm
/dev/mapper/vg00-home 159848108 123989128 29278668 81% /home
/dev/mapper/vg00-var 30832636 1693240 27801832 6% /var
/dev/mapper/hdd-data 3843488912 127007216 3560231524 4% /data

What is your docker run command?

docker run -d --restart unless-stopped -p 28967:28967 -e WALLET="" -e EMAIL="" -e ADDRESS="" -e BANDWIDTH="" -e STORAGE="" --mount type=bind,source="/home/user/.local/share/storj/identity/storagenode",destination=/app/identity --mount type=bind,source="/data/user/storj",destination=/app/config --name storagenode storjlabs/storagenode:beta

Your root doesn’t have any space remained. You should either extend it or remove something from the root.

1 Like