Forum Widgets
Latest Discussions
Arc arc onboarding issue
Hi All, We are not able to onboard windows servers to ARC console getting following error. didn't find any with app, spn and secret key. but still getting Failed To Get Access Token" time="2022-10-11T13:32:44+05:30" level=error msg="Unable to obtain a token for deletion operation. Please wait a minute and t ry again." Error="ClientSecretCredential: unable to resolve an endpoint: server response error:\n context deadline exceeded" time="2022-10-11T13:32:49+05:30" level=info msg="Exit Code: AZCM0041: Failed To Get Access Token" time="2022-10-11T13:32:49+05:30" level=info msg="For troubleshooting, see https://aka.ms/arc/azcmerror" time="2022-10-11T13:32:49+05:30" level=fatal msg="ClientSecretCredential: unable to resolve an endpoint: server response erro r:\n context deadline exceeded"Solvedshashidhar joliholiOct 11, 2022Copper Contributor10KViews0likes6CommentsManage Azure Arc Machine Extensions via Powershell
First of all you need to install the module Az.ConnectedMachine Install-Module Az.ConnectedMachine -AllowClobber Once the module is installed you can verify your Azure connected machines extension provisioning state by running the following command Replace the variable $_.Name for the name of your machine Replace the variable $_.ResourceGroupName for the name of the resource group where your machine is allocated Get-AzConnectedMachineExtension -MachineName $_.Name -ResourceGroupName $_.ResourceGroupName Here it is an example of the results ResourceGroupName Name Location TypeHandlerVersion ProvisioningState Publisher ----------------- ---- -------- ------------------ ----------------- --------- YourResourceGroup AzureMonitorWindowsAgent YourLocation 1.12.0.0 Succeeded Microsoft.Azure.Monitor Sometimes an extension fails to be installed/updated which demands you to uninstall the extension. Here it is an example: In this case you have the option to manually uninstall the failed extension or to simply running the following command to uninstall at large. This command will look for all Azure Arc Connected Machines and for each machine found it will remove the extension that has its provisioning state equals failed. Get-AzConnectedMachine | % { Get-AzConnectedMachineExtension -MachineName $_.Name -ResourceGroupName $_.ResourceGroupName | ? { $_.ProvisioningState -eq "Failed" } | Remove-AzConnectedMachineExtension } Sometimes, it depends of the amount of failed extensions you have in your environment, this command freezes. To prevent that you can run it as job so it will send the request to remove the failed extension directly to Azure queue without the need to wait for each command to finish. Get-AzConnectedMachine | % { Get-AzConnectedMachineExtension -MachineName $_.Name -ResourceGroupName $_.ResourceGroupName | ? { $_.ProvisioningState -eq "Failed" } | Remove-AzConnectedMachineExtension -Asjob } You can follow the queue by looking the Azure Activity log by filtering it by Operation Name Install or Update an Azure Arc extensionsfelipesbarrosMar 04, 2023Copper Contributor6.2KViews0likes0CommentsAzure Arc - State Configuration (DSC)
Please confirm my understanding, onboarding an on-prem server to Azure Arc does not automatically enable State Configuration? Additional steps are required to onboard the Azure Arc node for state configuration (DSC) in an automation account. If this is the case then the creation of an automation account, onboarding the on-prem server to state configuration and deploying the connected machine agent (Azure Arc) may be preferable to reduce the number of times the on-prem server needs to be configured interactively or via PowerShell (either local or remote)?SolvedPaul BendallJul 22, 2021Iron Contributor5.5KViews2likes5CommentsClarity on pricing change tracking
I am trying to figure out if we will be billed or not for enabling change tracking in Azure Arc. In both Azure arc and in Azure Automation, under change tracking, it states: "This service is included with Azure virtual machines and Azure Arc machines. You only pay for logs stored in Log Analytics." On the Azure automation price page it states change tracking falls under Configuration management and will be billed at $7.6053/month/node: "Configuration management includes the configuration pull service and change tracking capabilities. Billing is based on the number of nodes that are registered with the service and the log data stored in the Azure Log Analytics service." So which is it? would love to collect this info (and just pay for the LA ingestion) but not $7.60/month per node. Last question. assuming it is free, does anyone have a ballpark or approx range of per node data collection rate for change tracking...i understand that this will vary depending on the server...just wondering if we will see a significant increase in LA costs.SolvedRobYoungDec 06, 2021Iron Contributor5.3KViews1like2CommentsAzure ARC and Software Deployment
Hello all, We currently have SCCM in our landscape. Looking to trial Azure Arc as a replacement for Software Updates deployment. For those that already use Azure Arc for Software update deployments. What do you use for Software/Application deployments ? JTJTheseiraOct 11, 2022Copper Contributor4.2KViews1like5CommentsFrom On-premises Datacenter to Azure Hybrid with Azure Arc for Servers
With Microsoft Azure Arc services you can bring Great Azure features to your on-prem datacenters, or to other Cloud providers. I wrote a #MVPLABSerie Blogposts about the benefits of Azure Hybrid which I like to share with the Tech Community: #MVPLABSerie Azure Hybrid with Arc Enabled Windows Servers on-premises #MVPLABSerie Azure Arc enabled Servers #MVPLABSerie Azure Update Management Center (Preview) and Azure Arc enabled Servers #MVPLABSerie Azure Arc enabled SQL Server Health Assessment #MVPLABSerie Azure Defender for Cloud with Azure Arc enabled SQL Server Security Baseline for Azure Arc enabled Servers and Arc Kubernetes As an IT Specialist of Datacenter(s) and Cloud I really like these Azure hybrid benefits to keep your datacenter up-to-date and secure! Hope this #MVPLABSerie is helpful for you and your Business. Cheers, James4.2KViews6likes0CommentsAzure ARC - Update Management - Scoping Deployment
I'm new to Azure Arc but enjoying what I'm learning and the potential to solve customer problems. An element I can't work out is the preferred way to scope Arc Enabled Servers at scale for Update Deployment. The blogs I've read and the jumpstart both discuss the addition of each Arc enabled server under "Machines to Update" but that doesn't seem very dynamic. For a scale solution, I'd expect to be able to use some form of Grouping, but I can't work out how to configure this option for Arc Enabled Servers.SolvedPaul BendallJul 05, 2021Iron Contributor3.8KViews1like4CommentsWhat are the benefits of Azure ARC over AWS Outposts
Hello, Can someone please describe the benefits of Azure ARC over AWS Outposts in terms of features wise both are offering. Also pros and cons of both products. Mostly I am looking below features comparison. - Kubernetes - Insights - Policy - Assets Inventory - Update management - Change tracking - Custom script execution - GitOps configuration - Functions - Logic Apps - APIM - Servers - Monitoring Dashboardmehtaparth09Sep 10, 2021Copper Contributor3.6KViews1like2CommentsIs Azure ARC billable for installing AMA agent on my onprem devices
Azure ARC needs to deployed on 25 onprem servers - Why because: to install AMA agent on onprem servers and collect logs via DCR - Is it free to use azure arc for above stated reason - Need a clarity on the pricing - I understand there is a price involved for log ingestion on sentinel - MSFT Pricing calculator not specific about this requirementAnalystHOKDec 26, 2022Copper Contributor2.8KViews1like2CommentsUpdate Management Center
Hi fellow nerds We are testing quite heavy on the Update management center for replacement of WSUS/SCCM. Both on our Azure virtual machines in combination with Arc to cover all our onprem Vmware datacenters' VMs. In scope we have around 200 Azure VMs and 160 ARC VMs I looks like a very strong tool to replace our forever struggle to maintain WSUS. I know its still in preview, but wanted to know if anyone else struggle with the Schedules for the ARC servers? We can add arc machines to the schedules, but they kinda disappear again without any warning or log entry, meaning we need to update all by hand (still a major benefit and very few clicks to update, but would be neat if schedules worked) I have not found any good forums for debates around UMC, so hope to find fellow nerds here i can work with.PatrikPriessMay 16, 2023Copper Contributor2.6KViews0likes3Comments
Resources
Tags
No tags to show