-1

我已经关注了这篇文章,除了我不需要的共享配置之外,我没有错过任何步骤。就像文章说的那样,我创建了一个具有相同名称和密码的本地用户。在“测试设置”选项上,“身份验证”通过(忽略了提到的“授权”错误)

我可以在虚拟目录的内容视图中看到天蓝色文件。但是当我浏览时,它说

HTTP Error 500.19 
"The requested page cannot be accessed because the related configuration data for the page is invalid."
Config Error       Cannot read configuration file

它实际上是在 UNC 路径中寻找配置文件\\staticcontent.file.core.windows.net\repo

4

1 回答 1

0

这是我遵循的步骤。如果您有任何问题,请通过 microsofyt dot com 的 renash 与我联系。

http://fabriccontroller.net/deploying-a-load-balanced-high-available-ftp-server-with-azure-files/

步骤 1 在经典部署模型中为 Windows 虚拟机配置可用性集 https://docs.microsoft.com/en-us/azure/virtual-machines/windows/classic/configure-availability

第2步

$vm1name =  'cltkdemovm1'
$vm2name =  'cltkdemovm2'
$servicename= 'cltkdemodomain'
Login-AzureRmAccount
Select-AzureSubscription -SubscriptionName "Windows Azure Internal Consumption"
$vm = Get-AzureVM -Name $vm1name -ServiceName $servicename
.\Add-AzureFtpEndpoints.ps1 $vm 21 10000 10050
$vm = Get-AzureVM -Name $vm2name  -ServiceName $servicename
.\Add-AzureFtpEndpoints.ps1 $vm 21 20000 20050

步骤 3 在 vm1 上:

Install-FTP.bat cltkdemoftp <storageaccountname> <storageaccountkey>  <sharename> 21 10000 10050 <VMIPAddress>

例子:

Install-FTP.bat cltkdemoftp cltkdemosa  <storage account key>==  ftp 21 10000 10050 40.76.29.172

在 vm2 上:

Install-FTP.bat ctdemoftp cltkdemosa <storage account key>==  ftp 21 20000 20050 <VMIPAddress>

例子:

Install-FTP.bat cltkdemoftp cltkdemosa  <storage account key>==  ftp 21 20000 20050 40.76.29.172

Step4 将 sa 添加到 IISUser Group 将 sa 添加到 Application Pool ->Poolname->advancedsetting->identiy

在VM2上添加sa到IIS用户组添加sa到应用程序池->池名->高级设置->身份

于 2018-04-09T20:38:34.717 回答