Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

환경 : TFS - dual server 구성



직업이 이렇다 보니... 모든 구성환경에 대한 시행착오를 거치고 미리 알아두지 않으면 안되기 때문에. 결국 Dual Server 설정으로도 TFS 를 구성해서 사용하게 되었습니다.

"Single Server" 설정때와 별다른 특이한 점 없이 잘 구성이 되었는데요. 단 한가지, 레포트 관련한 기능을 네비게이션 하려고 할 때 다음과 같은 오류가 발생합니다.

--- 한글 ---
보고서를 처리하는 동안 오류가 발생했습니다. (rsProcessingAborted)
데이터 원본 'TfsOlapReportDS'에 대한 사용자를 가장할 수 없습니다. (rsErrorImpersonatingUser)
로그온하지 못했습니다. (rsLogonFailed)
이 오류에 대한 자세한 내용을 보려면 로컬 서버 컴퓨터의 보고서 서버를 탐색하거나 원격 오류를 활성화하십시오.


--- 영문 ---
An error has occurred during report processing. (rsProcessingAborted) 
Cannot impersonate user for data source 'TfsOlapReportDS'. (rsErrorImpersonatingUser) 
Logon failed. (rsLogonFailed) 
For more information about this error navigate to the report server on the local server machine, 
or enable remote errors 

낯익은 오류죠. 해당 Application-Tier 서버에서 "localhost" 로 접근을 하게 되면 다음과 같은 부가 오류들이 함께 나타납니다.

Logon failure: the user has not been 
granted the requested logon type at this
computer. (Exception from HRESULT: 0x80070569)

원인은 간단합니다. "Rob Caron" 이 그의 블로그에서 설명하고 있습니다.
Team Foundation Server on a Domain Controller
; http://blogs.gotdotnet.com/robcaron/archive/2005/10/05/477565.aspx

아마도, "Rob Caron" 의 글을 읽지 않고 Google 검색을 해보신 분들이라면, Reports 서비스에 대해 할당된 도메인 계정 - 예를 들어, (도메인)\TFSReports - 을 Data-tier 컴퓨터의 로컬 "Administrators" 그룹에 가입시키셨을 텐데요.

이젠 그러지 마시고. ^^
"Rob Caron" 이 지시한데로 해당 계정에 대해서 "SeInteractiveLogonRight" 특권 권한만을 조정해 주는 것도 좋겠지요.

간략하게 정리해 보면, 그 문제를 해결하기 위해 다음과 같은 2가지 방법을 사용할 수 있습니다.

1. "Windows Server 2003 Resource Kit Tools" 에 포함되어 있는 ntrights.exe 를 사용하여 레포트 구동 계정에 "SeInteractiveLogonRight" 특권 부여.
   ㄱ. Resource Kit 이 설치 되어 있지 않다면, 다음의 URL 에 다운로드 받으십시오.
http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&displaylang=en

   ㄴ. 다음과 같이 command 창에서 실행. (예를 들어, 계정명이 "TFSReports" 라고 가정)
C:\> ntrights -u TFSReports +r SeInteractiveLogonRight

2. Active Directory 서버에서 "도메인 보안 정책"을 설정.
   ㄱ. AD 서버에서 "시작" / "관리 도구" / "도메인 보안 정책" MMC 콘솔을 실행

   ㄴ. 다음과 같이 "로컬 로그온 허용" 항목을 선택해서, "TFSReports" 계정을 포함시켜 줍니다.

특권 조정

   ㄷ. AD 가 바로 적용 안되는 것은 아시죠? ^^ 이거 바로 적용되게 하는 방법이 있다고 하던데, 저는 잘 모르겠습니다. 혹시 아시는 분은 댓글 좀 달아주십시오. 일단은, TFS 머신을 재부팅 하는 것으로 바로(?) 적용되게 했습니다.






[최초 등록일: ]
[최종 수정일: 6/20/2006]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2015-08-07 02시49분
[이성준] 대상 서버의 명령프롬프트에서 gpupate /force를 입력하시면 상기 정책이 적용됩니다.
[guest]

