Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unix socket always be deleted after 3 hours when client disconnect #7084

Open
2 tasks done
Mars160 opened this issue Nov 21, 2024 · 2 comments
Open
2 tasks done

Unix socket always be deleted after 3 hours when client disconnect #7084

Mars160 opened this issue Nov 21, 2024 · 2 comments
Labels
bug Something isn't working triage This issue needs to be triaged by a maintainer

Comments

@Mars160
Copy link

Mars160 commented Nov 21, 2024

Is there an existing issue for this?

  • #7087

OS/Web Information

  • Web Browser: Safari
  • Local OS: iPadOS 17.1
  • Remote OS: Archlinux
  • Remote Architecture: amd64
  • code-server --version: 4.95.2

Steps to Reproduce

  1. run code-server with —socket and —socket-mode options behind nginx
  2. client to code-server, write something and disconnect
  3. wait for 3 hours
  4. the socket file is disappeared

logs below:


 [<unknown>][8ae2717b][ManagementConnection] The client has disconnected, will wait for reconnection 3h b>
11月 21 23:30:33 archlinux code-server[561098]: [23:30:33] [<unknown>][31fa6d6d][ExtensionHostConnection] <576182> Extension Host Process exited with code: 0, sign>
11月 21 23:30:36 archlinux code-server[561098]: [23:30:36] [<unknown>][4fe5bbb1][ExtensionHostConnection] <589581> Extension Host Process exited with code: 0, sign>
11月 21 23:30:36 archlinux code-server[561098]: [23:30:36] [<unknown>][4bad56e8][ExtensionHostConnection] <565453> Extension Host Process exited with code: 0, sign>
11月 21 23:30:42 archlinux code-server[561098]: [23:30:42] [<unknown>][550a7a3d][ExtensionHostConnection] <573629> Extension Host Process exited with code: 0, sign>
11月 21 23:31:09 archlinux code-server[561098]: [23:31:09] [<unknown>][8ae2717b][ManagementConnection] The reconnection grace time of 3h has expired, so the connec>

You will never reconnect to code-server because the socket file is delete.

Expected

Never delete the socket file unless code-server is stopped

Actual

It deleted!

Logs

Screenshot/Video

No response

Does this bug reproduce in native VS Code?

This cannot be tested in native VS Code

Does this bug reproduce in GitHub Codespaces?

I did not test GitHub Codespaces

Are you accessing code-server over a secure context?

  • I am using a secure context.

Notes

my nginx config:


server {
    include common/listen-8096;
    server_name my.super.server;
    # set max upload size
    client_max_body_size 32G;
    fastcgi_buffers 64 4K;

  
    location / {
        proxy_pass http://unix:/dev/shm/code-server.sock;
        
        add_header Access-Control-Allow-Origin *;
         add_header Access-Control-Allow-Methods *;
         add_header Access-Control-Allow-Headers *;
 
         # proxy_ssl_verify off;
         proxy_set_header Host $host;
         proxy_set_header Accept-Encoding gzip;
         #proxy_set_header X-Forwarded-Host $host;
         proxy_set_header X-Forwarded-Host $host:$server_port;
 
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection $http_connection;
         proxy_http_version 1.1;

        access_log /var/log/nginx/code.log;
        error_log /var/log/nginx/code.error.log;
    }  
}

And systemctl edit code-server.service:


### Anything between here and the comment below will become the contents of the drop-in file

[Service]
ExecStart=
ExecStart=/usr/bin/code-server /my/super/path
User=superuser
Group=superuser

### Edits below this comment will be discarded


### /usr/lib/systemd/system/[email protected]
# [Unit]
# Description=code-server
# After=network.target
# 
# [Service]
# Type=exec
# ExecStart=/usr/bin/code-server
# Restart=always
# User=%i
# 
# [Install]
# WantedBy=default.target

And the config.yaml

auth: password
password: mysuperpassword
cert: false
socket: /dev/shm/code-server.sock
socket-mode: 666
@Mars160 Mars160 added bug Something isn't working triage This issue needs to be triaged by a maintainer labels Nov 21, 2024
@code-asher
Copy link
Member

Are you sure the socket is deleted? That socket should be unrelated to the web socket in the console messages (the three hour one).

The timeout is one specified by VS Code, not us, but we could patch it if we really need to. From what I understand, it is really just meant to reconnect when there is a blip in the network. Reloading the page should result in a new connection, but is that not working either?

@Mars160
Copy link
Author

Mars160 commented Nov 23, 2024

record.mp4

@code-asher Thanks for your reply and I’m pretty sure the socket file is gone

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working triage This issue needs to be triaged by a maintainer
Projects
None yet
Development

No branches or pull requests

2 participants