cancel
Showing results for 
Search instead for 
Did you mean: 

Debugging server-side running on SAP BTP using SAP BAS

MikeB
Contributor
0 Kudos

I would like to debug a backend-side (Node.js) running on SAP BTP using SAP BAS.

I've tried to follow Set Up Remote Debugging to Diagnose CAP Applications (Node.js Stack) at Runtime Running on SAP BTP, ..., but I am stuck at the «Step 3: Connect to a Cloud Foundry Application Instance Using SSH»:

cf ssh-enabled myapp

where myapp is a name of the wanted app, I got from cf html5-info, but I get:

App 'myapp-html5-srv' not found.
FAILED.

How can I debug a server-side of the app from SAP BAS, running on SAP BTP?

View Entire Topic
gregorw
Active Contributor

With:

cf html5-info

you only get the deployed HTML5 apps. If you want to get the name of your deployed NodeJS backend you need to use:

cf apps
MikeB
Contributor
0 Kudos

Thanks, I'll check if now I can get a debug-access to the Node.js backend.