Issues (& solutions) with Power BI Analysis Services Connector
4 januari 2016 2016-01-04 14:03Issues (& solutions) with Power BI Analysis Services Connector
Last couple of weeks, I tried to install the Power BI Analysis Services Connector, and ran into a few issues (and found some solutions). I thought it'd be good to share them, in case anyone runs into the same issues. So here's my story of installing Power BI Analysis Services connector - translated to a list of findings and solutions / workarounds. Read on!
As stated above, this is kind of the 'installation story' with Analysis Services Connector (formerly shipped as Data Management Gateway) at my current employer. Here are the issues we encountered:
- Service account is local by default (no way to change this during setup)
- The ASC (Analysis Services Connector) service is still called DMG (Data Management Gateway)
- Proxy functionality is broken (at least during setup / configuration)
- Setup wizard crashes after typing in Federated AD login
Not all issues are major (in fact, IMHO only one of them is: the lack of thorough proxy support), but all issues must be tackled before the Analysis Services Connector worked over here. Here's our story:
Service account is local (minor)
After having installed the ASC, the service is configured automatically using a local service account[ref]This is something we experienced already in the early preview of the DMG too, and is still the case[/ref]. In contrast to SQL Server, during setup you don't get the opportunity to change the service account.
At our company, non-domain accounts do not have network access. So although the setup offers to configure the gateway as soon as the setup is finished, in fact this is pretty useless in our situation: we first need to change the service account before being able to configure the gateway. With SQL Server you'd do this using the SQL Server Configuration Manager, with the ASC/DMG service this is not possible: you need to change this via the Windows Services dialog (services.msc) - which brings up our next chapter 🙂
The ASC service is still called DMG (minor)
When starting the Services dialog, suddenly it seemed I forgot to uninstall the old DMG. Strange, for as far as I could remember the ASC refused to install as long as the DMG was still installed. But no - the real case is that although the shipped product is now called ASC (and will be called Enterprise or Personal Gateway), the service running behind the scenes still is called 'Data Management Gateway':
So in order to change the account running the ASC[ref]Of course, when local accounts have internet access, you don't need to perform this step.[/ref], change the user running the DMG service. Remember to restart the service after changing the account!
Proxy not functioning properly for the setup wizard (major)
Still, with a valid domain account in place, the wizard kept displaying the next window:
After investigating our firewall logs, we could see the configuration wizard ignored the proxy settings we set up in Windows. We tried to set the proxy on several places:
- Logged in as the Power BI service-account, we changed Windows' proxy settings
- We added the following code to all existing .config files in the ASC folders[ref]if you ever set 'myclientsinternetaddress' using an IP address in any .config-file, please remember to include the 'http://' / 'https://' part - so myclientsinternetaddress can be http://127.0.0.1, but not 'just' 127.0.0.1 - which is something you might forget when you've just typed in the proxy settings in the Windows dialog :)[/ref]:
<system.net><defaultProxy useDefaultCredentials="true"> <proxy proxyaddress="myclientsinternetaddress:8080" bypassonlocal="true" /> </defaultProxy> </system.net>
All this to no avail - ASC keeps trying (at least during the 'login' step of the config wizard) to navigate to the preferred DNS Server, without contacting the proxy first. We resorted to changing the preferred DNS server to the proxy server's address[ref]This means that internal addresses cannot be reached as long as this setting is active - which luckily isn't a problem for the ASC[/ref], followed by a 'ipconfig /flushdns'.
Setup wizard crashes after typing Federated AD account (minor)
The next issue that appeared was an error message after typing in my company Power BI account (but before typing in my password) - it looked like this (translations added by me):
After some research I read this post in the Power BI forums, which described an issue that looked very much like ours. In short: the cause of this error is the use of Federated AD with Azure, with only Windows authentication supported as authentication method. It turns out the setup wizard doesn't support this (yet?), so we had to change our authentication policy and enable the Forms Authentication too:
- On the ADFS server, open the ADFS snap-in, click Authentication Policies from the left tree navigation.
- In the Authentication Policies section on the right panel, choose Edit Global Primary Authentication.
- Under the Intranet section, check the Forms Authentication option.
- Save the changes.
After this, login was not a problem anymore.
Time out when registering gateway
Lastly (when the wizard's almost finished) the following error message appeared:
In online documentation of the Personal Gateway something is mentioned about machines with only 1 processor - but our VM has two cores.
The solution for us was to change 'diahost.exe.config' in a way that the proxy was enforced for this process (too). In order to do that, change the following line in diahost.exe.config[ref]Yes, I tried this already at the 'login' stage, but when trying out settings you always reset them after they turn out not to have worked 😀 [/ref]
<system.net><defaultProxy useDefaultCredentials="true" />
into:
<system.net><defaultProxy useDefaultCredentials="true"> <proxy proxyaddress="myclientsinternetaddress:8080" bypassonlocal="true" /> </defaultProxy> </system.net>
Don't forget to restart the DMG service after this change!
Success!
After these steps, the wizard continued the usual way.
Two Last Things to keep in mind
- Currently you don't see the ASC inside the 'Gateway Management' section in Power BI. This is somewhat confusing, but I think you'll see only the Personal & Enterprise Gateways here - in my case, I still see the following screen although I have already three Analysis Services Connectors configured:
You cannot 'just' connect to your SSAS server from within Power BI through the ASC.You can connect to your SSAS models in two ways:- Create an offline report (for example in the Power BI Desktop) and connect that to your local SSAS server. Once you upload that report to Power BI, you can remain working on the local SSAS instance within the online Power BI environment.
- Plug into the SSAS model directly via the online Power BI environment. Choose Get Data > Databases > SSAS (Thanks @DaveRuijter for pointing out!)
Conclusion
We had to figure several things out about the ASC. Luckily we managed - with the help of the community, docs and common knowledge about networking - to get them out of the way. Looking forward to a time when everything just works - until then, we'll blog about our solutions 😉 .
Comment (1)
Experiences with Power BI Enterprise Gateway | @MSBIBLog
[…] few weeks ago, I blogged about my experiences with the Analysis Services Connector. Because the Enterprise Gateway was still in preview back then, I didn't want to use that in […]
Comments are closed.