我们的天蓝色Web应用程序服务存在很大的问题。 突然之间,我们开始出现“磁盘空间不足”错误。 果然,LogFiles目录很大。 我们不确定如何清除该目录。 过了一会儿,并且没有找到建议的方法,我们发现这只是日志文件,删除其中的一些文件可能是安全的。
通过kudu powershell控制台,我们通过rm stdout_*.log
命令删除了一个转储文件LogFile / dumps,并且还删除了一堆stdout文件。
令人震惊的是,这完全弄糟了我们的插槽!
我们尝试重新部署,但是却收到HTTP 503错误,而对于解决此问题,我们没有任何明显的认识。
幸运的是,我们删除了暂存插槽中的这些文件而不是生产文件,因此没有停机时间。 我们结束了旋转一个全新的插槽并在其中进行部署的操作,然后删除了先前的插槽。
当然不是很好的经验。 有人能启发我发生什么事吗? 我们有一个非常简单的asp.net core 2.1应用程序。
可以删除日志文件真的弄糟了一个插槽吗?!
答案 0 :(得分:1)
删除日志文件真的会弄乱一个插槽吗?
不。您可能会删除一些导致插槽应用程序无法使用的配置文件。
您可以使用以下代码删除Web App日志文件。
$resourceGroupName="xxx"
$webAppName="xxxx"
$slotName="xxxxx"
function Get-AzureRmWebAppPublishingCredentials($resourceGroupName, $webAppName, $slotName = $null){
if ([string]::IsNullOrWhiteSpace($slotName)){
$resourceType = "Microsoft.Web/sites/config"
$resourceName = "$webAppName/publishingcredentials"
}
else{
$resourceType = "Microsoft.Web/sites/slots/config"
$resourceName = "$webAppName/$slotName/publishingcredentials"
}
$publishingCredentials = Invoke-AzureRmResourceAction -ResourceGroupName $resourceGroupName -ResourceType $resourceType -ResourceName $resourceName -Action list -ApiVersion 2015-08-01 -Force
Write-Host $publishingCredentials
return $publishingCredentials
}
function Get-KuduApiAuthorizationHeaderValue($resourceGroupName, $webAppName, $slotName = $null){
$publishingCredentials = Get-AzureRmWebAppPublishingCredentials $resourceGroupName $webAppName $slotName
Write-Host $publishingCredentials.Properties.PublishingUserName
Write-Host $publishingCredentials.Properties.PublishingPassword
return ("Basic {0}" -f [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $publishingCredentials.Properties.PublishingUserName, $publishingCredentials.Properties.PublishingPassword))))
}
function Delete-WebAppLogFiles($resourceGroupName, $webAppName, $slotName = ""){
$apiAuthorizationToken = Get-KuduApiAuthorizationHeaderValue $resourceGroupName $webAppName $slotName
if ($slotName -eq ""){
$apiUrl = "https://$webAppName.scm.azurewebsites.net/api/command"
}
else{
$apiUrl = "https://$webAppName`-$slotName.scm.azurewebsites.net/api/command"
}
$apiCommand = @{
#command='del *.* /S /Q /F'
command = 'powershell.exe -command "Remove-Item -path d:\\home\\LogFiles\\* -recurse"'
dir='d:\\home\\LogFiles'
}
Write-Output $apiUrl
Write-Output $apiAuthorizationToken
Write-Output $apiCommand
Invoke-RestMethod -Uri $apiUrl -Headers @{"Authorization"=$apiAuthorizationToken;"If-Match"="*"} -Method POST -ContentType "application/json" -Body (ConvertTo-Json $apiCommand)
}
Delete-WebAppLogFiles $resourceGroupName $webAppName $slotName
答案 1 :(得分:0)
解决此问题的一种方法是创建一个 CRON触发的Web作业,该作业每天每天或每周运行。 Web Jobs在相同的App Service计划上运行,这意味着您可以使用简单的PowerShell脚本删除由App Service创建的旧日志文件。 这是一个示例:
$LogFolder = "D:\home\site\wwwroot\App_Data\Logs";
$DaysToKeepLogsAround = 30;
Get-ChildItem -Path $LogFolder -Recurse -File | Where LastWriteTime -lt (Get-Date).AddDays(-$DaysToKeepLogsAround) | Remove-Item -Force;
我也遇到了具有大量日志文件的Azure App Service上的存储问题,并决定在此博客文章"Deleting old web app logs using Azure Web Jobs and PowerShell"中更详细地记录该过程。
侧面说明:某些日志记录库具有对自动删除旧日志文件的内置支持,该功能将实现与上述相同的功能