问题标签 [azure-runbook]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
577 浏览

azure - 用于 Docker 容器的 Azure Runbook

编写 azure runbook 以将 docker 映像推送到 acr。当我运行脚本时,我收到错误 docker 不被识别为内部或外部命令。

简化的运行手册如下。

当我在 nunbook 上运行时,我遇到了错误。

请有任何建议。

0 投票
2 回答
493 浏览

python - Azure 标记更新“NoneType”对象没有属性“更新”

嗨,我正在使用 python 和 runbook 更新 azure 中的资源标签。我能够更新大多数资源的标签,但有些资源给了我这个错误

“NoneType”对象没有属性“更新”

我正在使用线程中也提到的代码spinet

0 投票
1 回答
80 浏览

azure - 如果特定 vm 的 IP 在 Azure 中超时,如何编写用于更改 UDR 下一跳的运行手册

如果特定 VM 的 IP 超时,我想要一个用于更改 UDR 下一跳的运行手册,该怎么办?我是网络管理员,所以我不懂 C++ 或 powershell

0 投票
0 回答
353 浏览

powershell - 如何使用 PowerShell Runbook 从 Azure 查询 SQL Server(本地)?

我需要从我们的 Azure 自动化帐户对本地 SQL Server 2016 实例执行查询,以便根据数据库中的内容发送电子邮件。

客户端无法建立会话,这是网络问题。我想我可能错过了一个中间步骤,或者没有为 SQL Server 模块提供足够的信息来定位我们的本地服务器。

  1. 我正在使用sqlserver模块
  2. 我已检查为本地实例启用了 TCP/IP 设置
  3. 我打开了 SQL Server Browser(我认为这不是必需的)
  4. 我在我的本地 Powershell ISE 上测试了代码并且它有效
  5. 我尝试使用 Windows Auth 和 SQL Server auth

代码:

我收到此错误:

Invoke-Sqlcmd:建立与 SQL Server 的连接时发生与网络相关或特定于实例的错误。
服务器未找到或无法访问。验证实例名称是否正确以及 SQL Server 是否配置为允许远程连接。(提供者:命名管道提供者,错误:40 - 无法打开与 SQL Server 的连接)

在 line:30 char:5
+ Invoke-Sqlcmd -Query "select 1" -ServerInstance "servername"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Invoke-Sqlcmd] , SqlException
+ FullyQualifiedErrorId : SqlExceptionError,Microsoft.SqlServer.Management.PowerShell.GetScriptCommand

0 投票
1 回答
1467 浏览

webhooks - Trigger next step in data factory after Tabular model refresh is complete

I have setup an Azure automation account and Web hook to process my analysis services database. I am calling that using Web activity (POST method) in Azure Data Factory to trigger the cube refresh. Web activity method is working fine but it returns back without waiting for refresh to complete.

Now, I want to execute further steps only after the Cube processing is complete. Is there a way to detect when the cube is refreshed and then start the next step of activities in data factory?

0 投票
1 回答
496 浏览

azure - 如何在 Azure 中启用/禁用资源组中的功能应用

我正在编写一个将在runbook中运行的powershell脚本。此脚本将首先禁用资源组中的功能应用程序,然后另一个类似的脚本将启用资源组中的功能应用程序。

我已经尝试过下面的脚本,但它没有启用功能应用程序

0 投票
1 回答
49 浏览

automation - 需要帮助我处理 azure Runbooks 吗?

我想安排一个简单的任务来使用 Runbook 截断表。该数据库是 Azure SQL 数据库。

  • 我应该创建什么类型的运行手册。我应该如何编码?
  • 是否有任何资源可以了解有关 azure Runbook 的更多信息?
0 投票
1 回答
7929 浏览

powershell - 如何在带有 AutomationConnection 的 Powershell Runbook 中使用 Connect-AzAccount

我可以找到的所有对 Runbook 进行身份验证的示例都使用 AzureRM 模块:

但是,如果您使用的是新的 Az 模块,则此代码不起作用,并且您不能在同一个 Runbook 中混合使用 AzureRM 模块Az 模块。如何获得身份验证以使用新的 Az 模块。

0 投票
0 回答
69 浏览

powershell - 有没有办法从运行手册中找到天蓝色区域?

我有一个部署到多个天蓝色区域的运行手册。我需要知道它从运行手册本身执行的区域。目前,我在执行运行手册时将区域名称作为参数传递。但我想避免它。有没有办法从 PowerShell 代码本身中找到区域名称?

0 投票
1 回答
373 浏览

azure - 为什么使用 Get-AzureRMStorageAccount 时连接字符串为空?

我继承了在 Azure RunBook 中运行的 Powershell 脚本。在脚本中,我们需要读取一个 StorageQueue。我在连接到 StorageAccount 时遇到问题。

以下代码段在 New-AzureStorageContext 上失败,因为 $connectionString 为空。

我该如何解决这个问题,以便我拥有 ConnectionString 并可以连接到队列?