Quantcast
Channel: R&D Forums
Viewing all articles
Browse latest Browse all 9952

Veeam Backup for Microsoft 365 • Re: Failed to upgrade proxy agent

$
0
0
FWIW
Upgraded from 7 > 8
Console/Proxy on Server 2019 Datacenter UI / Server 2019 Datacenter Core
  • Had to manually install Powershell 7.5 on the Proxy (it claimed 7.4, but installing 7.4 did not resolve)
  • Had to install .net 8 RUNTIME
  • Had to open ports 4222 and 5432
  • Had to reboot my Proxy - it just didn't like something despite all of this
Here's a dirty PS script for the firewall stuff. I was going to script out the download/install of the apps but I'm too lazy at the moment. Note: This is all ports that might be needed by backup for M365 - customize if you don't need like, 25 open.

Code:

$ruleName = "Veeam M365 Portz"# Remove existing rule (if exists)if (Get-NetFirewallRule -DisplayName $ruleName -ErrorAction SilentlyContinue) {    Remove-NetFirewallRule -DisplayName $ruleName -Confirm:$false}# Define all required ports - this includes some that not all proxies/consoles may need$allPorts = "9192,9191,5432,4222,443,445,135,5985,5986,25,465,587,9193"# Create the firewall rule based on what you listed beforeNew-NetFirewallRule -DisplayName $ruleName `    -Direction Inbound `    -Action Allow `    -Profile Any `    -EdgeTraversalPolicy Block `    -Protocol TCP `    -LocalPort $allPorts `    -RemotePort Any `    -LocalAddress Any `    -RemoteAddress Any `    -Program Any `    -Service Any
Once I did this? Worked fine... /shrug not sure why this wasn't QA'd before release though - upgrades should be your primary focus on QA IMHO.

Statistics: Posted by JRRW — Feb 26, 2025 2:22 pm



Viewing all articles
Browse latest Browse all 9952

Latest Images

Trending Articles



Latest Images