こんにちは、日本マイクロソフトの坪倉です。
System Center 2012 Data Protection Manager (以下、DPM2012) で、無人インストールの方法が公開されています。
無人インストールの実行
http://technet.microsoft.com/ja-jp/library/jj663108.aspx
今回はこの内容に関して、補足させていただきます。
DPM2012 の無人インストールでは、DPMSetup.ini の記載内容として、SQL Server instance 情報に加えて、Reporting SQL Server 情報を指定する必要があります。
この指定を行っていない場合、インストールがエラー (ID: 4070) で失敗してしまいますのでお気を付けください。
設定内容としては下記のようになります。
DPM2012 の前提条件となるソフトウェアがすべてインストール済みの環境で、下記の ini ファイルを使用してインストールを実行します。
DPMSetup.ini
-------------------------
[OPTIONS]
UserName = <A user with credentials to install DPM>
CompanyName = <Name of your company>
ProductKey = <The 25-character DPM product key in the format xxxxx-xxxxx-xxxxx-xxxxx-xxxxx>
SqlAccountPassword = <The password to the DPM$ account>
# StandardAgentLicenses = <No. of standard agent licenses you have purchased>
# EnterpriseAgentLicenses = <No. of enterprise agent licenses you have purchased>
# ProgramFiles = C:\Program Files\Microsoft Data Protection Manager
# DatabaseFiles = C:\Program Files\Microsoft Data Protection Manager\DPM\DPMDB
# IntegratedInstallSource = <Location of the DPM setup files>
# ---For using a remote SQL Server instance ---
# YukonMachineName = <Name of the SQL Server computer>
# YukonInstanceName = <Name of the instance of SQL Server that Setup must use>
# YukonMachineUserName = <User name that Setup must user>
# YukonMachinePassword = <Password for the user name Setup must use>
# YukonMachineDomainName = <Domain to which the SQL Server computer is attached>
# ---For using a reporting SQL Server instance in case of DPMDB in SQL Cluster ---
# ReportingMachineName = <Name of the SQL Server computer>
# ReportingInstanceName = <Name of the instance of SQL Server that Setup must use>
# ReportingMachineUserName = <User name that Setup must user>
# ReportingMachinePassword = <Password for the user name Setup must use>
# ReportingMachineDomainName = <Domain to which the SQL Server computer is attached>
-------------------------
DPMSetup.ini (設定例)
-------------------------
[OPTIONS]
UserName = User
CompanyName = Microsoft
ProductKey = XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
SqlAccountPassword = password
# StandardAgentLicenses = <No. of standard agent licenses you have purchased>
# EnterpriseAgentLicenses = <No. of enterprise agent licenses you have purchased>
# ProgramFiles = C:\Program Files\Microsoft Data Protection Manager
# DatabaseFiles = C:\Program Files\Microsoft SQL Server\MSSQL11.DPM2012\MSSQL\DATA
# IntegratedInstallSource = <Location of the DPM setup files>
# ---For using a remote SQL Server instance ---
YukonMachineName = SV-DPM
YukonInstanceName = DPM2012
YukonMachineUserName = DPMEVAL\Administrator
YukonMachinePassword = password
YukonMachineDomainName = DPMEVAL
# ---For using a reporting SQL Server instance in case of DPMDB in SQL Cluster ---
ReportingMachineName = SV-DPM
ReportingInstanceName = DPM2012
ReportingMachineUserName = DPMEVAL\Administrator
ReportingMachinePassword = password
ReportingMachineDomainName = DPMEVAL
-------------------------
設定例の環境 (概要)
-------------------------
ユーザー名: User
CompanyName: Microsoft
ProductKey: XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
SQL / Reporting サーバー名: SV-DPM
SQL / Reporting サーバー インスタンス名: DPM2012
SQL / Reporting サーバーのユーザー名: DPMEVAL\Administrator
上記ユーザーのパスワード: password
SQL / Reporting サーバーが参加しているドメイン名: DPMEVAL
# Reporting サーバーは SQL サーバーと同居。
-------------------------
=====================