简体   繁体   English

远程服务器返回错误:(403) Forbidden。 在 C:\\Program Files\\WindowsPowerShell\\Modules\\CosmosDB\\3.1.0.293\\CosmosDB.psm1

[英]The remote server returned an error: (403) Forbidden. At C:\Program Files\WindowsPowerShell\Modules\CosmosDB\3.1.0.293\CosmosDB.psm1

I developed the PowerShell script for creating Database and Collection in the Azure Cosmos DB.我开发了 PowerShell 脚本,用于在 Azure Cosmos DB 中创建数据库和集合。

 #region Parameters

$connectionString='XXXXXXXXXXXXXXXXX=='
$accountName='demo-account-01'
$databaseName='demo-db-01'
$collectionName='demo-collection-01'

#endregion

#region Login into Azure using Interactive Mode

# sign in
Write-Host "Logging in...";

Connect-AzAccount 

#Set the current azure subscription
Select-AzSubscription  -subscription 'Visual Studio Ultimate with MSDN'

#endregion

#region Create Collection and insert some data into it

$key = Get-CosmosDbAccountMasterKey -Name $accountName -ResourceGroupName 'Demo'
$cosmosDbContext = New-CosmosDbContext -Account $accountName -Key $key
New-CosmosDbDatabase -Context $cosmosDbContext -Id $databaseName
#New-CosmosDbCollection -Context $cosmosDbContext -Id $collectionName -PartitionKey 'account' -OfferThroughput 50000 -Database $databaseName
New-CosmosDbCollection -Context $cosmosDbContext -Id $collectionName -OfferThroughput 2500 -Database $databaseName


#endregion

But when run the above script I am getting the error like shown in below:但是当运行上面的脚本时,我收到如下所示的错误:

Invoke-WebRequest : The remote server returned an error: (403) Forbidden. Invoke-WebRequest:远程服务器返回错误:(403) Forbidden。 At C:\\Program Files\\WindowsPowerShell\\Modules\\CosmosDB\\3.1.0.293\\CosmosDB.psm1:5275 char:30 + ... $requestResult = Invoke-WebRequest @invokeWebRequestParameters + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-WebRequest], WebException + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand在 C:\\Program Files\\WindowsPowerShell\\Modules\\CosmosDB\\3.1.0.293\\CosmosDB.psm1:5275 char:30 + ... $requestResult = Invoke-WebRequest @invokeWebRequestParameters + ~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke- WebRequest], WebException +fullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand

So, can anyone suggest me how to resolve the issue?那么,有人可以建议我如何解决这个问题吗?

您需要在Firewall and virtual networks添加您的 IP 地址,然后它才能工作。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 远程服务器返回错误:(400)错误的请求。 在C:\\ Program Files \\ WindowsPowerShell \\ Modules \\ CosmosDB \\ 3.1.0.293 \\ CosmosDB.psm1 - The remote server returned an error: (400) Bad Request. At C:\Program Files\WindowsPowerShell\Modules\CosmosDB\3.1.0.293\CosmosDB.psm1 Message="Creation of storage file share failed with: The remote server returned an error: (403) Forbidden. 检查存储帐户是否可访问 - Message="Creation of storage file share failed with: The remote server returned an error: (403) Forbidden. Check if the storage account is accessible New-AzureDeployment:远程服务器返回错误:(403)禁止 - New-AzureDeployment : The remote server returned an error: (403) Forbidden New-AzureStorageContainer:远程服务器返回错误:(403)Powershell中禁止 - New-AzureStorageContainer : The remote server returned an error: (403) Forbidden in powershell 远程服务器返回错误:(403)在container.CreateIfNotExistsAsync()方法上被禁止 - The remote server returned an error: (403) Forbidden on container.CreateIfNotExistsAsync() method Function 应用程序部署失败 - 远程服务器返回错误:(403) Forbidden - Function App Deployment Failed - The remote server returned an error: (403) Forbidden azcopy - 远程服务器返回 403 forbidden - azcopy - remote server returned 403 forbidden 一些导致 cosmosdb 失败的禁止错误 (403) - A number of forbidden errors (403) which causes failures in cosmosdb 条件访问 - “远程服务器返回错误:(403) Forbidden”,指定包含应用程序时 - Conditional Access - “The remote server returned an error: (403) Forbidden”, when specifying includedApplications 在 cosmosdb 模拟器中出现错误 403“数据库帐户 localhost 不存在” - Getting error 403 in cosmosdb emulator “Database Account localhost does not exist”
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM