gpt4 book ai didi

azure - Office 365 与 Windows Azure 的迁移实践

转载 作者:行者123 更新时间:2023-12-03 03:17:43 26 4
gpt4 key购买 nike

我被要求“帮助”客户将其本地 AD/Exchange 2010 实现迁移到云 (Office 365)。

我不知道从哪里开始,虽然我通过 technet 观看了很多有关该主题的视频,但我觉得我需要一些实践经验。

因此,我想知道是否有人知道如何在 Windows azure 上设置模拟环境(设置具有多个用户的新 AD 服务器)然后将该环境迁移到 Office 365 的分步指南?

最佳答案

我当然建议在 Azure IaaS 上设置一个实验室环境,以便您可以完成整个过程。

这是我使用的基本流程...

  • 通过门户设置新的虚拟网络
  • 创建关联小组以确保资源位于同一地点
  • 创建一个存储帐户来托管您的 VHD
  • 创建 PowerShell 脚本来设置 AD 虚拟机
  • 在 AD 虚拟机上安装 AD DS 并配置您的域
  • 为其他加入域的虚拟机创建 PowerShell 脚本
  • 如果您需要联合身份验证,请创建 AD FS 虚拟机
  • 创建虚拟机来托管 DirSync
  • 在 Office 365 中配置目录同步
  • 从 Office 365 门户在 DirSync 虚拟机上安装 DirSync
  • 创建虚拟机作为测试客户端或配置点到站点虚拟机并将现有计算机添加到您的实验室域

这是创建 AD VM 的示例脚本...

Import-Module "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\Azure\Azure.psd1"
Import-AzurePublishSettingsFile 'C:\Lab\credentials.publishsettings'
Set-AzureSubscription -SubscriptionName '{your Azure subscription}' -CurrentStorageAccount {your storage account name}
Select-AzureSubscription -SubscriptionName '{your Azure subscription}'

#Deploy the Domain Controller in a virtual network
#-------------------------------------------------


#Specify my DC's DNS IP (127.0.0.1)
$myDNS = New-AzureDNS -Name 'LabDNS' -IPAddress '127.0.0.1'
$vmname = 'LabDC'

# OS Image to Use

# Get the latest Windows Server 2008 R2 SP1 image
$family = "*Windows Server 2008 R2 SP1*"

$images = Get-AzureVMImage `
| where { $_.ImageFamily -like $family } `
| Sort-Object -Descending -Property PublishedDate

$image = $images[0].ImageName

Write-Host "Using image: " + $image

Read-Host "Continue or Ctrl-C to cancel"

$service = 'LabDomain'
$AG = 'LabAffinityGroup'
$vnet = 'LabNetwork'
$user = "LabAdmin"
$password = 'LabPassword123'
$subnet = 'Subnet-1'

#VM Configuration
$MyDC = New-AzureVMConfig -name $vmname -InstanceSize 'Small' -ImageName $image |
Add-AzureProvisioningConfig -Windows -AdminUsername $user -Password $password |
Set-AzureSubnet -SubnetNames $subnet

New-AzureVM -ServiceName $service -AffinityGroup $AG -VMs $MyDC -DnsSettings $myDNS -VNetName $vnet

关于azure - Office 365 与 Windows Azure 的迁移实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21109818/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com