Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.76 KB | None | 0 0
  1. #################### RHQ Storage Configuration Properties ####################
  2.  
  3. #############################################################################
  4. # Storage Node Installation Options
  5. #
  6. # The following settings are all OPTIONAL. Defaults are described below for
  7. # each property.
  8. #############################################################################
  9.  
  10. #############################################################################
  11. # Data Directory Settings
  12. # -----------------
  13. # The RHQ_HOME directory as used below is the parent directory
  14. # of the RHQ server installation. It is recommended that RHQ be installed
  15. # under an umbrella "rhq" directory. For example, if using a home directory
  16. # of /opt/rhq then the default installation structure would be:
  17. # /opt/rhq
  18. # /opt/rhq/rhq-server-RHQ-VERSION
  19. # /opt/rhq/rhq-server-RHQ-VERSION/rhq-storage
  20. # /opt/rhq/rhq-agent
  21. # /opt/rhq/rhq-data/
  22. # /opt/rhq/rhq-data/storage/commitlog
  23. # /opt/rhq/rhq-data/storage/data
  24. # /opt/rhq/rhq-data/storage/saved_caches
  25. #
  26. # IMPORTANT: Always use forward slashes in the directory path names, even
  27. # on Windows!
  28. #
  29. # IMPORTANT: If using non-default settings for the data, commitlog, and/or
  30. # saved-caches directories, each directory should be unique,
  31. # typically under a common parent.
  32. #
  33. # IMPORTANT: If relative paths are used, they are relative to the bin folder
  34. # of the storage node installation. The paths are NOT relative to
  35. # bin folder of the installer.
  36. #
  37. # rhq.storage.commitlog
  38. # The directory where the storage node keeps commit log files.
  39. # Defaults to: RHQ_HOME/rhq-data/storage/commitlog
  40. # rhq.storage.data
  41. # The directory where the storage node keeps data files.
  42. # Defaults to: RHQ_HOME/rhq-data/storage/data
  43. # rhq.storage.saved-caches
  44. # The directory where the storage node keeps saved cache files.
  45. # Defaults to: RHQ_HOME/rhq-data/storage/saved_caches
  46. #############################################################################
  47. #rhq.storage.commitlog=
  48. #rhq.storage.data=
  49. #rhq.storage.saved-caches=
  50.  
  51. #############################################################################
  52. # Heap/Memory Settings
  53. # -----------------
  54. #
  55. # rhq.storage.heap-size
  56. # The value to use for both the min and max heap. This value is
  57. # passed directly to the -Xms and -Xmx options of the Java
  58. # executable.
  59. # Defaults to 512M.
  60. # rhq.storage.heap-new-size
  61. # The value to use for the new generation of the heap. This
  62. # value is passed directly to the -Xmn option of the Java
  63. # executable.
  64. # Defaults to 128M.
  65. # rhq.storage.stack-size
  66. # The value to use for the thread stack size. This value is
  67. # passed directly to the -Xss option of the Java executable.
  68. # Defaults to 256k.
  69. #############################################################################
  70. #rhq.storage.heap-size=
  71. #rhq.storage.heap-new-size=
  72. #rhq.storage.stack-size=
  73.  
  74. #############################################################################
  75. # Port Settings
  76. # -----------------
  77. #
  78. # rhq.storage.cql-port
  79. # The port on which to listen for client requests.
  80. # Defaults to 9142.
  81. # rhq.storage.jmx-port
  82. # The port on which to listen for JMX connections.
  83. # Defaults to 7299.
  84. # rhq.storage.gossip-port
  85. # The port on which to listen for requests from other nodes.
  86. # Defaults to 7100.
  87. #############################################################################
  88. #rhq.storage.cql-port=
  89. #rhq.storage.jmx-port=
  90. #rhq.storage.gossip-port=
  91.  
  92. #############################################################################
  93. # Address/Host Settings
  94. # -----------------
  95. #
  96. # rhq.storage.hostname
  97. # The hostname or IP address on which the node will listen
  98. # for requests.
  99. # Defaults to this node's hostname.
  100. # rhq.storage.seeds
  101. # A comma-delimited list of hostnames or IP addresses that
  102. # serve as contact points. Nodes use this list to find each
  103. # other and to learn the cluster topology. It does not need
  104. # to specify all nodes in the cluster.
  105. # Defaults to this node's hostname.
  106. #############################################################################
  107. #rhq.storage.hostname=
  108. #rhq.storage.seeds=
  109.  
  110. #############################################################################
  111. # Advanced Settings
  112. # -----------------
  113. #
  114. # rhq.storage.verify-data-dirs-empty
  115. # If true then allow installation only when the data
  116. # directories are empty. Typically set true only in
  117. # development environments when it may be useful to
  118. # perform a clean installation while maintaining
  119. # existing data. Defaults to true.
  120. # Defaults to true.
  121. #############################################################################
  122. #rhq.storage.verify-data-dirs-empty=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement