2017-05-18 1 views
1

나는 과거에 problems with SourceGear Vault installation을 가지고있었습니다.IIS 10에 SourceGear Vault를 설치하는 방법은 무엇입니까?

이제 다시 SourceGear Vault 클라이언트를 설치하는 것이 어렵다는 것을 알게되었습니다.

나는 다음과 같은 PowerShell을 서버와 클라이언트를 설치하는 명령을 사용한까지

이렇게 한 무엇 : 서버 설치가 다른 필요하다는 것을 주요 문제없이 계속

msiexec /i VaultProServer64_10_0_0_30736.msi 

msiexec /i VaultProClient_10_0_0_30736.msi 

위의 powershell을 Administrator으로 실행하십시오. 클라이언트 설치에 대해서도 유효합니다.

클라이언트 설치도 괜찮습니다. 문제는 IIS에 있습니다.

이 PowerShell을 IIS의 버전을 확인하는 방법은 다음과 같습니다

powershell "get-itemproperty HKLM:\SOFTWARE\Microsoft\InetStp\ | select setupstring,versionstring" 

enter image description here

About the .NET version(s) I have installed 가 PowerShell 스크립트 아래를 실행 내가 얻을 :

Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -recurse | 
Get-ItemProperty -name Version,Release -EA 0 | 
Where { $_.PSChildName -match '^(?!S)\p{L}'} | 
Select PSChildName, Version, Release, @{ 
    name="Product" 
    expression={ 
     switch -regex ($_.Release) { 
     "378389" { [Version]"4.5" } 
     "378675|378758" { [Version]"4.5.1" } 
     "379893" { [Version]"4.5.2" } 
     "393295|393297" { [Version]"4.6" } 
     "394254|394271" { [Version]"4.6.1" } 
     "394802|394806" { [Version]"4.6.2" } 
     "460798" { [Version]"4.7" } 
     {$_ -gt 460798} { [Version]"Undocumented 4.7 or higher, please update script" } 
     } 
    } 
} 

enter image description here

enter image description here :

In the IIS Manager, click on Application Pools. there are multiple pools for Vault. Check the Advanced Settings for each and look for "Enable 32-bit Apps." That should be set to False.

난 당신이 아래의 사진에서 볼 수 있듯이 Enabled 32-bits Apps 모든 장애인이

enter image description here

응용 프로그램 풀 :3210이 내 현재 IIS SourceGear 환경입니다

나는 응용 프로그램 풀이 있지만 모두 동일하게 설정됩니다.enter image description here

나는 다음과 같은 오류가 있었지만 지금은 고정 - 추가 정보를 원하시면 아래 참조 :

내가 구글 크롬, 나는 다음과 같은 오류 메시지가 얻을 사용하여 http://localhost/vaultservice/index.html로 이동 :

HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid.

Error Code 0x80070021

Config Error This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false".

enter image description here

This locked at parental level was fixed by doing the following:

,536,913 이전 handler mappingsmodules

: 63,210

나는 일부 기능을 read/write하는 read only에서 변경해야

enter image description here

후 :

enter image description here

오류 메시지 사용하는 경우 신청서,

이것은 볼트 클라이언트를 사용하여 연결할 때 내가 현재 무엇입니까 오류 메시지 :

Unable to connect to http://mathura/VaultService . No server was found at the specified URL. Please verify your network settings using the Options dialog under the Tools menu in the Vault GUI Client. Web Exception: The request failed with HTTP status 405: Method Not Allowed.

enter image description here

어떻게이 문제를 해결하고 건강한 설치 얻을 수 있습니까?

답변

0

문제가 해결되었습니다.

나는 다음과 같은 오류가 발생했다 http://mathura/VaultService/VaultService.asmx 에가는 :

The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.

그런 다음 아래 질문에서 내 문제를 해결

“The page you are requesting cannot be served because of the extension configuration.” error message

I had to check .NET Framework 4.5 Advanced Services > WCF Services > HTTP Activation

합니다.

전 :

enter image description here

AFTER :

enter image description here

관련 문제