美文网首页
前端搭建监控系统sentry私服

前端搭建监控系统sentry私服

作者: zhumu3 | 来源:发表于2022-03-22 16:29 被阅读0次

    跟着参考链接教程来的:Docker + Sentry 搭建前端监控系统

    可是教程太简单,里面出现的很多一些情况没有说明,在此记录

    1.首先呢,一定要在服务器上clone sentry的代码,不能在windows系统clone代码之后再传到服务器上,会出编码问题

    2.中间还遇到过服务器的docker版本过低问题、服务器没有docker-compse之类的

    3.执行install.sh脚本的时候报

    Unable to find image 'busybox:latest' locally
    

    这时候就需要安装busybox的最新版镜像,安装镜像又出现

    error response from daemon: toomanyrequests
    这个问题是要切换docker镜像源,怎么切换呢,参考这篇文章:
    切换docker镜像源

    记得一定要重启docker!!!

    4.接下来拉下来busybox

    docker pull busybox:latest
    

    5.接下来继续执行install.sh,发现报这个错

    fatal: unable to access 'https://github.com/getsentry/onpremise.git/': Encountered end of file
    Seems like you are not using the latest commit from the self-hosted repository. Please pull the latest changes and try again, or suppress this check with --skip-commit-check.
    

    那我猜测是无法连接git,这时候在服务器上生成ssh密钥,然后配置到github账户上,再进行install.sh

    6.成功了,开始下载了


    fc1b33c676202d66ec881c284c1cd82.png

    相关文章

      网友评论

          本文标题:前端搭建监控系统sentry私服

          本文链接:https://www.haomeiwen.com/subject/fnbfjrtx.html