SharePoint 2010 데이터베이스와 Windows PowerShell
최초 문서 게시일: 2012년 2월 8일 수요일
SharePoint 2010 데이터베이스는 다양한 방법을 통해 유지 관리, 구성, 백업/복원할 수 있습니다. 일반적으로는 SharePoint 중앙 관리가 가장 많이 사용되지만, 가장 쉽고도 효율적인 방법은 Windows PowerShell cmdlet을 사용하는 것입니다. SharePoint 데이터베이스에 대해 사용할 수 있는 cmdlet은 다양합니다.
저의 이전 블로그에서는 SharePoint 2010 팜의 활성 데이터베이스를 찾는 방법을 소개했었는데요, 이번 게시물에서는 Windows PowerShell을 사용하여 SharePoint 데이터베이스에 대해 수행할 수 있는 다른 작업에 대해서도 살펴보겠습니다.
아래 목록에는 Windows PowerShell을 사용하여 수행할 수 있는 SharePoint 데이터베이스 작업의 몇 가지 예가 나와 있습니다.
- 팜에서 로컬 서버 컴퓨터 연결 끊기 - Disconnect-SPConfigurationDatabase
- 팜에 로컬 서버 컴퓨터 연결 - Connect-SPConfigurationDatabase
- 새 구성 데이터베이스 만들기 - New-SPConfigurationDatabase
- 구성 데이터베이스 제거 - Remove-SPConfigurationDatabase
- 콘텐츠 데이터베이스 분리 - Dismount-SPContentDatabase
- 콘텐츠 데이터베이스 탑재 - Mount-SPContentDatabase
- SharePoint 팜의 구성 백업 - Backup-SPConfigurationDatabase -Directory <백업 폴더> -DatabaseServer <데이터베이스 서버 이름> -DatabaseName <데이터베이스 이름> -DatabaseCredentials <Windows PowerShell 자격 증명 개체> [-Verbose]
- 전체 SharePoint 팜 백업 - Backup-SPFarm -Directory <백업 폴더> -BackupMethod {Full | Differential} [-Verbose]
- SharePoint 서비스 응용 프로그램 백업 - Backup-SPFarm | -Directory <백업 폴더> -BackupMethod {Full | Differential} -Item <서비스 응용 프로그램 이름> [-Verbose]
- SharePoint 팜의 구성 복원 - Restore-SPFarm –Directory <복원 공유> -RestoreMethod Overwrite –ConfigurationOnly
- 전체 SharePoint 팜 복원 - Restore-SPFarm –Directory <백업 폴더> -RestoreMethod Overwrite [–BackupId <GUID>]
- SharePoint 서비스 응용 프로그램 복원 - Restore-SPFarm –Directory <백업 폴더> -Item “<서비스 응용 프로그램 이름>” –RecoveryMethod Overwrite –BackupId <GUID> [-Verbose]
이 목록에는 SharePoint 2010 데이터베이스로 작업할 때 Windows PowerShell을 사용하여 수행할 수 있는 작업 중 몇 가지 예제만 나와 있습니다. 보다 자세한 내용은 다음 항목을 참조하십시오.
- 데이터베이스 cmdlet https://technet.microsoft.com/ko-kr/library/ee906544.aspx
- 백업 및 복구 cmdlet https://technet.microsoft.com/ko-kr/library/ee890109.aspx
- 가져오기 및 내보내기 cmdlet https://technet.microsoft.com/ko-kr/library/ee906557.aspx
Windows PowerShell cmdlet 작성 및 사용에 대한 지원이 필요한 경우에는 아래 위치에서 제공되는 Bill Baer의 Windows PowerShell 명령 작성기를 참조하십시오.
읽어 주셔서 감사합니다.
Steve Hord(SharePoint Content Publishing 기술 문서 작성자)
이 문서는 번역된 블로그 게시물입니다. 원본 문서는 SharePoint 2010 Databases and Windows PowerShell을 참조하십시오.