-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Azure Monitoring Agent 1.30 and 1.31 does not work on Alma Linux #1928
Comments
I have the same issue, with the same scenario , Arc-enabled alma linux 9.4 running on ESXi on premise ======== |
We're seeing the same error message and restart loop with AMA 1.31 running on Debian on VMWare vSphere.
|
These new versions are not listed in the documentation at all https://learn.microsoft.com/en-us/azure/azure-monitor/agents/azure-monitor-agent-extension-versions - who can take care of updating that? |
How did you downgrade? |
I am having the same issue on Ubuntu 20.04 and 22.04. You can downgrade using an ARM template - I don't think it is possible using the portal. The resource should look something like this: {
"name": "[concat(parameters('vmName'),'/AzureMonitorLinuxAgent')]",
"type": "Microsoft.HybridCompute/machines/extensions",
"location": "[parameters('location')]",
"apiVersion": "2021-05-20",
"properties": {
"publisher": "Microsoft.Azure.Monitor",
"type": "AzureMonitorLinuxAgent",
"typeHandlerVersion": "1.29",
"autoUpgradeMinorVersion": false,
"enableAutomaticUpgrade": false
}
} |
I too have the issue on Ubuntu 22:04. Did the arm template resolve it? IF so, would you mind sharing as the code above did not work for me. |
Version 1.29 works in the sense, that the agent doesn't repeatedly crash. Version 1.29 has other bugs, but that may not be an issue for you. You can see a complete ARM template here: {
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"vmName": {
"type": "string"
},
"location": {
"type": "string"
}
},
"resources": [
{
"name": "[concat(parameters('vmName'),'/AzureMonitorLinuxAgent')]",
"type": "Microsoft.HybridCompute/machines/extensions",
"location": "[parameters('location')]",
"apiVersion": "2021-05-20",
"properties": {
"publisher": "Microsoft.Azure.Monitor",
"type": "AzureMonitorLinuxAgent",
"typeHandlerVersion": "1.29",
"autoUpgradeMinorVersion": false,
"enableAutomaticUpgrade": false
}
}
]
} Also notice that according to this page there should be a version 1.32.2 out, but it doesn't seem to be available - at least not to me. |
Brilliant! That worked for me!
Jonathan Bourke
Managing Director
***@***.*** | +353 61 535 891 | +353 83 873 7977
[cid:ICONLOGO1_36db0856-6abf-4cac-8e29-497b72c3cb7e.png]
Tarbh Tech Limited
Modern Cloud Solutions
[cid:web-20478c_bea706c6-8c9b-4e61-8f13-ef18f4c76e49.png] <https://tarbh.tech> [cid:phone-20478c_ee467db7-4064-48c3-825c-ff2b493cca3a.png] <tel:+35361535890> [cid:linkedin-20478c_353a58f8-2d90-415a-801e-1343b386a524.png] <https://www.linkedin.com/company/tarbh-tech> [cid:twitter-20478c_ffe10f9a-0d1d-4b81-932f-6aa33fb4d27e.png] <https://x.com/TarbhTech> [cid:support-20478c_b24e3139-5e5c-4b55-820d-654b611b4b81.png] <tel:+35361535899> [cid:teamviewer-20478c_acf1c815-76b9-4dec-a6fe-a5ca1b19cf05.png] <https://get.teamviewer.com/tarbhtech>
[https://media.tarbh.tech/pink-support.gif] <https://usemotion.com/meet/jonathan-bourke/support?d=25>
The information contained in this email and in any attachments is confidential and is designated solely for the attention and use of the intended recipient(s). This information may be subject to legal and professional privilege. If you are not an intended recipient of this email, you must not use, disclose, copy, distribute or retain this message or any part of it. If you have received this email in error, please notify the sender immediately and delete all copies of this email from your computer system(s).
From: martinnymand ***@***.***>
Sent: Tuesday, August 6, 2024 2:23 PM
To: Azure/azure-linux-extensions ***@***.***>
Cc: Jonathan Bourke ***@***.***>; Comment ***@***.***>
Subject: Re: [Azure/azure-linux-extensions] Azure Monitoring Agent 1.30 and 1.31 does not work on Alma Linux (Issue #1928)
You don't often get email from ***@***.******@***.***>. Learn why this is important<https://aka.ms/LearnAboutSenderIdentification>
Version 1.29 works in the sense, that the agent doesn't repeatedly crash. Version 1.29 has other bugs, but that may not be an issue for you. You can see a complete ARM template here:
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"vmName": {
"type": "string"
},
"location": {
"type": "string"
}
},
"resources": [
{
"name": "[concat(parameters('vmName'),'/AzureMonitorLinuxAgent')]",
"type": "Microsoft.HybridCompute/machines/extensions",
"location": "[parameters('location')]",
"apiVersion": "2021-05-20",
"properties": {
"publisher": "Microsoft.Azure.Monitor",
"type": "AzureMonitorLinuxAgent",
"typeHandlerVersion": "1.29",
"autoUpgradeMinorVersion": false,
"enableAutomaticUpgrade": false
}
}
]
}
Also notice that according to this<https://learn.microsoft.com/en-us/azure/azure-monitor/agents/azure-monitor-agent-extension-versions> page there should be a version 1.32.2 out, but it doesn't seem to be available - at least not to me.
-
Reply to this email directly, view it on GitHub<#1928 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AYQI5DSGOJN3JYFIAC2DRMLZQDEZRAVCNFSM6AAAAABJNJN76KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENZRGI4DGNJYGQ>.
You are receiving this because you commented.Message ID: ***@***.******@***.***>>
|
I just tried to upgrade to 1.32.5 but got the following error:
And I am running the latest version of azcmagent: |
@photomorre Microsoft released a version 1.32.6 that actually works, so you can upgrade to that. |
When upgrading to 1.30 or 1.31 the Azure Monitoring Agent fail on Alma Linux 9.3 and 9.4 with the following errors:
The issue was resolved by downgrading to 1.29.6.
(Please make it possible to downgrade from Azure Arc/Extension if you continue to wreck newer versions. 😀 )
The servers in questions are Azure Arc-enabled standard minimal Alma Linux 9.3/9.4 running on VMware ESXi in an on-premises datacenter.
The text was updated successfully, but these errors were encountered: