Guest User

Untitled

a guest
Aug 15th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <property>
  2. <name>oozie.service.StoreService.create.db.schema</name>
  3. <value>false</value>
  4. <description>
  5. Creates Oozie DB.
  6.  
  7. If set to true, it creates the DB schema if it does not exist. If the DB schema exists is a NOP.
  8. If set to false, it does not create the DB schema. If the DB schema does not exist it fails start up.
  9. </description>
  10. </property>
  11.  
  12. <property>
  13. <name>oozie.service.StoreService.jdbc.driver</name>
  14. <value>com.mysql.jdbc.Driver</value>
  15. <description>
  16. JDBC driver class.
  17. </description>
  18. </property>
  19.  
  20. <property>
  21. <name>oozie.service.StoreService.jdbc.url</name>
  22. <value>jdbc:mysql:localhost:3306/${oozie.db.schema.name}</value>
  23. <description>
  24. JDBC URL.
  25. </description>
  26. </property>
  27.  
  28. <property>
  29. <name>oozie.service.StoreService.jdbc.username</name>
  30. <value>oozie</value>
  31. <description>
  32. DB user name.
  33. </description>
  34. </property>
  35.  
  36. <property>
  37. <name>oozie.service.StoreService.jdbc.password</name>
  38. <value>oozie</value>
  39. <description>
  40. DB user password.
  41.  
  42. IMPORTANT: if password is emtpy leave a 1 space string, the service trims the value,
  43. if empty Configuration assumes it is NULL.
  44.  
  45. IMPORTANT: if the StoreServicePasswordService is active, it will reset this value with the value given in
  46. the console.
  47. </description>
  48. </property
Add Comment
Please, Sign In to add comment