Register the user information that will be required for the Systemwalker Runbook Automation Management Server in the authentication infrastructure that is currently used.
The LDIF files that are required to register the user information are stored as follows:
[Windows]
[DVD-ROM mount point]\tool\inst\ldif\swrba_sample_swrbasch.ldif |
[Linux]
[DVD-ROM mount point]/tool/inst/ldif/swrba_sample_swrbasch.ldif |
This sample assumes the LDAP configuration shown below.
Edit the files according to the LDAP environment that will be used for operations. The password must also be changed.
Public directory | ou=interstage,o=fujitsu,dc=com |
Organizational unit that stores the users | ou=User |
Organizational unit that stores the groups | ou=Group |
User for Schedule Startup | swrbasch |
Password of User for Schedule Startup | systemwalker#2 |
Use the ldapmodify command to register the LDIF file definition information in LDAP.
[Windows]
ldapmodify -H ldap://<Interstage Directory Service host name>:<port number> -D "<Administrator DN>" -w <Administrator DN password> -a -f <edited LDIF file name> |
[Linux]
/opt/FJSVirepc/bin/ldapmodify -H ldap://<Interstage Directory Service host name>:<port number> -D "<Administrator DN>" -w <Administrator DN password> -a -f <edited LDIF file name> |
Example
Interstage Directory Service host name: hostname
Port number: 389
Administrator DN: cn=manager,ou=interstage,o=fujitsu,dc=com
Administrator DN password: password
Edited LDIF file name: rbauser.ldif
[Windows]
ldapmodify -H ldap://hostname:389 -D "cn=manager,ou=interstage,o=fujitsu,dc=com" -w password -a -f rbauser.ldif |
[Linux]
/opt/FJSVirepc/bin/ldapmodify -H ldap://hostname:389 -D "cn=manager,ou=interstage,o=fujitsu,dc=com" -w password -a -f rbauser.ldif |
Refer to "Interstage Directory Service Operation Command" in the "Interstage Application Server/Interstage Web Server Reference(Command)" for information on the ldapmodify command.