2013-05-17 5 views
6

Windows Azure에 새 웹 역할을 배포하는 동안이 오류가 발생합니다. 지정된 가상 공간 내에 포함 된 새 또는 미리 정의 된 서브넷에 배포에 필요한 주소 공간을 할당 할 수 없습니다. 회로망. 해결책을 찾았지만 찾지 못했습니다. 아무도 아이디어가 있습니까?필요한 주소 공간을 할당 할 수 없습니다.

내 cscfg 파일은 다음과 같다 :

<?xml version="1.0" encoding="utf-8"?> 
<ServiceConfiguration serviceName="Application.Cloud" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="3" osVersion="*" schemaVersion="2013-03.2.0"> 
    <Role name="WebApplication" vmName="vm001"> 
    <Instances count="1" /> 
    <ConfigurationSettings> 
     ... 
    </ConfigurationSettings> 
    <Certificates> 
     <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteAccess.PasswordEncryption" thumbprint="..." thumbprintAlgorithm="sha1" /> 
    </Certificates> 
    </Role> 
    <Role name="Application.ServiceOpdrachten" vmName="vm002"> 
    <Instances count="1" /> 
    <ConfigurationSettings> 
     ... 
    </ConfigurationSettings> 
    <Certificates> 
     <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteAccess.PasswordEncryption" thumbprint=".." thumbprintAlgorithm="sha1" /> 
    </Certificates> 
    </Role> 
    <NetworkConfiguration> 
    <VirtualNetworkSite name="VirtualNetwork" /> 
    <!-- The virtual network name must match the name of the vvirtual network configured in your subscription. --> 
    <AddressAssignments> 
     <!-- You must map each role in your cloud service to a subnet or a collection of subnets which were defined in your network.--> 
     <InstanceAddress roleName="WebApplication"> 
     <Subnets> 
      <Subnet name="Subnet-1" /> 
     </Subnets> 
     </InstanceAddress> 
    </AddressAssignments> 
    </NetworkConfiguration> 
</ServiceConfiguration> 

을 내가 잘 배포 다른 인스턴스가 같은 cloudproject에서.

<?xml version="1.0" encoding="utf-8"?> 
<ServiceConfiguration serviceName="Ecare.Acasa.Cloud" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="3" osVersion="*" schemaVersion="2013-03.2.0"> 
    <Role name="WebApplication"> 
    <Instances count="1" /> 
    <ConfigurationSettings> 
     ... 
    </ConfigurationSettings> 
    <Certificates> 
     <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteAccess.PasswordEncryption" thumbprint="..." thumbprintAlgorithm="sha1" /> 
    </Certificates> 
    </Role> 
    <Role name="Ecare.Acasa.ServiceOpdrachten"> 
    <Instances count="1" /> 
    <ConfigurationSettings> 
     ... 
    </ConfigurationSettings> 
    <Certificates> 
     <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteAccess.PasswordEncryption" thumbprint="..." thumbprintAlgorithm="sha1" /> 
    </Certificates> 
    </Role> 
    <NetworkConfiguration> 
    <VirtualNetworkSite name="Ecare" /> 
    <!-- The virtual network name must match the name of the vvirtual network configured in your subscription. --> 
    <AddressAssignments> 
     <!-- You must map each role in your cloud service to a subnet or a collection of subnets which were defined in your network.--> 
     <InstanceAddress roleName="WebApplication"> 
     <Subnets> 
      <Subnet name="Subnet-1" /> 
     </Subnets> 
     </InstanceAddress> 
    </AddressAssignments> 
    </NetworkConfiguration> 
</ServiceConfiguration> 
+0

현상금을 열면 많은 도움이되지 않습니다. 가능한 한 배포에 대한 많은 정보를 제공하십시오. 예 : .csdef 파일 실수로 또는 의도적으로 가상 네트워크를 사용하고 있습니까? 같은 가상 네트워크에 가상 머신이 있습니까? 클라우드 서비스 배포에 가상 네트워크를 사용하는 경우 가상 네트워크가 정의 된 동일한 선호도 그룹 내에서 클라우드 서비스가 생성됩니까? – astaykov

+0

나는 그것을 편집했다. 우리는 가상 네트워크가 필요합니다. –

+0

가상 네트워크와 동일한 '선호도 그룹'에 배포하려는 '클라우드 서비스'가 있습니까? 장애가있는 클라우드 서비스 패키지를 배포하려고 시도 할 때 가상 네트워크에 충분한 IP 주소가 있습니까? – astaykov

답변

3

우리는 3 개월 전쯤에도 같은 문제가있었습니다. 그런 다음 몇 가지 업데이트 후 새 IP 주소가 할당되지 않았거나 역할 또는 VM이 ​​삭제되었을 때 IP 주소를 재사용 할 수 없었습니다.

미리보기에서와 같이 Microsoft 지원에서 도움을받을 수 없습니다.

우리를 위해 일한 것은 : 전체 가상 네트워크를 삭제하고 다시 생성했습니다.

가능한 경우 작동하는지 확인하십시오.

+0

나는 이것을 동료와 함께 가져 가야한다. –

0

이 문제가 발생하여 문제가 해결되었음을 알았습니다. 문서 번호는 here입니다.

+0

안녕하세요, 사이트가 다운 된 것 같습니다. 그 고침이 뭔지 아세요? – bob

관련 문제