Forum Discussion
marcofrom1A
4 years agoRegular Visitor
data gateway installation failed
hello, I'm installing "on-premise data gateway" version 3000.118.2.0 on a windows server 2019 standard and with dotnet 4.8.3761.0 I'm running the installation package as administrator and at the v...
BA_Pete
4 years agoSuper User
Hi marcofrom1A ,
The only thing I can see from the error log that may be an issue is this:
"If you are binding to .NET 4 or greater add useLegacyV2RuntimeActivationPolicy=true to the <startup> element."
In my own experience, I found setting up gateways to be a particularly finicky process, with lots of messing with the config files below to ensure they accounted for proxy servers etc.:
- EnterpriseGatewayConfigurator.exe
// This section may need to be updated:
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy
autoDetect="false"
proxyaddress="yourProxyServerName:relevantPort" //add proxy server name and port
bypassonlocal="false"
usesystemdefault="true"
/>
</defaultProxy>
- Microsoft.Mashup.Container.NetFX45.exe
// This may need to be updated:
<configuration>
<system.net>
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy proxyaddress="yourProxyServerName:relevantPort" bypassonlocal="true" /> //add proxyserver:port here
</defaultProxy>
</system.net>
</configuration>
- Microsoft.PowerBI.EnterpriseGateway.exe
// This section may need to be updated:
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy
autoDetect="false"
proxyaddress="yourProxyServerName:relevantPort" //add proxyserver:port here
bypassonlocal="false"
usesystemdefault="true"
/>
</defaultProxy>
Other than that, I'm afraid not many people on here speak 'error log', so you may need to raise with MS Support.
Pete