Ubuntu has removed support for XULRunner in repository, so MINT 14 will also not support XULRunner. Downloading older XULRunner versions didn't work either. Setting the -Dorg.eclipse.swt.browser.XULRunnerPath= in the hdbstudio.ini didn't work.
So as an final, but nice, solution I now run HANA Studio remotely over an ssh session.
Run SAP HANA Studio via a ssh session
- Do a ssh login on your HANA server and add a -X to the command line like the example below.
Replace <username> with a user on your SAP HANA server.
Replace <hostname> with the hostname of the SAP HANA server.
- run SAP HANA Studio with the command:
Code: Select all
/usr/sap/<SID>/hdbstudio/hdbstudio
- Make a launcher and combine the two commands like this
Code: Select all
ssh -X <username>@<hostname> /usr/sap/<SID>/hdbstudio/hdbstudio
and you will be able to start SAP HANA Studio on your server with one click.
Replace <SID> with the SAP ID of your SAP HANA server.
If you don't like the password pop-up, you could make a ssh auto login. Be aware that ssh auto login can be a security risk. How to
ssh auto login.