Hana and SAP on the same node, 2 Nodes configuration for HA

Dear Comunity,
we have following Problem, we have a two nodes configuration,
we have SAP Hana running with SAP Hana Replication between the two nodes
and SAP ASCS and PAS installed on the first node (No ERS)

We can move SAP from one nodeA to nodeB without any problems, this works fine, and also HANA Take over works fine.

Our problem is following:
When we put the Primary Node in Standby first of all the PAS and ASCS should be stopped and then the HANA take over should be started and in our case all runs in parallel,
stop of PAS and take over.
We need some constraint, colocation, tried some ones but without success.
Does any one of you the same configuration, or one similar?
or some examples of a configuration where SAP is installed on the same node with HANA?
or just some recommendations how to configure this constraint?

Regards.

Manuel

[QUOTE=ch061441;59259]Dear Comunity,
we have following Problem, we have a two nodes configuration,
we have SAP Hana running with SAP Hana Replication between the two nodes
and SAP ASCS and PAS installed on the first node (No ERS)

We can move SAP from one nodeA to nodeB without any problems, this works fine, and also HANA Take over works fine.

Our problem is following:
When we put the Primary Node in Standby first of all the PAS and ASCS should be stopped and then the HANA take over should be started and in our case all runs in parallel,
stop of PAS and take over.
We need some constraint, colocation, tried some ones but without success.
Does any one of you the same configuration, or one similar?
or some examples of a configuration where SAP is installed on the same node with HANA?
or just some recommendations how to configure this constraint?

Regards.

Manuel[/QUOTE]

You will need an order constraint.
The help is viewable via:

crm configure  order --help[/code]

In your case the orders should be something like this:
[code]crm configure order start-HANA-before-PAS Mandatory: SAPHanaController:promote then PAS:start
crm configure order stop-PAS-before-HANA Mandatory: PAS:stop then SAPHanaController:demote[/code]

I assume you are using 2-node  +  MajorityMaker. (If not -> you are in deep trouble !!!)
If that's true, you can consider to keep both  Master  resource SAPHanaController and the PAS together.
Then you will need  a collocation rule like this one.
[code]crm configure colocation PAS-with-HANA inf: PAS:start SAPHanaController:promote

Note sometimes failiure of only 1 resource is possible (loss of shared storage for PAS, crash of master HANA,etc), so try as many failiure scenarious before putting the cluster in production ! Setting a node into standby is not enough (it’s OK to test ordering), so either invoke a crash of one of the cluster components, block communication via the firewall, or close the network ports to one of the nodes.
It’s always better to find a flaw and correct it before the system is in production, than to fight design issues later.

P.S: I hope you have checked the following article

Hello strahil-nikolov-dxc,
thx a lot for your hints,
we did it following your recommendations and it is working now, thx.