小编Day*_*opo的帖子

安装期间出错 - 数据库初始化失败

在安装 MySQLServer 的最后一步(应用配置)期间,我收到一个奇怪的错误。我听不懂。这是日志:

Attempting to add a Windows Firewall rule with command: netsh.exe advfirewall firewall add rule name="Port 3306" protocol=TCP localport=3306 dir=in action=allow
Ok.


Successfully added the Windows Firewall rule.
Ended configuration step: Updating Windows Firewall rules

Beginning configuration step: Adjusting Windows service
Attempting to grant Network Service require filesystem permissions.
Granted permissions.
Adding new service
New service added
Ended configuration step: Adjusting Windows service

Beginning configuration step: Initializing Database
Attempting to run MySQL Server with --initialize-insecure option...
Starting process …
Run Code Online (Sandbox Code Playgroud)

mysql server

5
推荐指数
1
解决办法
2万
查看次数

Terraform - 获取存储帐户的主要静态网站端点

我想部署一个 Azure 前门,其后端链接到存储帐户的静态网站。如果我使用 Azure Portal 没有问题,但我不知道如何检索主静态网站的端点?

此外,主端点就像https://saprodgamingfiles.z6.web.core.windows.net/我们想要的后端主机名一样saprodgamingfiles.z6.web.core.windows.net

如何自动创建与存储帐户的静态网站主要端点相关的前门后端?


合成

我想从 Azure Front Door Terraform 配置中自动执行以下host_header操作...address

backend {
     host_header = "saprodgamingfiles.z6.web.core.windows.net"
     address     = "saprodgamingfiles.z6.web.core.windows.net"
     http_port   = 80
     https_port  = 443
     priority    = 1
     weight      = 50
}
Run Code Online (Sandbox Code Playgroud)

...与使用存储帐户创建的静态网站相关:

resource "azurerm_storage_account" "saprodgamingfiles" {
    name                = var.sa_name1
    resource_group_name = azurerm_resource_group.rg-prod-gaming.name

    # etc...

    # THIS : Pre-requisite for Azure Front Door
    static_website {}
}
Run Code Online (Sandbox Code Playgroud)

我是 Terraform 和 Azure 的新手,但我进行了很多搜索,但找不到令人满意的解决方案来解决我的问题。我很惊讶它没有提高那么多,也许我只是错过了一些东西?

最好的

azure terraform azure-storage-account terraform-provider-azure azure-front-door

3
推荐指数
1
解决办法
1059
查看次数

方法调用失败,因为 X 不包含名为“op_Subtraction”的方法

我编写了一个脚本来分析我每天正在处理的广告。

\n\n

过去几个月它工作得很好,没有错误,但今天早上出现了一个错误,我不明白为什么。

\n\n

这是在执行期间:

\n\n
$adm_disabled = ((Get-ADUser -LDAPFilter "(admincount=1)" | Where {$_.enabled -ne $true}).count) - 2\nWrite-Host "ADMIN ACCOUNTS DISABLED : "$adm_disabled\n
Run Code Online (Sandbox Code Playgroud)\n\n

我收到以下错误(我以前从未遇到过,顺便说一句,它是法语的):

\n\n
$adm_disabled = ((Get-ADUser -LDAPFilter "(admincount=1)" | Where {$_.enabled -ne $true}).count) - 2\nWrite-Host "ADMIN ACCOUNTS DISABLED : "$adm_disabled\n
Run Code Online (Sandbox Code Playgroud)\n\n

已翻译

\n\n
\xc3\x89chec lors de l\xe2\x80\x99appel de la m\xc3\xa9thode, car [Microsoft.ActiveDirectory.Management.ADPropertyValueCollection] ne contient pas de m\xc3\xa9thode nomm\xc3\xa9e \xc2\xab\xc2\xa0op_Subtraction\xc2\xa0\xc2\xbb.\nAu caract\xc3\xa8re D:\\Users\\pmonties\\OneDrive - Professional\\Documents\\Scripts_PS_Test\\ANALYSE_AD.ps1:29 : 1\n+ $adm_disabled = ((Get-ADUser -LDAPFilter "(admincount=1)" | Where {$_ ...\n+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    + CategoryInfo …
Run Code Online (Sandbox Code Playgroud)

powershell active-directory

0
推荐指数
1
解决办法
2790
查看次数