码迷,mamicode.com
首页 > 其他好文 > 详细

restic 备份至阿里云oss

时间:2021-01-19 11:54:37      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rgba   conf   string   oss   ring   virtual   div   pen   turn   

初始化repo: restic -o s3.bucket-lookup=dns -o s3.region=oss-cn-beijing -r s3:https://xxx(bucket_name).oss-cn-beijing.aliyuncs.com init

   -o s3.bucket-lookup=dns: 通过Virtual path host连接(阿里云限制)

   -o s3.region=oss-cn-beijing: bucket所在区域

   -r s3:https://xxx(bucket_name).oss-cn-beijing.aliyuncs.com: Bucket域名

备份: restic -r s3:https://xxx(bucket_name).oss-cn-beijing.aliyuncs.com --verbose backup c:\temp(需要备份的目录或文件)

 --verbose: 显示详细信息

需要修改代码, Go语言不太熟悉, 改的合不合理不太清楚.

文件: internal/backend/s3/config.go

修改前(57~62行):

		if url.Path == "" {
			return nil, errors.New("s3: bucket name not found")
		}

		path := strings.SplitN(url.Path[1:], "/", 2)
		return createConfig(url.Host, path, url.Scheme == "http")

修改后:

      var path []string
      if url.Path == "" {
         temps := strings.SplitN(url.Host, ".", 2)
         path = append(path, temps[0])
         url.Host = temps[1]
      } else {
         path = strings.SplitN(url.Path[1:], "/", 2)
      }

  

restic 备份至阿里云oss

标签:rgba   conf   string   oss   ring   virtual   div   pen   turn   

原文地址:https://www.cnblogs.com/hfpiao/p/14291462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!