반응형

MoveRequest MigrationBatch 테스트 하다가 아래와 같이 계속 동기화 (Syncing) 머물러 있는 증상이 나타났습니다..

 

New-MoveRequest Powershell에서 진행시는 문제 없지만 그림과 같이 UI 상에서 마이그레이션 진행시 계속 멈춰있었습니다. 리서치를 진행하다 보니 아래의 자료가 확인되었습니다.

 

(영문) Issues after Exchange Server upgrade if the arbitration mailbox isn't upgraded to the new Exchange server

(한글) 중재 사서함에서 새 Exchange 서버를 업그레이드 되지 않은 경우 문제를 후 Exchange Server 업그레이드

Symptoms

After you install a new version of Microsoft Exchange Server, you experience one or more of the following issues:

eDiscovery searches for new or moved mailboxes do not work.

Mailbox moves stall or are not completed successfully.

Audit report messages are not generated for new or moved mailboxes.

Daily Skype for Business call logs for new or moved mailboxes are blank.

 

Cause

This issue occurs if the arbitration mailbox that's used for the process is still hosted on an older version of Exchange Server.

 

Resolution

To resolve this issue, move the arbitration mailbox to the latest version of Exchange Server in the environment.

To do this, first run the following Get-Mailbox cmdlet to locate the arbitration mailbox:

Get-Mailbox -Arbitration

Run the following New-MoveRequest cmdlet to move the mailbox:

Get-Mailbox -Arbitration | New-MoveRequest -TargetDatabase <name>

 

증상

Microsoft Exchange Server 새 버전을 설치한 후 다음 문제 중 하나 이상이 발생 합니다.

eDiscovery 검색 새로운 또는 이동한 사서함에 대해 작동 하지 않습니다.

사서함 이동이 중단 또는 성공적으로 완료 되지 않습니다.

새로운 또는 이동한 사서함에 대 한 감사 보고서 메시지가 생성 되지 않습니다.

매일 Skype 비즈니스 호출에 대 한 기록에 대 한 새로운 또는 이동한 사서함 비어 있습니다.

 

원인

이 문제는 프로세스에 사용 되는 중재 사서함 여전히 이전 버전의 Exchange Server 호스팅되는 경우에 발생 합니다.

 

해결 방법

이 문제를 해결 하려면 최신 버전의 Exchange Server 환경에서 중재 사서함 이동.

이렇게 하려면 먼저 중재 사서함을 찾을 수 다음 가져오기 사서함 cmdlet를 실행 합니다.

Get-Mailbox -Arbitration

사서함을 이동 하려면 다음 New MoveRequest cmdlet를 실행 합니다.

Get-Mailbox -Arbitration | New-MoveRequest -TargetDatabase <name>

 

 

중재 사서함 (arbitration mailbox) 이전 버전에 호스팅 되는 경우 발생된다고 나와 있습니다.

 

기술 자료에 나와 있는 대로 Get-Mailbox -Arbitration 조회시 Exchange 2013 호스팅되어있는 것을 확인할 있습니다.

 

 

기술자료대로 New-MoveRequest 진행하여 EX2016 Database 이동합니다.

여러가지 사례상 마이그레이션만 해결하길 원한다면 Migration 관련 부분만 옮긴다면 아래와 같이 진행합니다.

Get-Mailbox -Identity mig* -Arbitration |New-MoveRequest -Targetdatabase <Exchange 2016 DB>

일괄 이동은 아래와 같이 진행

Get-Mailbox -Arbitration | New-MoveRequest -TargetDatabase <name>

 

조치한 MigrationBatch 진행

EX2013 -> EX2010 으로 진행

사서함 상태 - 세부 정보 보기시 유효성 검사중 진행 확인

 

시간이 흐르면 동기화 중으로 변경

 

Get-MigrationBatch, Get-MoveRequest 확인

 

세부정보에서 완료 확인

 

시간이 지난뒤 완료됨 확인

반응형

+ Recent posts