cancel
Showing results for 
Search instead for 
Did you mean: 

Hana Express Addition 2 SPS2 Installation on Personal Laptop

former_member435532
Participant
0 Kudos

Hello All,

I have been trying to install Hana Express Edition 2 SPS2 since some time but running into issues post installation.

I have followed all the videos on Hanaacademy and tried both server and server(+application) options on Vmware playstation 14. Installation goes fine. And I was able to use Webide, XS advanced and Hana DB using Eclipse Oxyzen. The issue comes after I restart my laptop. I normally do a HDB stop and then supending the virtual machine.

After restart, If I do a HDB start, and try to connect to DB using Eclipse. it gives me error saying "SAPcontrol request failed?

Is it something to do with my laptop configuration, can someone please help here?

former_member435532
Participant
0 Kudos

Hello Denys and Frank,

Thanks for your inputs last time but I am now facing issue with (Server+ app) installation, would appreciate if you can help.

here is the link to my post on SCN.

https://answers.sap.com/questions/472429/hana-expressvmapp-issue.html#

Regards/AJ

Accepted Solutions (1)

Accepted Solutions (1)

architectSAP
Active Contributor
0 Kudos

Hello Ajay,

This sounds as if the sapstartsrv does not like to be suspended. Try to shutdown your SAP HANA, express edition instead:

sudo shutdown -h now

Or try to reboot after resuming it:

sudo shutdown -r now

Best regards

Frank

Answers (2)

Answers (2)

dvankempen
Product and Topic Expert
Product and Topic Expert

Hi Ajay,

Frank is right.

You are doing a great job by first shutting down the SAP HANA instance stop before suspending the VM. However, after suspending the instance, you need to just shutdown the OS as well. There is no benefit in just suspending the VM as the OS part of the boot is really quick.

The sapcontrol architecture comes from the SAP Netweaver AS ABAP technology, which was designed and developed long before virtualization (at least in the current usage).

If you are interested in how sapcontrol and sapinit work, I posted a blog on this topic not so long ago:

https://blogs.sap.com/2017/10/06/sap-hana-under-the-hood-sapinit-and-sapstartsrv-by-the-sap-hana-aca...

==

You could put the lines in a script in the hxeadm home directory, e.g.

$ vi stopVM

#!/bin/bash
# Shutdown SAP HANA, express edition the proper way
# run as hxeadm
HDB stop
sudo shutdown -h now

$ chmod 755 stopVM

Regards,

Denys / SAP HANA Academy

Subscribe to our YouTube Channel
Join us on LinkedIn
Follow us on Twitter
Github code samples

Facebook

former_member435532
Participant
0 Kudos

Thanks a ton, Frank & Denys. It worked with "Sudo shutdown -h now" and later a simple "HDB start" for my server only installation.