Please check following guide about the ports range for HANA tenant database:
You can also determine the ports used by the tenant, by executing following script (execute from tenant database):
SELECT SERVICE_NAME, PORT, SQL_PORT, (PORT + 2) HTTP_PORT FROM SYS.M_SERVICES WHERE ((SERVICE_NAME='indexserver' and COORDINATOR_TYPE= 'MASTER') or (SERVICE_NAME='xsengine'))
This sounds a lot like the configuration issue that was faced by users of HANA Express Edition on Google Cloud.
It boils down to setting a global.ini parameter for mapping 'localhost' to the desired IP address.
ALTER SYSTEM ALTER CONFIGURATION (‘global.ini’, ‘SYSTEM’) SET (‘public_hostname_resolution’, ‘map_localhost’) = ‘xx.xx.xx.xx’ WITH RECONFIGURE;
I've attached 2 screenshots for better understanding (I had to mask the real info due to well known reasons)
Add comment