摘要: Restic 一、简介 Restic是基于Go语言开发的开源备份工具,使用BSD-2-Clause开源协议。 它的核心理念是提供安全、快速、可验证的备份。其架构设计遵循了简单和高效的原则,主要由以下几个核心组件构成: 存储后端 Restic 支持多种存储后端,包括本地文件系统、SFTP、Amazon 阅读全文
posted @ 2024-08-22 20:30 GreeneGe 阅读(52) 评论(0) 推荐(0) 编辑
摘要: FROM mysql:8.0.28-debian RUN apt-get update \ && apt-get install -y wget openssh-server \ && wget https://downloads.percona.com/downloads/Percona-Xtra 阅读全文
posted @ 2023-11-14 00:15 GreeneGe 阅读(23) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash MYSQL_TAR_FILE="mysql-8.0.32-linux-glibc2.17-x86_64-minimal.tar.xz" MYSQL_DIR="mysql-8.0.32-linux-glibc2.17-x86_64-minimal" MYSQL_INSTALL_ 阅读全文
posted @ 2023-07-14 21:40 GreeneGe 阅读(379) 评论(0) 推荐(0) 编辑
摘要: Powershell无法执行脚本 Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser 阅读全文
posted @ 2023-01-11 22:34 GreeneGe 阅读(17) 评论(0) 推荐(0) 编辑
摘要: sudo dnf install mkfontdir curl -sLf https://spacevim.org/install.sh | bash neovim替代vim ln -s ~/.vim ~/.config/nvim ln -s ~/.vimrc ~/.config/nvim/init 阅读全文
posted @ 2023-01-11 20:20 GreeneGe 阅读(89) 评论(0) 推荐(0) 编辑
摘要: nginx.conf worker_processes 8; error_log logs/ info; events { worker_connections 2048; } http { include mime.types; default_type application/octet-str 阅读全文
posted @ 2023-01-11 20:19 GreeneGe 阅读(48) 评论(0) 推荐(0) 编辑
摘要: { // "editor.fontFamily": "Fira Code", // "editor.fontFamily": "Consolas", "editor.fontFamily": "Cascadia Code SemiLight", "editor.fontLigatures": tru 阅读全文
posted @ 2023-01-04 21:20 GreeneGe 阅读(19) 评论(0) 推荐(0) 编辑
摘要: mongodb docker run -d \ --name mongodb \ --restart always \ -e MONGO_INITDB_ROOT_USERNAME=mongoadmin \ -e MONGO_INITDB_ROOT_PASSWORD=123456 \ -p 27017 阅读全文
posted @ 2023-01-02 20:00 GreeneGe 阅读(31) 评论(0) 推荐(0) 编辑
摘要: executor 执行者 deprecated 荒废的 阅读全文
posted @ 2022-10-27 07:53 GreeneGe 阅读(28) 评论(0) 推荐(0) 编辑
摘要: harbor离线安装 安装环境及版本如下: 系统centos7.9 doker版本docker-ce-20.10.17 docker-compose版本v2.10.2 harbor版本v2.6.0 harbor数据路径/harbor-data 访问域名harbor.domain.com 预安装doc 阅读全文
posted @ 2022-09-04 12:41 GreeneGe 阅读(610) 评论(0) 推荐(0) 编辑

https://github.com/Glf9832