방법: 배포 보고서에서 IIS 웹 서버에 대한 IIS 메타베이스 설정 찾기
업데이트: 2007년 11월
배포 보고서의 각 IIS 웹 서버에 대해 배포에 필요한 IIS(인터넷 정보 서비스) 메타베이스 설정을 찾을 수 있습니다. XML 배포 보고서의 "InternetInformationServices" <Resource> 요소에는 IIS 웹 서버의 IIS 설정을 식별하는 <Setting> 및 다른 <Resource> 요소가 포함되어 있습니다.
![]() |
---|
이러한 설정 이름, 값 또는 형식 중 일부는 IIS의 해당 요소와 다르므로 대상 서버에서 구성하기 전에 먼저 변환해야 합니다. |
자세한 내용은 다음 항목을 참조하십시오.
배포 보고서에서 IIS 웹 서버에 대한 IIS 메타베이스 설정을 찾으려면
XML 배포 보고서를 엽니다.
<LogicalServers> 요소에서 IIS 웹 서버에 대한 <LogicalServer> 요소를 찾습니다.
<LogicalServer> 요소에서 "InternetInformationServices" <Resource> 요소를 찾습니다.
"InternetInformationServices" 요소에는 해당 서버의 IIS 설정을 식별하는 <Setting> 요소 및 다른 <Resource> 요소가 포함되어 있습니다.
참고:
IIS 6.0 이전 버전에는 응용 프로그램 풀이 없습니다. 따라서 IIS 6.0 이전 버전을 실행하는 서버에 응용 프로그램을 배포할 때는 "ApplicationPools" <Resource> 요소를 무시하십시오.
각 <Setting> 요소에서 "Resultant" <Facet> 요소 값을 검색합니다.
예제
다음 예제에는 IIS 웹 서버에 대한 <LogicalServer> 요소가 포함되어 있습니다. 이 요소에는 해당 웹 서버의 IIS 설정을 식별하는 몇 가지 <Setting> 요소가 있는 "InternetInformationServices" <Resource> 요소가 포함되어 있습니다. "InternetInformationServices" <Resource> 요소 내의 "WebSites" <Resource> 요소에는 "Resultant" <Facet> 요소가 있는 "DontLog" <Setting> 요소가 포함되어 있습니다.
<LogicalServer Name="MyWebServer" Definition="MyLogicalDatacenter:MyLogicalDatacenter.MyWebServer" Extends="Microsoft_WebHost:WebServer" InstanceId="818bc323-b70d-42a8-bfee-122d55a84b36">
...
<Resource Name="InternetInformationServices" Definition="MyLogicalDatacenter:MyLogicalDatacenter.MyWebServer.InternetInformationServices" Extends="Microsoft_InternetInformationServices:InternetInformationServices" InstanceId="bcf02a2b-ffcc-42f3-9b20-42c3415e89a1">
<Setting Name="AdminAcl" Definition="System:Int" State="Set" Secure="true" />
<Setting Name="EnableHistory" Definition="System:Boolean" State="Set" Null="true" />
...
<Resource Name="WebSites" Definition=" MyLogicalDatacenter:MyLogicalDatacenter.MyWebServer.InternetInformationServices.WebSites" Extends="Microsoft_InternetInformationServices:WebSites" InstanceId="45f7e221-835b-4999-8487-806a2f17f5cd"><Setting Name="DontLog" Definition="System:Boolean">
<Facet Name="Assigned" Definition="System:Boolean" State="Set" Null="true" />
<Facet Name="Resultant" Definition="System:Boolean" State="Set"><Value>false</Value></Facet>
<Facet Name="Default" Definition="System:Boolean" State="Set">
<Value>false</Value>
</Facet>
</Setting></Resource>
...
</Resource>
...
</LogicalServer>