写点什么

关于 tiup 在线源切换处理

  • 2024-12-13
    北京
  • 本文字数:640 字

    阅读完需:约 2 分钟

作者: WalterWj 原文来源:https://tidb.net/blog/83533db7

背景

在线安装的时候,tiup 访问的是在线源,当在线源无法访问的时候,tiup 是无法使用的。(tidb 集群本身不受影响)。


例如报错:


> tiup cluster listError: read manifest from mirror(https://tiup-mirrors.pingcap.com) failed: manifest index.json has expired at: 2024-12-06T16:57:58+08:00
复制代码

操作

注意:


  1. 以下操作都需要进入 tiup 管理用户和节点操作

  2. 注意版本替换,当前是 7.1.5 版本


如果有问题参考官网:https://docs.pingcap.com/zh/tidb/stable/production-deployment-using-tiup#%E9%83%A8%E7%BD%B2%E7%A6%BB%E7%BA%BF%E7%8E%AF%E5%A2%83-tiup-%E7%BB%84%E4%BB%B6


注意调整左上角版本。

下载 & 解压离线源

wget https://download.pingcap.org/tidb-community-server-v7.1.5-linux-amd64.tar.gzwget https://download.pingcap.org/tidb-community-toolkit-v7.1.5-linux-amd64.tar.gz
tar xf tidb-community-server-v7.1.5-linux-amd64.tar.gztar xf tidb-community-toolkit-v7.1.5-linux-amd64.tar.gz
复制代码

合并 server 和 tools 离线源

cd tidb-community-server-v7.1.5-linux-amd64/cp -rp keys ~/.tiup/tiup mirror merge ../tidb-community-toolkit-v7.1.5-linux-amd64cd ..
复制代码

设置 mirror 为本地离线源

tiup mirror set tidb-community-server-v7.1.5-linux-amd64
复制代码

恢复为在线源

如果需要切换到在线环境,可执行 tiup mirror set https://tiup-mirrors.pingcap.com


在线源,可以实时更新 tiup 自身版本,推荐使用。


发布于: 刚刚阅读数: 4
用户头像

TiDB 社区官网:https://tidb.net/ 2021-12-15 加入

TiDB 社区干货传送门是由 TiDB 社区中布道师组委会自发组织的 TiDB 社区优质内容对外宣布的栏目,旨在加深 TiDBer 之间的交流和学习。一起构建有爱、互助、共创共建的 TiDB 社区 https://tidb.net/

评论

发布
暂无评论
关于 tiup 在线源切换处理_集群管理_TiDB 社区干货传送门_InfoQ写作社区