Register a privileged user (an administrator) to be specified when installing Resource Orchestrator to the directory service.
Use the following object classes.
Directory Service | Object Class | Attribute used for the Login user ID |
---|---|---|
OpenDS | inetOrgPerson | uid or cn |
Active Directory | user | samAccountName or cn |
When using OpenDS, the user ID (uid attribute) must be unique in the directory service.
When using the OpenDS provided with ServerView Operations Manager, a predefined user exists when installing ServerView Operations Manager.
For details on predefined user information, refer to the following ServerView Operations Manager manual.
"ServerView user management with OpenDS" in "ServerView Suite User Management in ServerView"
An example of how to register a privileged user of Resource Orchestrator in OpenDS is indicated below.
Create an ldif file.
dn: cn=manager,ou=users,dc=fujitsu,dc=com |
Use the OpenDS client function to register the ldif file created in 1. with the directory service.
Set the Java SE 6 path for the environment variable JAVA_HOME, before executing the ldapmodify command of OpenDS.
For details on the command, refer to the OpenDS documentation.
[Windows]
>"OpenDS_installation_folder\bat\ldapmodify.bat" -p Port_number -f ldif_file -D OpenDS_administrator_user_DN -w Password <RETURN> |
[Linux]
# "OpenDS_installation_folder/bin/ldapmodify" -p Port_number -f ldif_file -D OpenDS_administrator_user_DN -w Password <RETURN> |
SSL communications are not required when registering a user in OpenDS. The default value of the port number when not using SSL communications is "1473" in the OpenDS provided with ServerView Operations Manager.
For details on how to configure connection settings of the OpenDS provided with ServerView Operations Manager, refer to README and the manuals of "ServerView Suite User Management in ServerView".
Example
>"C:\Program Files\Fujitsu\ServerView Suite\opends\bat\ldapmodify.bat" -p 1473 -f manager.ldif -D "cn=Directory Manager" -w admin <RETURN> |