coder-server服务器部署问题(500错误)

服务器:阿里云
版本:Ubuntu 18.04 64位
时间:2020年04月07日
code-server版本:3.0.2


image.png
项目搭建完后,访问地址,遇到上述情况,以下是解决过程

解决过程

首先在终端中输入./coder-server --help可以看到code-server支持的命令

Options
      --auth                The type of authentication to use. [password, none]
      --cert                Path to certificate. Generated if no path is provided.
      --cert-key            Path to certificate key when using non-generated cert.
      --disable-updates     Disable automatic updates.
      --disable-telemetry   Disable telemetry.
      --host                Host for the HTTP server.
   -h --help                Show this output.
      --open                Open in browser on startup. Does not work remotely.
      --port                Port for the HTTP server.
      --socket              Path to a socket (host and port will be ignored).
   -v --version             Display version information.
      --disable-ssh         Disable the SSH server.
      --ssh-host-key        SSH server host key.
      --user-data-dir       Path to the user data directory.
      --extensions-dir      Path to the extensions directory.
      --list-extensions     List installed VS Code extensions.
      --force               Avoid prompts when installing VS Code extensions.
      --install-extension   Install or update a VS Code extension by id or vsix.
      --uninstall-extension Uninstall a VS Code extension by id.
      --show-versions       Show VS Code extension versions.
 -vvv --verbose             Enable verbose logging.

看到最后一行--verbose Enable verbose logging.
可以通过--verbose来查看日志,在启动的时候添加这个参数,访问,然后就可以看到以下输出

debug URIError: URI malformed
    at decodeURI ()
    at /var/local/vscode/code-server/out/node/http.js:297:35
    at Array.forEach ()
    at VscodeHttpProvider.HttpProvider.parseCookies (/var/local/vscode/code-server/out/node/http.js:292:47)
    at VscodeHttpProvider.HttpProvider.authenticated (/var/local/vscode/code-server/out/node/http.js:239:36)
    at VscodeHttpProvider. (/var/local/vscode/code-server/out/node/app/vscode.js:208:40)
    at step (/var/local/vscode/code-server/out/node/app/vscode.js:46:23)
    at Object.next (/var/local/vscode/code-server/out/node/app/vscode.js:27:53)
    at /var/local/vscode/code-server/out/node/app/vscode.js:21:71
    at new Promise ()

初步查看是decodeURI方法报错了
看到第三行:at /var/local/vscode/code-server/out/node/http.js:297:35
定位到文件里

HttpProvider.prototype.parseCookies = function (request) {
    var cookies = {};
    if (request.headers.cookie) {
        request.headers.cookie.split(";").forEach(function (keyValue) {
            var _a = util_1.split(keyValue, "="), key = _a[0], value = _a[1];
            if (!cookies[key]) {
                cookies[key] = [];
            }cookies
            [key].push(decodeURI(value));
        });
    }
    return cookies;
};

报错是decodeURI(value)报错导致的,
搜索decodeURI报错原因
看到有说:由于decodeURI转码时,通过%进行解析,如果字符串中存在%(如: ‘0.9%氯化钠注射液’),则会出现URI malformed
而value的值是从cookie中获取的
查看cookie,发现有好几个值是带有%号的
全部清除后,刷新页面
成功访问


原因

阿里云服务器是有镜像市场的,之前在服务器上装了个宝塔的镜像系统,他应该是在cookie写进了一些信息,带有%号的cookie,导致上述结果。换系统,使用docker,都无法解决,因为换系统浏览器上cookie也还是一直存在,所以还是无法正常访问的


曲折过程

  1. 重装系统:怀疑是系统问题,换成阿里云自带的ubuntu 14、ubuntu 16,ubuntu 18, centos,还是镜像市场里的系统,重装系统好几次均无效果
  2. 使用docker:一样的报错
  3. 不使用密码登录:添加指令--auth none可以正常访问,但是这样谁都可以访问你的服务,这样是不安全的,想到一个方法:就是在添加的安全组仅添加我自己本地的ip,这样就可以保证我自己的网络可以访问。但是这样的话,要是换个网络,那就又得新添加安全组,极其不方便。
  4. ip访问,输入的地址太繁琐,改用域名访问:nginx配置proxy_pass http://localhost:8081/,这样直接访问域名,就可以访问到项目了,但是后来才发现这样谁都可以直接通过域名访问项目,之前设置的安全组是对现在这个做法无效的。
  5. 域名访问的时候,添加密码验证。配置后发现无法正常访问

总结

解决问题,要学会从源头上解决,刚开始不知道怎么看日志,无法定位到问题出现的源头,后来定位到源头后,立马就解决了,虽然解决这个的过程比较曲折,但是不断重装系统,对服务器的了解更近了一步,也不算白费力气。

你可能感兴趣的:(ide,服务器,阿里云ecs)