User Access Control

As an administrator, you can control the users' access to domains and agents in the Monitoring Console, by specifying the access rights in a configuration file.

The configuration file is stored at the following location on the LogLogic LMI appliance:

/loglogic/logu/hawkconsolenode/conf/monitoring_console_user_access_list.cfg

In this file, you must specify the access rights for each user on a separate line. Similarly, if the same user has multiple access rights, then you must specify each access right on a separate line. The access rights must be specified in the following format:

<username> <access_rights>

When specifying the access rights, consider the following points:

For sample scenarios and the corresponding entries in the configuration file, see the Examples section.

    Procedure
  1. Edit the monitoring_console_user_access_list.cfg file to add the permissions and restrictions.
  2. Restart Monitoring Console by running the following command:
    mtask -s engine_lldaemon restart

Examples

Consider that you want to configure the access control scenarios for admin, user-1, and user-2. The corresponding entries for those access rights are listed in the following table.

User Required access rights Entry in the .cfg file
admin Allow access to all domains
admin   *
user-1 Allow access to agent-1 in lmi_domain with dns-1, and to all agents in lmi_domain-2
user-1  "agent-1 dns-1 lmi_domain"
user-1  "* * lmi_domain-2"
user-2 Allow access to agent-2 of any domain, but no access to the lmi_domain-2 domain
user-2  agent-2
!user-2 "* * lmi_domain-2"

Therefore, make the following entries in the monitoring_console_user_access_list.cfg file:

admin   *
user-1  "agent-1 dns-1 lmi_domain"
user-1  "* * lmi_domain-2"
user-2  agent-2
!user-2 "* * lmi_domain-2"

For detailed information about user-based access control, see TIBCO® Operational Intelligence Hawk® RedTail 7.1.0 Installation, Configuration, and Administration.

Limitations