2017-05-18 7 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スクリプトの下に実行されている
powershell "get-itemproperty HKLM:\SOFTWARE\Microsoft\InetStp\ | select setupstring,versionstring" 

enter image description here

About the .NET version(s) I have installed 私が手:

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

これは私の現在のIIS SourceGearの環境です:

enter image description here:あなたは下の写真で見ることができるように、私はEnabled 32-bits Appsすべて無効にしてい

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.

私は、アプリケーションプールはすべて同じに設定されています。 enter image description here

私は、次のようなエラーがあったが、それが修正されました - 詳細は以下を参照:

私はGoogleのクロム、 を使用して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:

私はread/writeread onlyからの機能の一部を変更するために必要な:handler mappingsmodules

前:

enter image description here

後:

enter image description here

エラーメッセージ使用している場合アプリケーション

これは、Vaultクライアントを使用して接続するとき、私は、現在取得していますエラーメッセージです:

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

問題を修正しました。

“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

と私の問題を解決しました:以下の質問から次に

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.

http://mathura/VaultService/VaultService.asmx に行くとき

私は次のエラーを得ていました。

、BEFORE:

enter image description here

AFTER:

enter image description here

関連する問題