Replies: 3 comments
-
It seems this means you've hit a per-user process limit. You should be able to run |
Beta Was this translation helpful? Give feedback.
-
It doesn't look like that's the issue. ~# ulimit As you can see the server is fresh installed, not that many processes. ulimit is unlimited, vs-code-server is fresh install without using docker. |
Beta Was this translation helpful? Give feedback.
-
Hmm it might be that Here's the relevant section from the
That makes it seem like the only way to get an |
Beta Was this translation helpful? Give feedback.
-
500
VS Code failed to load.
Error: spawn /usr/lib/code-server/lib/node EAGAIN
Above error is shown on fresh install on Debian GNU/Linux 10 following guide for install and accesing via ssh forwarding
config.yaml
bind-addr: 127.0.0.1:5020
auth: none
cert: false
installed as root user no other user exist.
Ssh forward command
ssh -i kk -p5000 -N -L 5020:127.0.0.1:5020 root@serverIP
~# systemctl --user status code-server
● code-server.service - code-server
Loaded: loaded (/usr/lib/systemd/user/code-server.servic
e; enabled; vendor preset: enabled)
Active: active (running) since Sun 2020-06-28
17:59:48 UTC; 11min ago
Main PID: 106 (node)
Tasks: 22 (limit: 22)
Memory: 59.5M
CGroup: /user.slice/user-0.slice/[email protected]/code-ser
ver.service
├─106 /usr/lib/code-server/lib/node /usr/lib/cod
e-server
└─127 /usr/lib/code-server/lib/node /usr/lib/cod
e-server
Jun 28 17:59:48 lxcc802a3db systemd[100]: Starting code-ser
ver...
Jun 28 17:59:48 lxcc802a3db systemd[100]: Started code-serv
er.
Jun 28 17:59:49 lxcc802a3db code-server[106]: info Using c
onfig file ~/.config/code-server/config.yaml
Jun 28 17:59:49 lxcc802a3db code-server[106]: info Using u
ser-data-dir ~/.local/share/code-server
Jun 28 17:59:49 lxcc802a3db code-server[106]: info c
Jun 28 17:59:49 lxcc802a3db code-server[106]: info Using c
onfig file ~/.config/code-server/config.yaml
Jun 28 17:59:49 lxcc802a3db code-server[106]: info Using u
ser-data-dir ~/.local/share/code-server
Jun 28 17:59:49 lxcc802a3db code-server[106]: info code-se
rver 3.4.1 48f7c27
Jun 28 17:59:49 lxcc802a3db code-server[106]: info HTTP se
rver listening on http://127.0.0.1:5020
Jun 28 17:59:49 lxcc802a3db code-server[106]: info - No
authentication
Jun 28 17:59:49 lxcc802a3db code-server[106]: info - Not
serving HTTPS
Jun 28 18:00:18 lxcc802a3db code-server[106]: error spawn /
usr/lib/code-server/lib/node EAGAIN
Jun 28 18:01:51 lxcc802a3db code-server[106]: error spawn /
usr/lib/code-server/lib/node EAGAIN
Beta Was this translation helpful? Give feedback.
All reactions