› Forums › Technical support › Remote working › ECDF and the Eddie compute cluster › Running jobs on Eddie › Tensorboard will not start
- This topic has 3 replies, 3 voices, and was last updated 1 month, 1 week ago by
Simon King.
-
AuthorPosts
-
-
January 10, 2026 at 15:11 #18962
I get lots of error messages about “pthread_create failed: Resource temporarily unavailable” when trying to run tensorboard on a login node.
-
January 10, 2026 at 15:26 #18966
This might be for the same reasons that prevent VS Code connecting – see this topic for things to try.
-
January 23, 2026 at 10:54 #19095
Hi there,
Unfortunately I am also having the same issue. When trying to debug it I put in:
ps -elf | grep s1234567(with my own student number)and receieved these outputs:
4 S root 1491756 1958 0 80 0 - 12006 - 10:39 ? 00:00:00 sshd: s2486167 [priv] 5 S s2486167 1491764 1491756 0 80 0 - 12006 - 10:39 ? 00:00:00 sshd: s2486167@pts/456 0 S s2486167 1491765 1491764 0 80 0 - 4598 do_wai 10:39 pts/456 00:00:00 -bash 0 R s2486167 1502223 1491765 0 80 0 - 7144 - 10:46 pts/456 00:00:00 ps -elf 0 S s2486167 1502224 1491765 0 80 0 - 1602 pipe_r 10:46 pts/456 00:00:00 grep --color=auto s2486167 4 S s2486167 2035918 1 0 80 0 - 5809 ep_pol Jan20 ? 00:06:11 /usr/lib/systemd/systemd --user 5 S s2486167 2035920 2035918 0 80 0 - 53497 - Jan20 ? 00:00:00 (sd-pam) 1 S s2486167 2045632 1 0 80 0 - 1484 do_pol Jan20 ? 00:00:00 tmux 0 S s2486167 2045633 2045632 0 80 0 - 4565 do_sel Jan20 pts/660 00:00:00 -bash 0 S s2486167 2104099 1 0 80 0 - 34047 futex_ Jan20 ? 00:00:00 /home/sXXXXXXX/.vscode-server/code-385651c938df8a906869babee516bffd0ddb9829 command-shell --cli-data-dir /home/s2486167/.vscode-server/cli --parent-process-id 2104074 --on-host=127.0.0.1 --on-portWhen killing the nodes that I don’t need, in which column would I find the processing number?
-
January 23, 2026 at 12:14 #19096
The names of the columns are shown in the first row of the output from
ps, butgrepis of course filtering them out. You need the value in thePID(process identity) column.Try this, to see just the first row:
ps -elf | head -1then this to find all your processes:
ps -elf | grep s1234567or, here’s a clever way to run both commands together
ps -elf | head -1 && ps -elf | grep s1234567
-
-
AuthorPosts
- You must be logged in to reply to this topic.
This is the new version. Still under construction.