摘要: Git配置 // 安装 sudo yum install git // 生成ssh ssh-keygen -t rsa -b 4096 -C "your_email@example.com" // 测试连接 ssh -T git@github.com eval "$(ssh-agent -s)" / 阅读全文
posted @ 2024-09-10 14:42 李思默 阅读(5) 评论(0) 推荐(0) 编辑
摘要: CentOS部署 sudo yum install -y yum-utils device-mapper-persistent-data lvm2 sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux 阅读全文
posted @ 2024-09-04 17:24 李思默 阅读(3) 评论(0) 推荐(0) 编辑
摘要: CentOS安装 rpm -Uhh https://mirrors.aliyun.com/postgresql/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm sed -i "s@https://download.p 阅读全文
posted @ 2024-09-04 15:49 李思默 阅读(4) 评论(0) 推荐(0) 编辑
摘要: rust程序在服务器上能打包成功,但在Dockerfile运行时始终报依赖错误,涉及版本太多即使手动改.lock文件效果也不理想,切换镜像无效果 > [4/4] RUN cargo install --path .: 0.426 Installing backend v0.1.0 (/backend 阅读全文
posted @ 2024-07-05 15:07 李思默 阅读(24) 评论(0) 推荐(0) 编辑