Advertisement
raspbeguy

Untitled

Nov 30th, 2015
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 8.25 KB | None | 0 0
  1. ##############################################################################
  2. ###
  3. ### SERVER_URL is the URL of the web container on which OpenAM Server is
  4. ### deployed.
  5. ###
  6. ### DEPLOYMENT_URI is the OpenAM Server deployment URI.
  7. ###
  8. ### BASE_DIR is the configuration directory
  9. ###
  10. ### locale is the user locale.
  11. ###
  12. ### PLATFORM_LOCALE is is the locale of OpenAM Server.
  13. ###
  14. ### AM_ENC_KEY is the password encryption key.  In a multiserver installation,
  15. ### this parameter must have the same value as the other servers.  By default,
  16. ### AM_ENC_KEY is set to "" which means that OpenAM Server will generate a
  17. ### random password encryption key.
  18. ###
  19. ### ADMIN_PWD is the password for the default user, amAdmin. The password must
  20. ### be at least 8 characters in length. If this configuration will be part of
  21. ### an existing deployment, the password you enter must match that of the
  22. ### original deployment.
  23. ###
  24. ### AMLDAPUSERPASSWD is the password for default policy agent [UrlAccessAgent].
  25. ### The password must be at least 8 characters in length. If this configuration
  26. ### will be part of an existing deployment, the password you enter must match
  27. ### that of the original deployment.
  28. ###
  29. ### COOKIE_DOMAIN is the name of the trusted DNS domain that OpenAM Server
  30. ### returns to a browser when it grants a session ID to a user.
  31. ###
  32. #############################################################################
  33. SERVER_URL=http://openwis.example.com:8080
  34. DEPLOYMENT_URI=/openam
  35. BASE_DIR=/opt/openam
  36. locale=en_US
  37. PLATFORM_LOCALE=en_US
  38. AM_ENC_KEY=cAmeSY6ZoBI3A24yfZUdBHn5IsC746WcXs9X1DTMiZBSMTOw8b
  39. ADMIN_PWD=password
  40.  
  41. AMLDAPUSERPASSWD=webagent
  42. COOKIE_DOMAIN=.example.com
  43.  
  44.  
  45. ##############################################################################
  46. ###
  47. ### DATA_STORE is the type of configuration data store. Valid values are
  48. ### 'embedded' - OpenAM embedded OpenDJ server
  49. ### 'dirServer' - ForgeRock OpenDJ or Oracle Directory Server Enterprise Edition
  50. ### If 'dirServer' is specified and the configuration data store contains
  51. ### configuration of existing OpenAM Servers, this OpenAM Server will be
  52. ### added to the existing multi-server setup.
  53. ###
  54. ### DIRECTORY_SSL specifies if the configuration data store is using SSL.
  55. ### Valid values are
  56. ### 'SSL' - SSL
  57. ### 'SIMPLE' - none SSL
  58. ###
  59. ### DIRECTORY_SERVER is the host name of the configuration data store.
  60. ###
  61. ### DIRECTORY_PORT is the port on which the configuration data store is
  62. ### listening for connections.
  63. ###
  64. ### DIRECTORY_ADMIN_PORT is the admin port on which the configuration data
  65. ### store listens for administrative functions. This setting is only required
  66. ### if you are using the embedded OpenDJ, if you are using an external
  67. ### configuration store you can ignore this property
  68. ###
  69. ### DIRECTORY_JMX_PORT is the jmx port on which the configuration data
  70. ### store listens for JMX connections. This setting is only required
  71. ### if you are using the embedded OpenDJ, if you are using an external
  72. ### configuration store you can ignore this property
  73. ###
  74. ### ROOT_SUFFIX is the initial or root suffix of the configuration data store.
  75. ###
  76. ### DS_DIRMGRDN is the DN (distinguished name) of the directory manager,
  77. ### the user who has unrestricted access to the configuration data store.
  78. ###
  79. ### DS_DIRMGRPASSWD is the password for the directory manager of the
  80. ### configuration data store.
  81. ###
  82. #############################################################################
  83. DATA_STORE=embedded
  84. DIRECTORY_SSL=SIMPLE
  85. DIRECTORY_SERVER=openwis.example.com
  86. DIRECTORY_PORT=50389
  87. DIRECTORY_ADMIN_PORT=5444
  88. DIRECTORY_JMX_PORT=1689
  89. ROOT_SUFFIX=dc=openam,dc=forgerock,dc=org
  90. DS_DIRMGRDN=cn=Directory Manager
  91. DS_DIRMGRPASSWD=password
  92.  
  93.  
  94. ##############################################################################
  95. ###
  96. ### DS_EMB_REPL_FLAG is the flag for enabling configuration data store in
  97. ### multi-server setup. This flag is valid only if DATA_STORE is set to
  98. ### 'embedded'. To enable this flag, the value needs to be 'embReplFlag'.
  99. ###
  100. ### DS_EMB_REPL_REPLPORT1 is replication port of the configuration data store
  101. ### of the new OpenAM Server.
  102. ###
  103. ### DS_EMB_REPL_HOST2 is the host name of the existing OpenAM Server.
  104. ###
  105. ### DS_EMB_REPL_PORT2 is no longer used as of OpenAM Snapshot 9.5
  106. ###
  107. ### DS_EMB_REPL_ADMINPORT2 is the listening admin port of the configuration
  108. ### data store of the existing OpenAM Server.
  109. ###
  110. ### DS_EMB_REPL_REPLPORT2 is replication port of the configuration
  111. ### data store of the existing OpenAM Server
  112. ###
  113. ### 'existingserverid' is the URL of the existing OpenAM Server.
  114. ### 'existingserverid' property should only be added to the
  115. ###    second instance of the multi server setup.
  116. ### 'existingserverid' should have the value of this format;
  117. ### http://FQDN of existing OpenAM Server:port of existing
  118. ###    OpenAM Server/<DEPLOYMENT_URI>
  119. ### eg.,
  120. ### http://server2.example.com:8080/openam
  121. ###
  122. ##############################################################################
  123. #DS_EMB_REPL_FLAG=embReplFlag
  124. #DS_EMB_REPL_REPLPORT1=58989
  125. #DS_EMB_REPL_HOST2=server2.example.com
  126. #DS_EMB_REPL_ADMINPORT2=4444
  127. #DS_EMB_REPL_REPLPORT2=50889
  128. #existingserverid=http://server1.example.com:8080/openam
  129.  
  130.  
  131. ##############################################################################
  132. ###
  133. ### The following properties will not be used in a multi-server setup.
  134. ###
  135. ### USERSTORE_TYPE is the type of user data store. Valid values are
  136. ###
  137. ### 'LDAPv3ForODSEE'  - Oracle Directory Server Enterprise Edition.
  138. ### 'LDAPv3ForAD'     - Active Directory Server with Host and Port.
  139. ### 'LDAPv3ForADDC'   - Active Directory with Domain Name.
  140. ### 'LDAPv3ForADAM'   - Active Directory Application Mode.
  141. ### 'LDAPv3ForOpenDS' - ForgeRock OpenDJ.
  142. ### 'LDAPv3ForTivoli' - IBM Tivoli Directory Server.
  143. ###
  144. ### If DATA_STORE is 'embedded', this property can be commented out or can be
  145. ### with no value. In this case, the configuration data store will be used as
  146. ### user data store. The remaining user data store properties will be ignored.
  147. ###
  148. ### USERSTORE_SSL specifies if the user data store is using SSL.
  149. ### Valid values are
  150. ### 'SSL' - SSL
  151. ### 'SIMPLE' - none SSL
  152. ###
  153. ### USERSTORE_DOMAINNAME is the Domain Name of the Active Directory
  154. ### user data store.
  155. ### If USERSTORE_TYPE is LDAPv3ForADDC, then USERSTORE_DOMAINNAME
  156. ### should be set to a valid Active Directory Domain Name value.
  157. ### If USERSTORE_TYPE is LDAPv3ForADDC, then USERSTORE_HOST,
  158. ### USERSTORE_PORT and USERSTORE_SUFFIX should not be set.
  159. ### These would be derived from the Active directory domain.
  160. ###
  161. ### Example for domain name and notes:
  162. ### A Domain name such as 'mspress.microsoft.com' will identify
  163. ### Active Directory domain controllers responsible for the domain,
  164. ### so any client with DNS access can locate a domain controller.
  165. ### Active Directory clients can use DNS resolution to locate any
  166. ### number of services.
  167. ### Reference : http://technet.microsoft.com/en-us/library/bb742424.aspx#XSLTsection126121120120
  168. ###
  169. ### USERSTORE_HOST is the host name of the user data store.
  170. ###
  171. ### USERSTORE_PORT is the port on which the user data store is listening for
  172. ### connections.
  173. ###
  174. ### USERSTORE_SUFFIX is the initial or root suffix of the user data store.
  175. ###
  176. ### USERSTORE_MGRDN is the DN (distinguished name) of the directory manager,
  177. ### the user who has unrestricted access to the user data store.
  178. ###
  179. ### USERSTORE_PASSWD  is the password for the directory manager of the user
  180. ### data store
  181. ##############################################################################
  182. USERSTORE_TYPE=LDAPv3ForOpenDS
  183. USERSTORE_SSL=SIMPLE
  184. USERSTORE_DOMAINNAME=example.com
  185. USERSTORE_HOST=127.0.0.1
  186. USERSTORE_PORT=1389
  187. USERSTORE_SUFFIX=dc=opensso,dc=java,dc=net
  188. USERSTORE_MGRDN=cn=Directory Manager
  189. USERSTORE_PASSWD=password
  190.  
  191.  
  192. ##############################################################################
  193. ###
  194. ### LB_SITE_NAME is the name of the site.
  195. ###
  196. ### LB_PRIMARY_URL is the load balancer URL.
  197. ###
  198. ### LB_SESSION_HA_SFO specifies whether session failover should be enabled in
  199. ### the site configuration. Set to "true" to enable SFO.
  200. ###
  201. ##############################################################################
  202. #LB_SITE_NAME=lb
  203. #LB_PRIMARY_URL=http://lb.example.com:80/openam
  204. #LB_SESSION_HA_SFO=false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement