Maintain control of your Microsoft 365 data
Post Reply
t7MevELx0
Service Provider
Posts: 60
Liked: 8 times
Joined: Feb 06, 2024 6:55 pm
Contact:

Migrate off of a default backup proxy to a pool?

Post by t7MevELx0 »

Are you working on an easier way to move orgs with its job/repos off of the default backup proxy to a proxy pool? It's extremely unfortunate that these orgs can be "stranded" on that default backup proxy. I wish I could prevent new orgs from being created on it and force the system to use the pool. I don't want orgs on the default backup proxy.
Polina
Veeam Software
Posts: 3457
Liked: 830 times
Joined: Oct 21, 2011 11:22 am
Full Name: Polina Vasileva
Contact:

Re: Migrate off of a default backup proxy to a pool?

Post by Polina »

Hi,

Please elaborate on what you mean by moving an organization off the default proxy.
An organization is not tied to any proxies. You create a repository and specify which proxy or proxy pool should work with it.
edh
Veeam Legend
Posts: 368
Liked: 114 times
Joined: Nov 02, 2020 2:48 pm
Full Name: Manuel Rios
Location: Madrid, Spain
Contact:

Re: Migrate off of a default backup proxy to a pool?

Post by edh » 1 person likes this post

I think you can change the repository from pool with a powershell cli... from UI is greyed-out.
Service Provider | VMCE
t7MevELx0
Service Provider
Posts: 60
Liked: 8 times
Joined: Feb 06, 2024 6:55 pm
Contact:

Re: Migrate off of a default backup proxy to a pool?

Post by t7MevELx0 »

Yes, that's what I mean; move whatever is assigned to the default backup proxy to the pool.
pat_ren
Service Provider
Posts: 94
Liked: 16 times
Joined: Jan 02, 2024 9:13 am
Full Name: Pat
Contact:

Re: Migrate off of a default backup proxy to a pool?

Post by pat_ren » 1 person likes this post

https://helpcenter.veeam.com/docs/vbo36 ... tml?ver=80
this will allow you to do that

edit: here's an example

$repositoryIds = @(
"xxx",
"xxx",
"xxx",
"xxx",
"xxx"
)

$proxy = Get-VBOProxy -Id "xxx"
or
$pool = Get-VBOProxyPool -Name "xxx"

foreach ($repoId in $repositoryIds) {
$repository = Get-VBORepository -Id $repoId
Start-VBORepositoryOwnerChangeSession -Repository $repository -Proxy $proxy -ForceStopSessions
}

or

foreach ($repoId in $repositoryIds) {
$repository = Get-VBORepository -Id $repoId
Start-VBORepositoryOwnerChangeSession -Repository $repository -Pool $pool -ForceStopSessions
}
t7MevELx0
Service Provider
Posts: 60
Liked: 8 times
Joined: Feb 06, 2024 6:55 pm
Contact:

Re: Migrate off of a default backup proxy to a pool?

Post by t7MevELx0 »

Wow, that's great. I'll give that cmdlet a try and see if it lets me move something off of the default backup proxy to the pool. Thanks for posting that. I'll let you know how it works out. :)
t7MevELx0
Service Provider
Posts: 60
Liked: 8 times
Joined: Feb 06, 2024 6:55 pm
Contact:

Re: Migrate off of a default backup proxy to a pool?

Post by t7MevELx0 » 1 person likes this post

I don't see a way to edit my previous post, but that PowerShell cmdlet works great. I used AI to expand on the script and I have something I can keep using to move any stragglers to my pool. Thanks again!
Post Reply

Who is online

Users browsing this forum: No registered users and 70 guests