Skip to content

Latest commit

 

History

History
146 lines (76 loc) · 8.12 KB

using-platform-domains-a32d4cd.md

File metadata and controls

146 lines (76 loc) · 8.12 KB

Using Platform Domains

Using platform domains, you can configure the application network availability or authentication policy. You can achieve that by configuring the appropriate platform domain which will change the URL on which your application will be accessible.

Prerequisites

You have installed and configured the console client for the Neo environment. For more information, see Using the Console Client.

Context

Remember:

SAP Business Technology Platform, Neo environment will sunset on December 31, 2028, subject to terms of customer or partner contracts.

For more information, see SAP Note 3351844.

Tip:

This documentation refers to SAP Business Technology Platform, Neo environment. If you are looking for documentation about other environments, see SAP Business Technology Platform ↗️.

The available platform domains are:

  • hana.ondemand.com - any application is accessible on this default domain after being deployed on the platform
  • cert.hana.ondemand.com - enables client certificate authentication
  • svc.hana.ondemand.com - provides access within the same region; for internal communication and not open on the Internet or other networks

You can configure the platform domains using the application-domains group of console client commands:

Context

Remember:

SAP Business Technology Platform, Neo environment will sunset on December 31, 2028, subject to terms of customer or partner contracts.

For more information, see SAP Note 3351844.

Tip:

This documentation refers to SAP Business Technology Platform, Neo environment. If you are looking for documentation about other environments, see SAP Business Technology Platform ↗️.

  1. Open the command prompt and navigate to the folder containing neo.bat/neo.sh(<SDK installation folder>/tools).

  2. Configure the platform domain you have chosen by executing the add-platform-domain command.

    neo add-platform-domain --account mysubaccount --application myapp --user myuser --host hana.ondemand.com --platform-domain cert.hana.ondemand.com
    

    As a result, the specified application will be accessible on cert.hana.ondemand.com and on the default hana.ondemand.com domain.

Context

Remember:

SAP Business Technology Platform, Neo environment will sunset on December 31, 2028, subject to terms of customer or partner contracts.

For more information, see SAP Note 3351844.

Tip:

This documentation refers to SAP Business Technology Platform, Neo environment. If you are looking for documentation about other environments, see SAP Business Technology Platform ↗️.

  1. To make sure the new platform domain is configured, execute the list-application-domains command:

    neo list-application-domains --account mysubaccount --application myapp --user myuser --host hana.ondemand.com
    
  2. Check if the returned list of domains contains the platform domain you set.

Context

Remember:

SAP Business Technology Platform, Neo environment will sunset on December 31, 2028, subject to terms of customer or partner contracts.

For more information, see SAP Note 3351844.

Tip:

This documentation refers to SAP Business Technology Platform, Neo environment. If you are looking for documentation about other environments, see SAP Business Technology Platform ↗️.

  1. When you no longer want the application to be accessible on the configured platform domain, remove it by executing the remove-platform-domain command:

    neo remove-platform-domain --account mysubaccount --application myapp --user myuser --host hana.ondemand.com --platform-domain cert.hana.ondemand.com
    
  2. Repeat the step for each platform domain you want to remove.

Related Information

add-platform-domain

list-application-domains

remove-platform-domain