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 参数,则会自动处理这些对象。

注意Note
在使用 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