728x90



1. 파워쉘 실행(관리자권한)

2. 역할 및 기능 추가 설치

    Install-WindowsFeature -Name Web-Server, Web-Mgmt-Tools

or


Import-Module ServerManager

Add-WindowsFeature Web-Static-Content,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-Net-Ext,Web-Http-Logging,Web-Request-Monitor,Web-Http-Tracing,Web-Filtering,Web-Stat-Compression,Web-Mgmt-Console,NET-Framework-Core,NET-Win-CFAC,NET-Non-HTTP-Activ,NET-HTTP-Activation,RSAT-Web-Server,



728x90
728x90


Get-MailboxDatabaseCopyStatus * | where {$_.파라메터이름 -eq "검색값"}

예)

Get-MailboxDatabaseCopyStatus * | where {$_.ContentIndexState -eq "Failed"}

728x90
728x90

이벤트 ID : 1021

Source : MSExchangeTransport

내용

수신 커넷터 ****이(가) IP 주소 xxx.xxx.xxx.xxx에서 받는 연결을 거부했습니다.

이 원본 IP 주소에 의해 이 커넷터에 대한 원본(20)당 최대 연결 수에 도달 했습니다.


원인 수신커넥터의 최대인바운드 초과로 발생

해결 최대 인바운드를 무제한으로 설정


1. 수신커넥터 정보 확인

   Get-ReceiveConnector | Select Name,MaxInbound*

MaxInboundConnectionPerSource : 20

MaxInboundConnectionPercentagePerSource : 2

기본 설정값이 되어있음을 확인


2. 최대인바운드커넥터로 설정

Get-ReveiceConnector Lotteshopping* | Set-ReceiveConnector -MaxInboundConnectionPerSource unlimited -MaxInboundConnectionPercentagePerSource 100


감사합니다.

728x90

+ Recent posts