【问题标题】:Transfer Existing domain to Azure with billing通过计费将现有域转移到 Azure
【发布时间】:2019-07-22 12:40:26
【问题描述】:

我已经拥有一个非 Azure 域提供商(具体为 arvixe.com)的域。我想完全摆脱我当前的注册商并完全迁移到 Azure,包括我的域的托管和计费。我找不到办法做到这一点。周围的 powershell 脚本很少,但在我的情况下没有一个可以工作。

【问题讨论】:

  • 查看我的回答,不过如果您发布指向您尝试过的脚本的链接并指出它们不工作的方式,我可能会提供更具体的内容。跨度>

标签: azure azure-web-app-service


【解决方案1】:

请注意,域名转移可能会在注册后 60 天内受到限制,并且您必须确保该域名不是 locked at the original registrar

在 2018 年 3 月 15 日的 this MSDN post 中,一位 Microsoft 版主指出,只有 .com.org@ 支持转移987654325@ 顶级域名。

查看 Omar JG/SadiqhAhmed-MSFT 的答案:

范围:仅支持 .com、org、.net 的域转移

现在可以使用 PowerShell 将在 Azure 之外购买的域转移到 Azure。这是 PowerShell 脚本:

$ResourceName = "<domain>" #user's domain (constoso.com)
$PropertiesObject = @{
    'Consent' = @{
        'AgreementKeys' = @("DNPA","DNTA");
        'AgreedBy' = '<ip_address>'; #user's IP address (192.168.1.1)
        'AgreedAt' = '<time>'; #roughly the current time (2017-13-05T12:25:30.6850404Z)
    };
    'authCode' = '<auth_code>'; #code obtained from their current provider in order to transfer out the domain
    'Privacy' = 'true';
    'autoRenew' = 'true';
}

我最近没有发现任何迹象表明这方面的范围已经扩大。

【讨论】:

  • 感谢 Trevor 的回复,但是当我尝试从 powershell(本地和云 shell)执行脚本时出现 500 错误。除了 500 错误,消息中没有任何真实信息。事实上,这是我得到的典型 asp.net web.config 问题页面。
  • @Vinit Yadav — 您的域是否在受支持的顶级域之一中。除了 .com、.org 和 .net,Arvixe 还提供许多 TLD。我只是因为这篇文章的原始版本中的“xyz”而问。
  • 是的,我的域是 .com 域。
猜你喜欢
  • 2023-02-11
  • 1970-01-01
  • 2023-01-06
  • 1970-01-01
  • 1970-01-01
  • 2020-12-21
  • 1970-01-01
  • 2013-09-14
  • 2017-10-15
相关资源
最近更新 更多