사용자 프로필 서비스 응용 프로그램에서 관리자 제거(SharePoint Server 2010)

 

적용 대상: SharePoint Server 2010

마지막으로 수정된 항목: 2011-11-10

팜 관리자는 User Profile Service 응용 프로그램에서 서비스 응용 프로그램 관리자를 제거할 수 있습니다. 예를 들어 퇴사하는 사용자의 계정은 서비스 응용 프로그램 관리자 목록에서 제거해야 합니다. 또한 서비스 응용 프로그램 관리자가 더 이상 필요하지 않은 경우에도 제거할 수 있습니다. 관리자에 대한 자세한 내용은 관리 계층 구조의 관리자 및 소유자 선택(SharePoint Server 2010)을 참조하십시오.

이 절차를 수행하기 전에 다음을 확인하십시오.

  • User Profile Service가 팜에서 실행되고 있습니다.

이 문서의 내용

  • 중앙 관리를 사용하여 User Profile Service 응용 프로그램에서 관리자 제거

  • Windows PowerShell을 사용하여 User Profile Service 응용 프로그램에서 관리자 제거

중앙 관리를 사용하여 User Profile Service 응용 프로그램에서 관리자 제거

일반적으로 중앙 관리 웹 사이트를 사용하여 독립 실행형 배포에서 User Profile Service 응용 프로그램의 관리자를 제거합니다.

중앙 관리를 사용하여 User Profile Service 응용 프로그램에서 관리자를 제거하려면

  1. 다음과 같은 관리 자격 증명이 있는지 확인합니다.

    • 중앙 관리를 사용하려면 이 절차를 수행하는 사용자 계정이 Farm Administrators 그룹의 구성원이어야 합니다.
  2. 중앙 관리 웹 사이트의 응용 프로그램 관리 섹션에서 서비스 응용 프로그램 관리를 클릭합니다.

  3. 서비스 응용 프로그램 목록에서 User Profile Service 응용 프로그램을 클릭합니다.

  4. 서비스 응용 프로그램 탭의 작업 그룹에서 관리자를 클릭합니다.

  5. User Profile Service 응용 프로그램의 관리자 페이지에서 사용자 또는 그룹 계정을 선택하고 제거를 클릭한 다음 확인을 클릭합니다.

Windows PowerShell을 사용하여 User Profile Service 응용 프로그램에서 관리자 제거

작업 자동화는 회사에서 자주 수행되는데, 작업을 자동화하려는 경우에는 일반적으로 Windows PowerShell을 사용하여 User Profile Service 응용 프로그램에서 관리자를 제거합니다.

Windows PowerShell을 사용하여 User Profile Service 응용 프로그램에서 관리자를 제거하려면

  1. 다음 최소 요구 사항을 충족하는지 확인합니다.

  2. 시작 메뉴에서 모든 프로그램을 클릭합니다.

  3. Microsoft SharePoint 2010 Products를 클릭합니다.

  4. SharePoint 2010 관리 셸을 클릭합니다.

  5. Windows PowerShell 명령 프롬프트(PS C:\>)에서 각 줄에 다음 명령을 주석(//) 없이 입력합니다.

    // Get a list of all service applications and their GUIDs
    Get-SPServiceApplication
    
    // Create a variable that contains the guid of the User Profile service application
    // for which you want to remove an administrator
    $serviceapp = Get-SPServiceApplication <guid>
    
    // Create a variable that contains the list of administrators for the User Profile service application
    $security = Get-SPServiceApplicationSecurity $serviceapp -Admin
    
    // Remove the user from the list of service application administrators
    Revoke-SPObjectSecurity $security -Principal <user name> -Rights "Full Control"
    
    // Apply the changes to the User Profile service application
    Set-SPServiceApplicationSecurity $serviceapp -objectSecurity $security -Admin
    

    여기서 <guid>는 서비스 응용 프로그램 관리자를 제거할 User Profile Service의 GUID이고, <user name>은 제거할 관리자입니다.

    자세한 내용은 Get-SPServiceApplication, Get-SPServiceApplicationSecurity, Revoke-SPObjectSecuritySet-SPServiceApplicationSecurity를 참조하십시오.

    참고

    명령줄 관리 작업을 수행하는 경우 Windows PowerShell을 사용하는 것이 좋습니다. Stsadm 명령줄 도구는 더 이상 사용되지 않지만 이전 제품 버전과의 호환성을 지원하기 위해 포함됩니다.

See Also

Concepts

User Profile Service 응용 프로그램 관리 할당(SharePoint Server 2010)