2013-05-17 13 views
6

Windows Azureに新しいWebロールを展開するときに、このエラーが発生しました。 指定された仮想内に含まれる新規または事前定義されたサブネットに展開に必要なアドレススペースを割り当てることができませんネットワーク。 解決策を検索しましたが、解決策が見つかりませんでした。誰にでもアイデアはありますか?私は細かい配備別のインスタンスを持っている同じcloudprojectで必要なアドレススペースを割り当てることができません

<?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> 

マイcscfgファイルは次のようになります。

<?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

関連する問題