SAP HANA System
How to Configure SAP HANA System Monitoring
1. In the IT-Conductor main menu, navigate to Dashboards > Administrator.

2. In the Administrator dashboard, locate the HANA Systems panel and click to start adding a system to be monitored.

3. In the Create New HANA System wizard, fill out all the necessary information. Once completed, click to add the system.

4. A pop-up message will confirm that the SAP HANA DB has been successfully added. Click OK to dismiss and proceed to configure the SAP HANA user account to be used for monitoring.

5. Provide the account information in the wizard and click to complete the configuration.

6. A pop-up message will confirm that the HANA account has been created successfully. Click OK to complete the process.

7. The newly added system will appear in the SAP HANA System panel.

8. The system will show up in the Service Grid within 5-15 minutes.

IT-Conductor SAP HANA Authorizations Requirements
For each HANA database, including the SYSTEMDB that will be monitored, create a monitoring user with the following SQL:
create user <Monitoring user> <Monitoring User Password> no force_first_password_change;
alter user <Monitoring user> DISABLE PASSWORD LIFETIME;
grant MONITORING to <Monitoring user>

ALTER USER <user> DISABLE PASSWORD LIFETIME
To verify it has a lifetime password:
SELECT USER_NAME, PASSWORD_CHANGE_TIME FROM USERS WHERE USER_NAME = '<user>';
It should have an empty PASSWORD_CHANGE_TIME value

Monitoring Role (extract from Security Guide) - This role contains privileges for full read-only access to all metadata, the current system status in the system and monitoring views, and the data collected by the statistics server.
To list (SQL) port numbers for SYSTEMDB and Tenant DBs used in registering.
select * from sys_databases.m_services
where sql_port <> 0;

Last updated