1  2  3  4  5  [6]  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13858정성태1/8/20256707개발 환경 구성: 738. PowerShell - 원격 호출 시 "powershell.exe"가 아닌 "pwsh.exe" 환경으로 명령어를 실행하는 방법
13857정성태1/7/20256904C/C++: 187. Golang - 콘솔 응용 프로그램을 Linux 데몬 서비스를 지원하도록 변경파일 다운로드1
13856정성태1/6/20255138디버깅 기술: 214. Windbg - syscall 단계까지의 Win32 API 호출 (예: Sleep)
13855정성태12/28/20247454오류 유형: 941. Golang - os.StartProcess() 사용 시 오류 정리
13854정성태12/27/20247241C/C++: 186. Golang - 콘솔 응용 프로그램을 NT 서비스를 지원하도록 변경파일 다운로드1
13853정성태12/26/20245723디버깅 기술: 213. Windbg - swapgs 명령어와 (Ring 0 커널 모드의) FS, GS Segment 레지스터
13852정성태12/25/20247335디버깅 기술: 212. Windbg - (Ring 3 사용자 모드의) FS, GS Segment 레지스터파일 다운로드1
13851정성태12/23/20245994디버깅 기술: 211. Windbg - 커널 모드 디버깅 상태에서 사용자 프로그램을 디버깅하는 방법
13850정성태12/23/20247658오류 유형: 940. "Application Information" 서비스를 중지한 경우, "This file does not have an app associated with it for performing this action."
13849정성태12/20/20247595디버깅 기술: 210. Windbg - 논리(가상) 주소를 Segmentation을 거쳐 선형 주소로 변경
13848정성태12/18/20246900디버깅 기술: 209. Windbg로 알아보는 Prototype PTE파일 다운로드2
13847정성태12/18/20246756오류 유형: 939. golang - 빌드 시 "unknown directive: toolchain" 오류 빌드 시 이런 오류가 발생한다면?
13846정성태12/17/20247611디버깅 기술: 208. Windbg로 알아보는 Trans/Soft PTE와 2가지 Page Fault 유형파일 다운로드1
13845정성태12/16/20245832디버깅 기술: 207. Windbg로 알아보는 PTE (_MMPTE)
13844정성태12/14/20248624디버깅 기술: 206. Windbg로 알아보는 PFN (_MMPFN)파일 다운로드1
13843정성태12/13/20246136오류 유형: 938. Docker container 내에서 빌드 시 error MSB3021: Unable to copy file "..." to "...". Access to the path '...' is denied.
13842정성태12/12/20246288디버깅 기술: 205. Windbg - KPCR, KPRCB
13841정성태12/11/20247191오류 유형: 937. error MSB4044: The "ValidateValidArchitecture" task was not given a value for the required parameter "RemoteTarget"
13840정성태12/11/20246175오류 유형: 936. msbuild - Your project file doesn't list 'win' as a "RuntimeIdentifier"
13839정성태12/11/20247581오류 유형: 936. msbuild - error CS1617: Invalid option '12.0' for /langversion. Use '/langversion:?' to list supported values.
13838정성태12/4/20247097오류 유형: 935. Windbg - Breakpoint 0's offset expression evaluation failed.
13837정성태12/3/20248052디버깅 기술: 204. Windbg - 윈도우 핸들 테이블 (3) - Windows 10 이상인 경우
13836정성태12/3/20246014디버깅 기술: 203. Windbg - x64 가상 주소를 물리 주소로 변환 (페이지 크기가 2MB인 경우)
13835정성태12/2/20247979오류 유형: 934. Azure - rm: cannot remove '...': Directory not empty
13834정성태11/29/20248029Windows: 275. C# - CUI 애플리케이션과 Console 윈도우 (Windows 10 미만의 Classic Console 모드인 경우) [1]파일 다운로드1
13833정성태11/29/20247320개발 환경 구성: 737. Azure Web App에서 Scale-out으로 늘어난 리눅스 인스턴스에 SSH 접속하는 방법
1  2  3  4  5  [6]  7  8  9  10  11  12  13  14  15  ...