迁移linode到google云平台

问题描述 投票:0回答:2

我目前有一个应用程序在 linode 的 ubuntu 服务器上运行。我想知道是否可以将设置和文件移动到谷歌云平台,而无需重新配置和安装所有内容。

migration google-cloud-platform google-compute-engine linode
2个回答
0
投票

您可以将带有 Cloudendure[1] 服务的虚拟机免费迁移到 Google Cloud Platform [2]。请记住,仅限于以下操作系统 [3]:

窗户:

  • Microsoft Windows Server 2008 R2 64 位
  • Microsoft Windows Server 2012 R2 64 位
  • Microsoft Windows Server 2016 64 位
  • 不支持 Windows 桌面操作系统。

Linux:

  • SUSE Linux (SLES) 11 或更高版本
  • Debian Linux 8
  • Kali Linux 2.0
  • Ubuntu 12.04 或以上版本
  • 红帽企业 Linux (RHEL) 5.0 或更高版本
  • CentOS 6.0或以上版本
  • Oracle Linux 6.0 或更高版本

[1] https://www.cloudendure.com/

[2] https://cloud.google.com/compute/docs/tutorials/migration-vms-compute-engine#costs

[3] https://cloud.google.com/compute/docs/tutorials/migration-vms-compute-engine#limitations


0
投票

如果您熟悉 cli,最好的选择是在 linode-cli 中创建映像或备份。确保您已安装

pip3
,然后运行
pip3 install linode-cli --upgrade

要创建要导出到谷歌云的图像,请运行

linode-cli images create \
  --label this_is_your_label \
  --description "My linode image-backup" \
  --disk_id 123

当提示进行 PAT 时,请遵循此指南。该映像会将您的所有文件和环境移出 linode。创建备份时关闭服务器的好习惯,这样就不会干扰某些在后台运行的应用程序。

© www.soinside.com 2019 - 2024. All rights reserved.