- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
出于部署目的,我创建了一个 PowerShell 脚本来设置应用设置。这通过
工作正常$currentAppSettings = $app.SiteConfig.AppSettings
$appSettings = @{}
# Add existing App Settings
ForEach ($currentAppSetting in $currentAppSettings) {
$appSettings[$currentAppSetting.Name] = $currentAppSetting.Value
}
# Add new App Settings
$appSettings["someKey"] = "someValue"
# Update App Settings
Set-AzWebApp -ResourceGroupName $resourceGroupName -Name $appName -AppSettings $appSettings
因为我现在使用 Entity Framework ,所以我还需要设置连接字符串。首先,我认为这应该像应用程序设置一样工作,只需添加 ConnectionStrings 参数:
$currentConnectionStrings = $app.SiteConfig.ConnectionStrings
$connectionStrings = @{}
ForEach ($currentConnectionString in $currentConnectionStrings) {
$connectionStrings[$currentConnectionString.Name] = $currentConnectionString.ConnectionString
}
$connectionStrings["someKey"] = "someValue"
Set-AzWebApp -ResourceGroupName $resourceGroupName -Name $appName -ConnectionStrings $connectionStrings
但这失败并出现错误
Set-AzWebApp : Cannot validate argument on parameter 'ConnectionStrings'. Connection string type value pair must be of type 'System.Collections.Hashtable'
尽管 $connectionStrings
的类型是 System.Collections.Hashtable
还尝试使用自定义对象、数组等失败。
如何正确传递连接字符串?以及如何指定类型(例如 SQLAZURE)?
谢谢
最佳答案
根据 Set-AzwebApp 的文档,ConnectionStrings
应该是 Hastable
。
Set-AzWebApp
[[-AppServicePlan] <String>]
[[-DefaultDocuments] <String[]>]
[[-NetFrameworkVersion] <String>]
[[-PhpVersion] <String>]
[[-RequestTracingEnabled] <Boolean>]
[[-HttpLoggingEnabled] <Boolean>]
[[-DetailedErrorLoggingEnabled] <Boolean>]
[[-AppSettings] <Hashtable>]
[[-ConnectionStrings] <Hashtable>]
[[-HandlerMappings] <System.Collections.Generic.IList`1[Microsoft.Azure.Management.WebSites.Models.HandlerMapping]>]
[[-ManagedPipelineMode] <String>]
[[-WebSocketsEnabled] <Boolean>]
[[-Use32BitWorkerProcess] <Boolean>]
[[-AutoSwapSlotName] <String>]
[-ContainerImageName <String>]
[-ContainerRegistryUrl <String>]
[-ContainerRegistryUser <String>]
[-ContainerRegistryPassword <SecureString>]
[-EnableContainerContinuousDeployment <Boolean>]
[-HostNames <String[]>]
[-NumberOfWorkers <Int32>]
[-AsJob]
[-AssignIdentity <Boolean>]
[-HttpsOnly <Boolean>]
[-AzureStoragePath <WebAppAzureStoragePath[]>]
[-ResourceGroupName] <String>
[-Name] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
您应该使用 Hashtable
设置 connectionstring
,如下所示:
$connectionStrings = @{connectionStrings = @{Name="<ConnectionStringName>";Value="<ConnectionSyring>";type="<SQLAzure/SQLServer/Custom/MySql>"}}
Set-AzWebApp -ResourceGroupName $resourceGroupName -Name $appName -ConnectionStrings $connectionStrings
关于entity-framework - Azure 函数和 PowerShell : unable to set connection strings with Set-AzWebApp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55487426/
我正在尝试通过 azure devops pipeline() 在 PowerShell 脚本下运行,以将新的专用终结点添加到我的 azure Vnet。不幸的是我遇到了以下错误。 错误:Get-Az
如何修改下面的命令以将订阅名称包含在 CSV 文件中资源组名称之后?我虽然缺少参数是“订阅”,但它返回空白值。谢谢! $Subscriptions = Get-AzSubscription f
我目前正在构建一个脚本来自动创建 Azure Web 应用程序。前端是用 React 构建的并且部署得很好。后端是使用node构建的,发布时不会运行。我认为默认情况下 New-AzWebApp 创建一
我目前正在构建一个脚本来自动创建 Azure Web 应用程序。前端是用 React 构建的并且部署得很好。后端是使用node构建的,发布时不会运行。我认为默认情况下 New-AzWebApp 创建一
我目前正在构建一个 powershell 脚本,该脚本在 azure 中创建 2 个 Web 应用程序服务,然后发布应用程序。第一个应用程序是一个 React 应用程序,已发布。使用 Node.js
如何执行 Azure Powershell 命令 New-AzWebApp 以选择 .NET Core 作为堆栈?我看不到任何可以提供帮助的参数和文档。 https://learn.microsoft
我尝试使用 Get-AzWebApp PowerShell 命令获取 azure 应用服务列表,然后读取每个服务的配置/连接字符串。如果每个应用程序服务的 web.config 将连接字符串存储在单独
这似乎是一个相当简单的任务,我还有许多其他例子,人们以类似的方式实现了它。但不知怎的,这对我不起作用。这是我的脚本。 $webapp = Get-AzWebApp -Name $webappname
出于部署目的,我创建了一个 PowerShell 脚本来设置应用设置。这通过工作正常 $currentAppSettings = $app.SiteConfig.AppSettings $appSet
我是一名优秀的程序员,十分优秀!