これまでは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"
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" }
}
}
}
これは私の現在のIIS SourceGearの環境です:
:あなたは下の写真で見ることができるように、私はEnabled 32-bits Apps
すべて無効にしてい
アプリケーションプール
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.
私は、アプリケーションプールはすべて同じに設定されています。
私は、次のようなエラーがあったが、それが修正されました - 詳細は以下を参照:
私は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".
This locked at parental level was fixed by doing the following:
私はread/write
にread only
からの機能の一部を変更するために必要な:handler mappings
とmodules
前:
後:
エラーメッセージ使用している場合アプリケーション
これは、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.
どのように私はこれをトラブルシューティングし、健康的なインストールに得ることができますか?