共用方式為


New-SPConfigurationDatabase

 

適用版本: SharePoint Foundation 2010, SharePoint Server 2010

上次修改主題的時間: 2015-03-09

建立新的設定資料庫。

Syntax

New-SPConfigurationDatabase [-DatabaseName] <String> [-DatabaseServer] <String> [[-DirectoryDomain] <String>] [[-DirectoryOrganizationUnit] <String>] [[-AdministrationContentDatabaseName] <String>] [[-DatabaseCredentials] <PSCredential>] [-FarmCredentials] <PSCredential> [-Passphrase] <SecureString> [-AssignmentCollection <SPAssignmentCollection>]

詳細描述

New-SPConfigurationDatabase Cmdlet 會將新的設定資料庫建立在指定的資料庫伺服器上。這是用於新 SharePoint 伺服器陣列的中央資料庫。

如需 Windows PowerShell for SharePoint 產品的權限及最新資訊,請參閱線上說明文件 (https://go.microsoft.com/fwlink/?LinkId=163185)。

Parameters

參數 必要 輸入 描述

DatabaseName

必要

System.String

指定新設定資料庫的名稱。

DatabaseServer

必要

System.String

指定要建立設定資料庫的資料庫伺服器。若不指定任何值,即會使用預設值。

DirectoryDomain

選用

System.String

指定新伺服器陣列的目錄網域。若不指定任何網域,即會使用本機電腦所在之網域。

DirectoryOrganizationUnit

選用

System.String

指定新設定資料庫的目錄組織單位。若不指定任何組織單位,即會使用本機電腦所在之組織單位。

AdministrationContentDatabaseName

必要

System.String

指定新伺服器陣列的管理中心內容資料庫名稱。若不指定任何名稱,即使用預設的名稱。

DatabaseCredentials

選用

System.Management.Automation.PSCredential

指定資料庫使用者的 Credential 物件。若使用 SQL Server 驗證,請使用此參數。若未提供資料庫憑證,即使用 Windows 驗證。

FarmCredentials

必要

System.Management.Automation.PSCredential

指定伺服器陣列管理員帳戶的認證。

Passphrase

必要

System.Security.SecureString

指定新伺服器陣列的安全密碼片語。此複雜密碼係用於連結其他電腦與此伺服器陣列。

AssignmentCollection

選用

Microsoft.SharePoint.PowerShell.SPAssignmentCollection

為能適當處置物件而管理物件。使用 SPWebSPSite 等物件可能會耗用大量的記憶體,因此在 Windows PowerShell 指令碼中使用這些物件時,必須適當地管理記憶體。您可以使用 SPAssignment 物件將物件指派給變數,並在不需要時處置這些物件,以釋放記憶體。使用 SPWebSPSiteSPSiteAdministration 物件時,若未使用指派集合或 Global 參數,將會自動處置這些物件。

注意

使用 Global 參數時,所有物件會包含在全域儲存區內。若未立即使用物件,或未使用 Stop-SPAssignment 命令處置物件,將會發生記憶體不足的狀況。

輸入類型

傳回類型

Example

------------------範例-----------------------

New-SPConfigurationDatabase -DatabaseName "SharePointConfigDB1" -DatabaseServer "SQL-01" -Passphrase (ConvertTo-SecureString "MyPassword" -AsPlainText -force) -FarmCredentials (Get-Credential)

此範例會提示使用者提供預設伺服器陣列管理員帳戶的使用者認證。

See Also

Reference

Backup-SPConfigurationDatabase
Disconnect-SPConfigurationDatabase
Connect-SPConfigurationDatabase
Remove-SPConfigurationDatabase

Other Resources

Dismount-SPConfigurationDatabase