UsingConfigManager.xml 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
  4. <book xml:base="../">
  5. <bookinfo>
  6. <title>HPCC Configuration Manager</title>
  7. <mediaobject>
  8. <imageobject>
  9. <imagedata fileref="images/redswooshWithLogo3.jpg" />
  10. </imageobject>
  11. </mediaobject>
  12. <author>
  13. <surname>Boca Raton Documentation Team</surname>
  14. </author>
  15. <legalnotice>
  16. <para>We welcome your comments and feedback about this document via
  17. email to <email>docfeedback@hpccsystems.com</email></para>
  18. <para>Please include <emphasis role="bold">Documentation
  19. Feedback</emphasis> in the subject line and reference the document name,
  20. page numbers, and current Version Number in the text of the
  21. message.</para>
  22. <para>LexisNexis and the Knowledge Burst logo are registered trademarks
  23. of Reed Elsevier Properties Inc., used under license.</para>
  24. <para>HPCC Systems<superscript>®</superscript> is a registered trademark
  25. of LexisNexis Risk Data Management Inc.</para>
  26. <para>Other products, logos, and services may be trademarks or
  27. registered trademarks of their respective companies.</para>
  28. <para>All names and example data used in this manual are fictitious. Any
  29. similarity to actual persons, living or dead, is purely
  30. coincidental.</para>
  31. <para></para>
  32. </legalnotice>
  33. <xi:include href="common/Version.xml" xpointer="FooterInfo"
  34. xmlns:xi="http://www.w3.org/2001/XInclude" />
  35. <xi:include href="common/Version.xml" xpointer="DateVer"
  36. xmlns:xi="http://www.w3.org/2001/XInclude" />
  37. <corpname>HPCC Systems<superscript>®</superscript></corpname>
  38. <xi:include href="common/Version.xml" xpointer="Copyright"
  39. xmlns:xi="http://www.w3.org/2001/XInclude" />
  40. <mediaobject role="logo">
  41. <imageobject>
  42. <imagedata fileref="images/LN_Rightjustified.jpg" />
  43. </imageobject>
  44. </mediaobject>
  45. </bookinfo>
  46. <chapter id="Buildin-HPCC-from-Source">
  47. <title>Using Configuration Manager</title>
  48. <para>Configuration Manager is the utility with which we configure the
  49. HPCC platform. The HPCC platform's configuration is stored in an XML file
  50. named <emphasis role="bold">environment.xml</emphasis>. When you install a
  51. package, a default single-node environment.xml is generated. After that,
  52. you can use the Configuration Manager to modify it and add nodes and
  53. configure components.</para>
  54. <para>The Configuration Manager Wizard creates a similar file, but after
  55. it is generated, you must rename it and put it into place on each
  56. node.</para>
  57. <para>Configuration Manager also offers an <emphasis role="bold">Advanced
  58. View</emphasis> which allows you to add instances of components or change
  59. the default settings for components. Even if you plane to use Advanced
  60. View, it is a good idea to start with a wizard generated configuration and
  61. use Advanced View to finish it.</para>
  62. <para>This document will guide you through configuring an HPCC environment
  63. using the Configuration Manager.</para>
  64. <sect1 id="configuring-a-multi-node-system">
  65. <title>Running the Configuration Manager</title>
  66. <para>This document will guide you through configuring an HPCC
  67. environment using the Configuration Manager.</para>
  68. <para>The HPCC package should already be installed on ALL nodes.</para>
  69. <para>You can use any tool or shell script you choose.</para>
  70. <orderedlist>
  71. <listitem>
  72. <para>SSH to a node in your environment and login as a user with
  73. sudo privileges. We would suggest that it would be the first node,
  74. and that it is a support node, however that is up to your
  75. discretion.</para>
  76. </listitem>
  77. <listitem>
  78. <para>Start the Configuration Manager service on the node (again we
  79. would suggest that it should be on a support node, and further that
  80. you use the same node to start the Configuration Manager every time,
  81. but this is also entirely up to you).</para>
  82. <programlisting>sudo /opt/HPCCSystems/sbin/configmgr</programlisting>
  83. <para><graphic fileref="images/gs_img_configmgrStart.jpg" /></para>
  84. </listitem>
  85. <listitem>
  86. <para>Using a Web browser, go to the Configuration Manager's
  87. interface:</para>
  88. <programlisting>http://&lt;<emphasis>ip of installed system</emphasis>&gt;:8015</programlisting>
  89. <para>The Configuration Manager startup wizard displays.</para>
  90. </listitem>
  91. </orderedlist>
  92. <para>There are different ways to configure your HPCC system. You can
  93. use the <emphasis role="bold">Generate environment wizard</emphasis> and
  94. use that environment or experienced users can then use the <emphasis
  95. role="bold">Advanced View</emphasis> for more specific customization.
  96. There is also the option of using <emphasis role="bold">Create blank
  97. environment</emphasis> to generate an empty environment that you could
  98. then go in and add only the components you would want.</para>
  99. <sect2 id="Env_Wizard">
  100. <title>Environment Wizard</title>
  101. <orderedlist>
  102. <listitem>
  103. <?dbfo keep-together="always"?>
  104. <para>To use the wizard select the <emphasis role="bold">Generate
  105. new environment using wizard</emphasis> button.</para>
  106. <para><graphic fileref="images/GS_ConfigMgrWizStart.jpg"
  107. vendor="configmgrSS" /></para>
  108. </listitem>
  109. <listitem>
  110. <para>Provide a name for the environment file.</para>
  111. <para>This will then be the name of the configuration XML file.
  112. For example, we will name our environment
  113. <emphasis>NewEnvironment</emphasis> and this will produce a
  114. configuration XML file named
  115. <emphasis>NewEnvironment.xml</emphasis> that we will
  116. use.<emphasis> </emphasis></para>
  117. </listitem>
  118. <listitem>
  119. <para>Press the Next button.</para>
  120. <para>Next you will need to define the IP addresses that your HPCC
  121. system will be using.</para>
  122. </listitem>
  123. <listitem>
  124. <?dbfo keep-together="always"?>
  125. <para>Enter the IP addresses or hostname(s).</para>
  126. <para>IP Addresses can be specified individually using semi-colon
  127. delimiters. You can also specify a range of IPs using a hyphen
  128. (for example, nnn.nnn.nnn.x-y). In the image below, we specified
  129. the IP addresses 10.239.219.1 through 10.239.219.100 using the
  130. range syntax, and also a single IP 10.239.219.111. Alternatively,
  131. you can enter the hostnames.</para>
  132. <para><graphic fileref="images/GS_ConfigMgrWiz002.jpg"
  133. vendor="configmgrSS" /></para>
  134. </listitem>
  135. <listitem>
  136. <para>Press the Next button.</para>
  137. <para>Now you will define how many nodes to use for the Roxie and
  138. Thor clusters.</para>
  139. </listitem>
  140. <listitem>
  141. <?dbfo keep-together="always"?>
  142. <para>Enter the appropriate values as indicated.</para>
  143. <para><graphic fileref="images/GS_CMWiz003.jpg"
  144. vendor="configmgrSS" /></para>
  145. <variablelist>
  146. <varlistentry>
  147. <term>Number of support nodes:</term>
  148. <listitem>
  149. <para>Specify the number of nodes to use for support
  150. components. The default is 1.</para>
  151. </listitem>
  152. </varlistentry>
  153. <varlistentry>
  154. <term>Number of nodes for Roxie cluster:</term>
  155. <listitem>
  156. <para>Specify the number of nodes to use for your Roxie
  157. cluster. Enter zero (0) if you do not want a Roxie
  158. cluster.</para>
  159. </listitem>
  160. </varlistentry>
  161. <varlistentry>
  162. <term>Number of slave nodes for Thor cluster</term>
  163. <listitem>
  164. <para>Specify the number of slave nodes to use in your Thor
  165. cluster. A Thor master node will be added automatically.
  166. Enter zero (0) if you do not want any Thor slaves.</para>
  167. </listitem>
  168. </varlistentry>
  169. <varlistentry>
  170. <term>Number of Thor slaves per node (default 1)</term>
  171. <listitem>
  172. <para>Specify the number of Thor slave processes to
  173. instantiate on each slave node. Enter zero (0) if you do not
  174. want a Thor cluster.</para>
  175. </listitem>
  176. </varlistentry>
  177. <varlistentry>
  178. <term>Enable Roxie on demand</term>
  179. <listitem>
  180. <para>Specify whether or not to allow queries to be run
  181. immediately on Roxie. This must be enabled to run the
  182. debugger. (Default is true)</para>
  183. </listitem>
  184. </varlistentry>
  185. </variablelist>
  186. </listitem>
  187. <listitem>
  188. <para>Press the <emphasis role="bold">Next</emphasis>
  189. button</para>
  190. <para>The wizard displays the configuration parameters.</para>
  191. </listitem>
  192. <listitem>
  193. <?dbfo keep-together="always"?>
  194. <para>Press the <emphasis role="bold">Finish</emphasis> button to
  195. accept these values or press the <emphasis role="bold">Advanced
  196. View</emphasis> button to edit in advanced mode.</para>
  197. <graphic fileref="images/GS_ConfigMgrWiz004.jpg" />
  198. </listitem>
  199. </orderedlist>
  200. <para>You will now be notified that you have completed the
  201. wizard.</para>
  202. <para><graphic fileref="images/GS_ConfigMgrWiz005.jpg" /></para>
  203. <para>At this point, you have created a file named NewEnvironment.xml
  204. in the <emphasis role="bold">/etc/HPCCSystems/source</emphasis>
  205. directory</para>
  206. <informaltable colsep="1" frame="all" rowsep="1">
  207. <?dbfo keep-together="always"?>
  208. <tgroup cols="2">
  209. <colspec colwidth="49.50pt" />
  210. <colspec />
  211. <tbody>
  212. <row>
  213. <entry><inlinegraphic fileref="images/OSSgr3.png" /></entry>
  214. <entry>Keep in mind, that your HPCC configuration may be
  215. different depending on your needs. For example, you may not
  216. need a Roxie or you may need several smaller Roxie clusters.
  217. In addition, in a production [Thor] system, you would ensure
  218. that Thor and Roxie nodes are dedicated and have no other
  219. processes running on them. This document is intended to show
  220. you how to use the configuration tools. Capacity planning and
  221. system design is covered in a training module.</entry>
  222. </row>
  223. </tbody>
  224. </tgroup>
  225. </informaltable>
  226. <sect3 id="Distrib_Conf" role="brk">
  227. <title>Distribute the Configuration</title>
  228. <orderedlist>
  229. <listitem>
  230. <?dbfo keep-together="always"?>
  231. <para>Stop the HPCC system.</para>
  232. <para>If it is running stop the HPCC system (on every node),
  233. using a command such as this:</para>
  234. <para><programlisting>sudo /sbin/service hpcc-init stop</programlisting></para>
  235. <variablelist>
  236. <varlistentry>
  237. <term>Note:</term>
  238. <listitem>
  239. <para>You may have a multi-node system and a custom script
  240. such as the one illustrated in Appendix of the <emphasis
  241. role="bluebold">Installing and Running the HPCC
  242. Platform</emphasis> document to start and stop your
  243. system. If that is the case please use the appropriate
  244. command for stopping your system on every node.</para>
  245. </listitem>
  246. </varlistentry>
  247. </variablelist>
  248. <para><informaltable colsep="1" frame="all" rowsep="1">
  249. <tgroup cols="2">
  250. <colspec colwidth="49.50pt" />
  251. <colspec />
  252. <tbody>
  253. <row>
  254. <entry><inlinegraphic
  255. fileref="images/caution.png" /></entry>
  256. <entry>Be sure HPCC is stopped before attempting to
  257. copy the environment.xml file.</entry>
  258. </row>
  259. </tbody>
  260. </tgroup>
  261. </informaltable></para>
  262. </listitem>
  263. <listitem>
  264. <para>Back up the original environment.xml file.</para>
  265. <programlisting># For example
  266. sudo -u hpcc cp /etc/HPCCSystems/environment.xml /etc/HPCCSystems/source/environment-date.xml </programlisting>
  267. <variablelist>
  268. <varlistentry>
  269. <term>Note:</term>
  270. <listitem>
  271. <para>The live environment.xml file is located in your
  272. <emphasis role="bold">/etc/HPCCSystems/</emphasis>
  273. directory. ConfigManager works on files in <emphasis
  274. role="bold">/etc/HPCCSystems/source</emphasis> directory.
  275. You must copy from this location to make an
  276. environment.xml file active.</para>
  277. </listitem>
  278. </varlistentry>
  279. </variablelist>
  280. <para>You can also choose to give the environment file a more
  281. descriptive name, to help differentiate any differences.</para>
  282. <para>Having environment files under source control is a good
  283. way to archive your environment settings.</para>
  284. </listitem>
  285. <listitem>
  286. <para>Copy the new .xml file from the source directory to the
  287. /etc/HPCCSystems and rename the file to
  288. <emphasis>environment.xml</emphasis></para>
  289. <programlisting># for example
  290. sudo -u hpcc cp /etc/HPCCSystems/source/NewEnvironment.xml /etc/HPCCSystems/environment.xml</programlisting>
  291. <para></para>
  292. </listitem>
  293. <listitem>
  294. <para>Copy the <emphasis
  295. role="bold">/etc/HPCCSystems/environment.xml</emphasis> to the
  296. <emphasis role="bold">/etc/HPCCSystems/</emphasis> on to
  297. <emphasis>every</emphasis> node.</para>
  298. <para>You may want to use a script to push out the XML file to
  299. all nodes. See the <emphasis>Example Scripts</emphasis> section
  300. in the Appendix of the <emphasis role="bluebold">Installing and
  301. Running the HPCC Platform</emphasis> document. You can use the
  302. scripts as a model to create your own script to copy the
  303. environment.xml file out to all your nodes.</para>
  304. </listitem>
  305. <listitem>
  306. <para>Restart the HPCC platform on all nodes.</para>
  307. </listitem>
  308. </orderedlist>
  309. </sect3>
  310. </sect2>
  311. </sect1>
  312. </chapter>
  313. <chapter>
  314. <title>Configuration Manager Advanced View</title>
  315. <para>For the advanced user, the Advanced View offers access to adding
  316. additional instances of components or making configuration settings for
  317. individual components.</para>
  318. <sect1 id="configuring-advanced-setup">
  319. <title>Using ConfigMgr in Advanced Mode</title>
  320. <para>This section shows some of the configuration options in Advanced
  321. Mode. There are a few different ways to configure your system. If you
  322. are not an experienced user you can use the Generate environment wizard
  323. discussed in the previous section. The following steps will detail the
  324. Advanced set up.</para>
  325. <orderedlist>
  326. <listitem>
  327. <para>SSH to the first box in your environment and login as a user
  328. with sudo privileges.</para>
  329. </listitem>
  330. <listitem>
  331. <para>If it is running, stop the HPCC system using this command on
  332. every node:</para>
  333. <para><programlisting>sudo /sbin/service hpcc-init stop</programlisting></para>
  334. <variablelist>
  335. <varlistentry>
  336. <term>Note:</term>
  337. <listitem>
  338. <para>If you have a large system with many nodes, you may want
  339. to use a script to perform this step. See the
  340. <emphasis>Example Scripts</emphasis> section in the Appendix
  341. of the <emphasis role="bluebold">Installing and Running the
  342. HPCC Platform</emphasis> document.</para>
  343. </listitem>
  344. </varlistentry>
  345. </variablelist>
  346. <para><informaltable colsep="1" frame="all" rowsep="1">
  347. <?dbfo keep-together="always"?>
  348. <tgroup cols="2">
  349. <colspec colwidth="49.50pt" />
  350. <colspec />
  351. <tbody>
  352. <row>
  353. <entry><inlinegraphic
  354. fileref="images/OSSgr3.png" /></entry>
  355. <entry>You can use this command to confirm HPCC processes
  356. are stopped: <para><programlisting>sudo /sbin/service hpcc-init status</programlisting></para></entry>
  357. </row>
  358. </tbody>
  359. </tgroup>
  360. </informaltable></para>
  361. </listitem>
  362. <listitem>
  363. <para>Start the Configuration Manager service on one node (usually
  364. the first node is considered the head node and is used for this
  365. task, but this is up to you).</para>
  366. <programlisting>sudo /opt/HPCCSystems/sbin/configmgr</programlisting>
  367. <para><graphic fileref="images/gs_img_configmgrStart.jpg" /></para>
  368. </listitem>
  369. <listitem>
  370. <para>Using a Web browser, go to the Configuration Manager's
  371. interface:</para>
  372. <programlisting>http://&lt;<emphasis>ip of installed system</emphasis>&gt;:8015</programlisting>
  373. <para>The Configuration Manager startup wizard displays.</para>
  374. </listitem>
  375. <listitem>
  376. <para>Select <emphasis role="bold">Advanced View</emphasis>, then
  377. press the <emphasis role="bold">Next </emphasis>button.</para>
  378. <para>There are a few different ways to configure your system. If
  379. you are not an experienced user you can use the Generate environment
  380. wizard discussed in the previous section.</para>
  381. </listitem>
  382. <listitem>
  383. <para>Select an XML file from the drop list.</para>
  384. <para>This list is populated from versions of an environment XML
  385. file in your server's /etc/HPCCSystems/source/ directory.</para>
  386. <para>The system will check the current environment file and if a
  387. match is found here it will highlight in blue the current
  388. environment file being used.</para>
  389. </listitem>
  390. <listitem>
  391. <?dbfo keep-together="always"?>
  392. <para>Press the <emphasis role="bold">Next</emphasis> button.
  393. <graphic fileref="images/CM-WizStart.jpg"
  394. vendor="configmgrSS" /></para>
  395. </listitem>
  396. <listitem>
  397. <para>The Configuration Manager interface displays.</para>
  398. <para><informaltable colsep="1" frame="all" rowsep="1">
  399. <?dbfo keep-together="always"?>
  400. <tgroup cols="2">
  401. <colspec colwidth="49.50pt" />
  402. <colspec />
  403. <tbody>
  404. <row>
  405. <entry><inlinegraphic
  406. fileref="images/OSSgr3.png" /></entry>
  407. <entry>Default access is read-only. Many options are only
  408. available when write-access is enabled. <para>Gain write
  409. access by checking the <emphasis role="bold">Write
  410. Access</emphasis> checkbox. </para><para>Unchecking this
  411. box returns the environment to read-only mode. All menu
  412. items are disabled in read-only mode. </para><para>Closing
  413. the web page automatically removes any write-access
  414. locks.</para></entry>
  415. </row>
  416. </tbody>
  417. </tgroup>
  418. </informaltable></para>
  419. </listitem>
  420. <listitem>
  421. <para>Check the <emphasis role="bold">Write Access</emphasis>
  422. box.</para>
  423. <para><graphic fileref="images/CM-img101.jpg"
  424. vendor="configmgrSS" />The <emphasis role="bold">Save</emphasis>
  425. button<inlinegraphic fileref="images/GS-img01c.png"
  426. vendor="configmgrSS" /> validates and saves the environment.</para>
  427. <para>The <emphasis role="bold">Save Environment As</emphasis>
  428. button <inlinegraphic fileref="images/CM-img181.jpg"
  429. vendor="configmgrSS" /> validates and lets you specify the
  430. environment filename to save.</para>
  431. <para>The <emphasis role="bold">Validate Environment</emphasis>
  432. button<inlinegraphic fileref="images/GS-img01d.png"
  433. vendor="configmgrSS" /> just validates the current environment
  434. including any changes that have not yet been saved.</para>
  435. <para>The <emphasis role="bold">Open Environment</emphasis> button
  436. <inlinegraphic fileref="images/CM-img18.jpg" vendor="configmgrSS" />
  437. allows you to open a new environment file to work on.</para>
  438. <para>The <emphasis role="bold">Wizard</emphasis> button
  439. <inlinegraphic fileref="images/CM-img19.jpg" vendor="configmgrSS" />
  440. will bring up the Configuration Manager chooser form which will
  441. allow you to create or view an environment file where you can also
  442. launch the configuration wizard.</para>
  443. <para>These buttons are only enabled in Write Access mode.</para>
  444. </listitem>
  445. </orderedlist>
  446. <sect2 role="brk">
  447. <title>XML View</title>
  448. <para>In the advanced view of Configuration Manager, you can
  449. optionally choose to work with the XML View.</para>
  450. <para>To see the the configuration in XML View, click on the
  451. Environment heading in the Navigator panel on the left side.</para>
  452. <para><graphic fileref="images/CM-120.jpg" />You can access all
  453. attributes through the XML view.</para>
  454. <para>If you wish to add an attribute that does not exist, right-click
  455. on one of the components then you can choose to add an
  456. attribute.</para>
  457. <para><graphic fileref="images/CM-121.jpg" /></para>
  458. </sect2>
  459. </sect1>
  460. <sect1 role="brk">
  461. <title>Hardware Section</title>
  462. <para>This section allows you to define your list of servers. When
  463. defining instances of components, you will choose from servers in this
  464. list.</para>
  465. <orderedlist>
  466. <listitem>
  467. <?dbfo keep-together="always"?>
  468. <para>Select <emphasis role="bold">Hardware</emphasis> in the
  469. Navigator panel on the left side.</para>
  470. <para><graphic fileref="images/CM-img01.jpg"
  471. vendor="configmgrSS" /></para>
  472. </listitem>
  473. <listitem>
  474. <para>Select the <emphasis role="bold">Computers</emphasis>
  475. tab.</para>
  476. </listitem>
  477. <listitem>
  478. <?dbfo keep-together="always"?>
  479. <para>right-click on one of computers listed, then select New
  480. Range.</para>
  481. <para><graphic fileref="images/CM-img02.jpg"
  482. vendor="configmgrSS" /></para>
  483. </listitem>
  484. <listitem>
  485. <para>Specify the following:</para>
  486. <itemizedlist>
  487. <listitem>
  488. <para>Name Prefix - any name that will help you to identify the
  489. node or range</para>
  490. </listitem>
  491. <listitem>
  492. <para>Start IP Address</para>
  493. </listitem>
  494. <listitem>
  495. <para>Stop IP Address</para>
  496. <para>The IP Addresses can be specified in a range if all your
  497. host IP addresses are consecutively numbered. If the IP
  498. addresses are not sequential you should repeat the process for
  499. each individual IP address and just add the IP address in both
  500. the start and stop IP address field. You will then need to
  501. repeat the process for each node.</para>
  502. </listitem>
  503. </itemizedlist>
  504. </listitem>
  505. <listitem>
  506. <?dbfo keep-together="always"?>
  507. <para>Press the <emphasis role="bold">OK</emphasis> button.</para>
  508. <para>The list of nodes now displays with the nodes that you just
  509. added.</para>
  510. <para><inlinegraphic fileref="images/CM-img03.jpg"
  511. vendor="configmgrSS" /></para>
  512. <para>Next, edit each System Server component instance and set it to
  513. a newly defined node.</para>
  514. <!--***The steps that follow are using one component per node. You can allocate more components per node, if needed.-->
  515. </listitem>
  516. <listitem>
  517. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  518. disk icon to save</para>
  519. </listitem>
  520. <listitem>
  521. <para>Expand the <emphasis role="bold">Software</emphasis> section,
  522. if necessary, in the Navigator panel on the left side, by clicking
  523. on the <inlinegraphic fileref="images/expandButton.png" />
  524. button.</para>
  525. </listitem>
  526. </orderedlist>
  527. </sect1>
  528. <sect1>
  529. <title>Software Section</title>
  530. <para>Use the software components section to configure software
  531. components of the HPCC platform. Most software components are actual
  532. running processes; however, some are just definitions used by the
  533. system. These definitions are used by the configuration
  534. generator.</para>
  535. <para>Items that appear in <emphasis role="red">red</emphasis> indicate
  536. optional values. They are only written to the environment if you add to
  537. or change that value. If untouched, they will not appear in the
  538. environment XML file.</para>
  539. <sect2 role="brk">
  540. <title>Dali</title>
  541. <sect3>
  542. <title>Instances</title>
  543. <para>
  544. <orderedlist>
  545. <listitem>
  546. <para>Select <emphasis role="bold">Dali Server</emphasis> in
  547. the Navigator panel on the left side.</para>
  548. </listitem>
  549. <listitem>
  550. <para>Select the Instances tab.</para>
  551. </listitem>
  552. <listitem>
  553. <?dbfo keep-together="always"?>
  554. <para>In the computer column, choose a node from the drop list
  555. as shown below:<graphic fileref="images/CM-img04.jpg"
  556. vendor="configmgrSS" /></para>
  557. </listitem>
  558. <listitem>
  559. <para>Click the <inlinegraphic
  560. fileref="images/GS-img01c.png" /> disk icon to save</para>
  561. </listitem>
  562. </orderedlist>
  563. </para>
  564. </sect3>
  565. <sect3 role="brk">
  566. <title>DaliServer attributes</title>
  567. <para>This section describes the DaliServer attributes.</para>
  568. <para>
  569. <graphic fileref="images/CM-img04-1.jpg" vendor="configmgrSS" />
  570. </para>
  571. <para />
  572. <!--configMgr-Dali-Server-Include-XXX1-->
  573. <para>
  574. <xi:include href="XMLGeneration/xml/dali.xsd.mod.xml"
  575. xpointer="da.t1"
  576. xmlns:xi="http://www.w3.org/2001/XInclude" />
  577. </para>
  578. </sect3>
  579. <?hard-pagebreak ?>
  580. <sect3>
  581. <title>DaliServer store</title>
  582. <para>This section describes the attributes configuring how Dali
  583. handles the system data store.</para>
  584. <para>
  585. <graphic fileref="images/CM-img04-2.jpg" vendor="configmgrSS" />
  586. </para>
  587. <para />
  588. <!--configMgr-Dali-Server-Include-XXX2-->
  589. <para>
  590. <xi:include href="XMLGeneration/xml/dali.xsd.mod.xml"
  591. xpointer="da.t2"
  592. xmlns:xi="http://www.w3.org/2001/XInclude" />
  593. </para>
  594. </sect3>
  595. <?hard-pagebreak ?>
  596. <sect3>
  597. <title>DaliServer LDAP options</title>
  598. <para>This section describes the DaliServer LDAP tab.</para>
  599. <para>
  600. <graphic fileref="images/CM-img04-4.jpg" vendor="configmgrSS" />
  601. </para>
  602. <!--configMgr-DaliServer-LDAP-Include-XXX3-->
  603. <para>
  604. <xi:include href="XMLGeneration/xml/dali.xsd.mod.xml"
  605. xpointer="da.t4"
  606. xmlns:xi="http://www.w3.org/2001/XInclude" />
  607. </para>
  608. </sect3>
  609. <sect3>
  610. <title>DaliServer Notes</title>
  611. <para>This tab allows you to add any notes pertinent to the
  612. component's configuration. This can be useful to keep a record of
  613. changes and to communicate this information to peers.</para>
  614. </sect3>
  615. </sect2>
  616. <sect2 id="Dafilesrv-Process" role="brk">
  617. <title>Dafilesrv Process</title>
  618. <sect3>
  619. <title>Dafilesrv Instances</title>
  620. <para>Dafilesrv is a helper process that every node needs.</para>
  621. <orderedlist>
  622. <listitem>
  623. <para>Select Dafilesrv in the Navigator panel on the left
  624. side.</para>
  625. </listitem>
  626. <listitem>
  627. <para>Select the Instances tab.</para>
  628. </listitem>
  629. <listitem>
  630. <para>right-click on a computer in the computer column, and
  631. select Add Instance .</para>
  632. </listitem>
  633. <listitem>
  634. <?dbfo keep-together="always"?>
  635. <para>Select all computers in the list by checking the <emphasis
  636. role="bold">Select All</emphasis> box, then press the <emphasis
  637. role="bold">OK</emphasis> button.</para>
  638. <para>
  639. <graphic fileref="images/CM-img12.jpg" vendor="configmgrSS" />
  640. </para>
  641. </listitem>
  642. <listitem>
  643. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  644. disk icon to save</para>
  645. </listitem>
  646. </orderedlist>
  647. </sect3>
  648. <?hard-pagebreak ?>
  649. <sect3>
  650. <title>Dafilesrv attributes</title>
  651. <para>This section describes the Dafilesrv attributes.</para>
  652. <para>
  653. <graphic fileref="images/CM-img12-1.jpg" vendor="configmgrSS" />
  654. </para>
  655. <!--configMgr-DaFileSrv-Include-XXX4-->
  656. <para>
  657. <xi:include href="XMLGeneration/xml/dafilesrv.xsd.mod.xml"
  658. xpointer="daFs.t"
  659. xmlns:xi="http://www.w3.org/2001/XInclude" />
  660. </para>
  661. </sect3>
  662. </sect2>
  663. <sect2 id="DFU-Server" role="brk">
  664. <title>DFU Server</title>
  665. <sect3>
  666. <title>DfuServer Instances</title>
  667. <orderedlist>
  668. <listitem>
  669. <para>Select <emphasis role="bold">DFU Server</emphasis> in the
  670. Navigator panel on the left side.</para>
  671. </listitem>
  672. <listitem>
  673. <para>Select the Instances tab.</para>
  674. </listitem>
  675. <listitem>
  676. <para>In the computer column, choose a node from the drop list
  677. as shown below:<graphic fileref="images/CM-img05.jpg"
  678. vendor="configmgrSS" /></para>
  679. </listitem>
  680. <listitem>
  681. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  682. disk icon to save</para>
  683. </listitem>
  684. </orderedlist>
  685. </sect3>
  686. <sect3 role="brk">
  687. <title>DfuServer Attributes Tab</title>
  688. <para>This section describes the DfuServer attributes.</para>
  689. <para>
  690. <graphic fileref="images/CM-img05-1.jpg" vendor="configmgrSS" />
  691. </para>
  692. <!--configMgr-DFUSrvr-Attr-Include-XXX6-->
  693. <para>
  694. <xi:include href="XMLGeneration/xml/dfuserver.xsd.mod.xml"
  695. xpointer="DF.t1"
  696. xmlns:xi="http://www.w3.org/2001/XInclude" />
  697. </para>
  698. </sect3>
  699. <sect3 role="brk">
  700. <title>DfuServer SSH Options</title>
  701. <para>This section describes the DfuServer SSH Options..</para>
  702. <para>
  703. <graphic fileref="images/CM-img05-2.jpg" vendor="configmgrSS" />
  704. </para>
  705. <!--configMgr-DFUSrvr-SSH-Include-XXX7-->
  706. <para>
  707. <xi:include href="XMLGeneration/xml/dfuserver.xsd.mod.xml"
  708. xpointer="DF.t2"
  709. xmlns:xi="http://www.w3.org/2001/XInclude" />
  710. </para>
  711. </sect3>
  712. <sect3>
  713. <title>DfuServer Notes</title>
  714. <para>This tab allows you to add any notes pertinent to the
  715. component's configuration. This can be useful to keep a record of
  716. changes and to communicate this information to peers.</para>
  717. </sect3>
  718. </sect2>
  719. <sect2 role="brk">
  720. <title>Directories</title>
  721. <para>The Directories component is a global definition used by other
  722. components to determine the directories they will use for various
  723. functions.</para>
  724. <para>
  725. <graphic fileref="images/CM-161a.jpg" vendor="configmgrSS" />
  726. </para>
  727. <para />
  728. <informaltable colsep="1" frame="all" rowsep="1">
  729. <tgroup cols="3">
  730. <colspec align="left" colwidth="122.40pt" />
  731. <tbody>
  732. <row>
  733. <entry>Name</entry>
  734. <entry>Directory</entry>
  735. <entry>Description</entry>
  736. </row>
  737. <row>
  738. <entry>
  739. <emphasis role="bold">log</emphasis>
  740. </entry>
  741. <entry>/var/log/[NAME]/[INST]</entry>
  742. <entry>Location for Log files</entry>
  743. </row>
  744. <row>
  745. <entry>
  746. <emphasis role="bold">temp</emphasis>
  747. </entry>
  748. <entry>/var/lib/[NAME]/[INST]/temp</entry>
  749. <entry>Location for temp files</entry>
  750. </row>
  751. <row>
  752. <entry>
  753. <emphasis role="bold">data</emphasis>
  754. </entry>
  755. <entry />
  756. <entry>Base Location for data files</entry>
  757. </row>
  758. <row>
  759. <entry>
  760. <emphasis role="bold">data2</emphasis>
  761. </entry>
  762. <entry />
  763. <entry>Base Location for 2nd copy of roxie data</entry>
  764. </row>
  765. <row>
  766. <entry>
  767. <emphasis role="bold">data3</emphasis>
  768. </entry>
  769. <entry />
  770. <entry>Reserved for future use</entry>
  771. </row>
  772. <row>
  773. <entry>
  774. <emphasis role="bold">mirror</emphasis>
  775. </entry>
  776. <entry />
  777. <entry>Base Location for mirror data files</entry>
  778. </row>
  779. <row>
  780. <entry>
  781. <emphasis role="bold">query</emphasis>
  782. </entry>
  783. <entry />
  784. <entry>Base Location for Queries</entry>
  785. </row>
  786. </tbody>
  787. </tgroup>
  788. </informaltable>
  789. </sect2>
  790. <sect2 id="Drop-Zone" role="brk">
  791. <title>Drop Zone</title>
  792. <sect3>
  793. <title>DropZone Attributes</title>
  794. <orderedlist>
  795. <listitem>
  796. <para>Select Drop Zone in the Navigator panel on the left
  797. side.</para>
  798. </listitem>
  799. <listitem>
  800. <para>Select the Attributes tab.</para>
  801. </listitem>
  802. <listitem>
  803. <para>In the Value column of the Computer row, choose a node
  804. from the drop list as shown below:<graphic
  805. fileref="images/CM-img06.jpg" vendor="configmgrSS" /></para>
  806. </listitem>
  807. <listitem>
  808. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  809. disk icon to save</para>
  810. </listitem>
  811. </orderedlist>
  812. </sect3>
  813. <sect3>
  814. <title>DropZone Notes</title>
  815. <para>This tab allows you to add any notes pertinent to the
  816. component's configuration. This can be useful to keep a record of
  817. changes and to communicate this information to peers.</para>
  818. </sect3>
  819. </sect2>
  820. <sect2 id="ECL-Agent" role="brk">
  821. <title>ECL Agent</title>
  822. <sect3>
  823. <title>instances</title>
  824. <orderedlist>
  825. <listitem>
  826. <para>Select ECL Agent in the Navigator panel on the left
  827. side.</para>
  828. </listitem>
  829. <listitem>
  830. <para>Select the Instances tab.</para>
  831. </listitem>
  832. <listitem>
  833. <para>In the computer column, choose a node from the drop list
  834. as shown below:<graphic fileref="images/CM-img07.jpg"
  835. vendor="configmgrSS" /></para>
  836. </listitem>
  837. <listitem>
  838. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  839. disk icon to save</para>
  840. </listitem>
  841. </orderedlist>
  842. </sect3>
  843. <sect3 role="brk">
  844. <title>EclAgent Attributes Tab</title>
  845. <para>This section describes the EclAgent Attributes tab.</para>
  846. <para>
  847. <graphic fileref="images/CM-img07-1.jpg" vendor="configmgrSS" />
  848. </para>
  849. <!--configMgr-ECLAgent-Attr-Include-XXX8-->
  850. <para>
  851. <xi:include href="XMLGeneration/xml/eclagent_config.xsd.mod.xml"
  852. xpointer="EA.t1"
  853. xmlns:xi="http://www.w3.org/2001/XInclude" />
  854. </para>
  855. </sect3>
  856. <sect3 role="brk">
  857. <title>EclAgent Options Tab</title>
  858. <para>This section describes the EclAgent Options tab.</para>
  859. <para>
  860. <graphic fileref="images/CM-img07-2.jpg" vendor="configmgrSS" />
  861. </para>
  862. <!--configMgr-ECLAgent-Options-Include-XXX9-->
  863. <para>
  864. <xi:include href="XMLGeneration/xml/eclagent_config.xsd.mod.xml"
  865. xpointer="EA.t2"
  866. xmlns:xi="http://www.w3.org/2001/XInclude" />
  867. </para>
  868. </sect3>
  869. <sect3>
  870. <title>EclAgentProcessNotes</title>
  871. <para>This tab allows you to add any notes pertinent to the
  872. component's configuration. This can be useful to keep a record of
  873. changes and to communicate this information to peers.</para>
  874. </sect3>
  875. </sect2>
  876. <sect2 role="brk">
  877. <title>ECL CC Server Process</title>
  878. <sect3>
  879. <title>Ecl CC Server Instances</title>
  880. <para>
  881. <orderedlist>
  882. <listitem>
  883. <para>Select Ecl CC Server - myeclccserver in the Navigator
  884. panel on the left side.</para>
  885. </listitem>
  886. <listitem>
  887. <para>Select the Instances tab.</para>
  888. </listitem>
  889. <listitem>
  890. <para>In the computer column, choose a node from the drop list
  891. as shown below:<graphic fileref="images/CM-ECLCC-01.jpg"
  892. vendor="configmgrSS" /></para>
  893. </listitem>
  894. <listitem>
  895. <para>Click the <inlinegraphic
  896. fileref="images/GS-img01c.png" /> disk icon to save</para>
  897. </listitem>
  898. </orderedlist>
  899. </para>
  900. </sect3>
  901. <sect3 role="brk">
  902. <title>Ecl CC Server Attributes Tab</title>
  903. <para>This section describes the Ecl CC Server Attributes
  904. tab.</para>
  905. <para>
  906. <graphic fileref="images/CM-ECLCC-02.jpg" vendor="configmgrSS" />
  907. </para>
  908. <!--ECLCCServer-Include-cc.t2-XXX-X-->
  909. <para>
  910. <xi:include href="XMLGeneration/xml/eclccserver.xsd.mod.xml"
  911. xpointer="cc.t2"
  912. xmlns:xi="http://www.w3.org/2001/XInclude" />
  913. </para>
  914. </sect3>
  915. <sect3>
  916. <title>EclCC Server Process Options</title>
  917. <para>To add a custom option, right-click and select add. These
  918. options are passed to the eclcc compiler.</para>
  919. <para>See the ECL Compiler chapter in the <emphasis
  920. role="bluebold">Client Tools</emphasis> manual for details.</para>
  921. <!--This feature allows the user to configure any options pertinent to the Ecl CC Server Process -->
  922. <para />
  923. </sect3>
  924. <sect3>
  925. <title>EclCC Server Process Notes</title>
  926. <para>This tab allows you to add any notes pertinent to the
  927. component's configuration. This can be useful to keep a record of
  928. changes and to communicate this information to peers.</para>
  929. </sect3>
  930. </sect2>
  931. <sect2 id="ECL-Scheduler" role="brk">
  932. <title>ECL Scheduler</title>
  933. <sect3>
  934. <title>instances</title>
  935. <orderedlist>
  936. <listitem>
  937. <para>Select <emphasis role="bold">ECL Scheduler</emphasis> in
  938. the Navigator panel on the left side.</para>
  939. </listitem>
  940. <listitem>
  941. <para>Select the Instances tab.</para>
  942. </listitem>
  943. <listitem>
  944. <para>In the computer column, choose a node from the drop list
  945. as shown below:<graphic fileref="images/CM-161.jpg"
  946. vendor="configmgrSS" /></para>
  947. </listitem>
  948. <listitem>
  949. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  950. disk icon to save</para>
  951. </listitem>
  952. </orderedlist>
  953. </sect3>
  954. <sect3 role="brk">
  955. <title>EclScheduler Attributes Tab</title>
  956. <para>This section describes the EclScheduler Attributes tab.</para>
  957. <para>
  958. <graphic fileref="images/CM-160.jpg" vendor="configmgrSS" />
  959. </para>
  960. <!--configMgr-DaliServer-LDAP-Include-XXX-XI-->
  961. <para>
  962. <xi:include href="XMLGeneration/xml/eclscheduler.xsd.mod.xml"
  963. xpointer="ecl.sched"
  964. xmlns:xi="http://www.w3.org/2001/XInclude" />
  965. </para>
  966. </sect3>
  967. <sect3>
  968. <title>EclScheduler Notes</title>
  969. <para>This tab allows you to add any notes pertinent to the
  970. component's configuration. This can be useful to keep a record of
  971. changes and to communicate this information to peers.</para>
  972. </sect3>
  973. </sect2>
  974. <sect2 id="ESP-Server" role="brk">
  975. <title>ESP Server</title>
  976. <sect3>
  977. <title>Esp Process Instances</title>
  978. <orderedlist>
  979. <listitem>
  980. <para>Select <emphasis role="bold">ESP - myesp</emphasis> in the
  981. Navigator panel on the left side.</para>
  982. </listitem>
  983. <listitem>
  984. <para>Select the Instances tab.</para>
  985. </listitem>
  986. <listitem>
  987. <para>In the computer column, choose a node from the drop list
  988. as shown below:<graphic fileref="images/CM-img08.jpg"
  989. vendor="configmgrSS" /></para>
  990. </listitem>
  991. <listitem>
  992. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  993. disk icon to save</para>
  994. </listitem>
  995. </orderedlist>
  996. </sect3>
  997. <?hard-pagebreak ?>
  998. <sect3>
  999. <title>Esp - myesp Attributes Tab</title>
  1000. <para>This section describes the Esp - myesp Attributes tab.</para>
  1001. <para>
  1002. <graphic fileref="images/CM-img08-1.jpg" vendor="configmgrSS" />
  1003. </para>
  1004. <!--MyESP-Include-ESP.t6-XXX12-->
  1005. <para>
  1006. <xi:include href="XMLGeneration/xml/esp.xsd.mod.xml"
  1007. xpointer="ESP.t6"
  1008. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1009. </para>
  1010. </sect3>
  1011. <sect3 role="brk">
  1012. <title>Esp - myesp Service BindingsTab</title>
  1013. <para>This section describes the Esp - myesp Service Bindings tab.
  1014. This tab requires additional steps to configure the service
  1015. bindings.</para>
  1016. <para>
  1017. <graphic fileref="images/CM-img08-2.jpg" vendor="configmgrSS" />
  1018. </para>
  1019. <para>You must first add the service bindings in the first table
  1020. (Right-click, add). Then you would configure the attributes in the
  1021. other tables on that tab. The next table describes the <emphasis
  1022. role="bold">URL Authentication</emphasis> table.</para>
  1023. <!--MyESP-Include-ESP.t1-XXXIII-->
  1024. <para>
  1025. <xi:include href="XMLGeneration/xml/esp.xsd.mod.xml"
  1026. xpointer="ESP.t1"
  1027. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1028. </para>
  1029. <para>The following tables describe the ESPProcess Service Bindings,
  1030. <emphasis role="bold">Feature Authentications</emphasis>.</para>
  1031. <!--MyESP-Include-ES.t2-XXX-14-->
  1032. <para>
  1033. <xi:include href="XMLGeneration/xml/esp.xsd.mod.xml"
  1034. xpointer="ESP.t2"
  1035. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1036. </para>
  1037. <para>
  1038. <!--MyESP-Include-ES.t3-XXX-15-->
  1039. <!-- <xi:include href="XMLGeneration/xml/esp.xsd.mod.xml"
  1040. xpointer="ES.t3"
  1041. xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
  1042. </para>
  1043. <para />
  1044. </sect3>
  1045. <?hard-pagebreak ?>
  1046. <sect3>
  1047. <title>Esp - myesp AuthenticationTab</title>
  1048. <para>This section describes the Esp - myesp Service Authentication
  1049. tab.</para>
  1050. <para>
  1051. <graphic fileref="images/CM-img08-3.jpg" vendor="configmgrSS" />
  1052. </para>
  1053. <!--MyESP-Authentication-ES.t4-XXX-16-->
  1054. <para>
  1055. <xi:include href="XMLGeneration/xml/esp.xsd.mod.xml"
  1056. xpointer="ESP.t4"
  1057. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1058. </para>
  1059. <para>Additional information about the available Authentication
  1060. methods:</para>
  1061. <para>
  1062. <informaltable colsep="1" frame="all" rowsep="1">
  1063. <tgroup cols="2">
  1064. <colspec colwidth="111.50pt" />
  1065. <colspec />
  1066. <tbody>
  1067. <row>
  1068. <entry>none</entry>
  1069. <entry>uses no authentication</entry>
  1070. </row>
  1071. <row>
  1072. <entry>local</entry>
  1073. <entry>uses the local credentials for the server running
  1074. the ESP</entry>
  1075. </row>
  1076. <row>
  1077. <entry>ldap</entry>
  1078. <entry>uses Lightweight Directory Access Protocol for
  1079. authentication</entry>
  1080. </row>
  1081. <row>
  1082. <entry>ldaps</entry>
  1083. <entry>similar to LDAP but uses a more secure (TLS)
  1084. protocol</entry>
  1085. </row>
  1086. <row>
  1087. <entry>secmgrPlugin</entry>
  1088. <entry>uses the security manager plug-in</entry>
  1089. </row>
  1090. </tbody>
  1091. </tgroup>
  1092. </informaltable>
  1093. </para>
  1094. </sect3>
  1095. <?hard-pagebreak ?>
  1096. <sect3>
  1097. <title>Esp - myesp HTTPS Tab</title>
  1098. <para>This section describes the Esp - myesp HTTPS tab.</para>
  1099. <para>
  1100. <graphic fileref="images/CM-img08-4.jpg" vendor="configmgrSS" />
  1101. </para>
  1102. <!--MyESP-HTTPS.t5-XXX-17-->
  1103. <para>
  1104. <xi:include href="XMLGeneration/xml/esp.xsd.mod.xml"
  1105. xpointer="ESP.t5"
  1106. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1107. </para>
  1108. </sect3>
  1109. <sect3>
  1110. <title>EspProcess Notes</title>
  1111. <para>This tab allows you to add any notes pertinent to the
  1112. component's configuration. This can be useful to keep a record of
  1113. changes and to communicate this information to peers.</para>
  1114. </sect3>
  1115. </sect2>
  1116. <sect2 id="ESP_Services" role="brk">
  1117. <title>ESP Services</title>
  1118. <para>ESP Services provide a means to add functionality to an ESP
  1119. Server.</para>
  1120. <sect3 id="CfgMgrEclWatch">
  1121. <title>ECL Watch Service</title>
  1122. <para>Ecl Watch allows you to configure options for the ECL Watch
  1123. utility.</para>
  1124. <para>
  1125. <graphic fileref="images/CM-009.jpg" vendor="configmgrSS" />
  1126. </para>
  1127. <para>ECL Watch Attribute definitions.</para>
  1128. <!--ECLWa-Include-TBLZ-1-->
  1129. <para>
  1130. <xi:include href="XMLGeneration/xml/espsmcservice.xsd.mod.xml"
  1131. xpointer="SMC-T01"
  1132. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1133. </para>
  1134. <para>ECL Watch Monitoring attributes.</para>
  1135. <!--ECLWa-Include-TBLZ-2-->
  1136. <para>
  1137. <xi:include href="XMLGeneration/xml/espsmcservice.xsd.mod.xml"
  1138. xpointer="SMC-T02"
  1139. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1140. </para>
  1141. </sect3>
  1142. <sect3 id="cfgmgr_WsECL" role="brk">
  1143. <title>WsECL Service</title>
  1144. <para>The WsECL service allows you to configure options for the
  1145. WsECL utility.</para>
  1146. <para>
  1147. <graphic fileref="images/CM-010.jpg" vendor="configmgrSS" />
  1148. </para>
  1149. <para>The Ws ECL configuration attributes.</para>
  1150. <!--WsECL-Include-ZXX-1-->
  1151. <para>
  1152. <xi:include href="XMLGeneration/xml/esp_service_wsecl2.xsd.mod.xml"
  1153. xpointer="MyWS2-T01"
  1154. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1155. </para>
  1156. <para>Ws ECL VIPS option attributes.</para>
  1157. <!--WsECL-Include-ZXX-2-->
  1158. <para>
  1159. <xi:include href="XMLGeneration/xml/esp_service_wsecl2.xsd.mod.xml"
  1160. xpointer="MyWS2-T02"
  1161. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1162. </para>
  1163. <para>Ws ECL Target Restrictions table.</para>
  1164. <!--WsECL-Include-ZXX-3-->
  1165. <para>
  1166. <xi:include href="XMLGeneration/xml/esp_service_wsecl2.xsd.mod.xml"
  1167. xpointer="MyWS2-T03"
  1168. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1169. </para>
  1170. </sect3>
  1171. </sect2>
  1172. <sect2 id="FTSlave-Process" role="brk">
  1173. <title>FTSlave Process</title>
  1174. <para>FTSlave is a helper process that every node needs. This section
  1175. depicts an FTSlave installation.</para>
  1176. <sect3>
  1177. <title>Instances</title>
  1178. <orderedlist>
  1179. <listitem>
  1180. <para>Select FTSlave in the Navigator panel on the left
  1181. side.</para>
  1182. </listitem>
  1183. <listitem>
  1184. <para>Select the Instances tab.</para>
  1185. </listitem>
  1186. <listitem>
  1187. <?dbfo keep-together="always"?>
  1188. <para>right-click on a computer in the computer column, and
  1189. select Add Instance.</para>
  1190. <para>
  1191. <graphic fileref="images/CM-190.jpg" vendor="configmgrSS" />
  1192. </para>
  1193. </listitem>
  1194. <listitem>
  1195. <?dbfo keep-together="always"?>
  1196. <para>Select all computers in the list, then press the <emphasis
  1197. role="bold">OK</emphasis> button.</para>
  1198. <para>
  1199. <graphic fileref="images/CM-112-4.jpg" vendor="configmgrSS" />
  1200. </para>
  1201. </listitem>
  1202. <listitem>
  1203. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  1204. disk icon to save</para>
  1205. </listitem>
  1206. </orderedlist>
  1207. </sect3>
  1208. <sect3>
  1209. <title>FtSlave attributes</title>
  1210. <para>This section describes an FTSlaveProcess attributes
  1211. tab.</para>
  1212. <!--FTSlave-Include-XXX-18-->
  1213. <para>
  1214. <xi:include href="XMLGeneration/xml/ftslave_linux.xsd.mod.xml"
  1215. xpointer="FTS.t1"
  1216. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1217. </para>
  1218. </sect3>
  1219. <sect3>
  1220. <title>FtSlave Process Notes</title>
  1221. <para>This tab allows you to add any notes pertinent to the
  1222. component's configuration. This can be useful to keep a record of
  1223. changes and to communicate this information to peers.</para>
  1224. </sect3>
  1225. </sect2>
  1226. <sect2 id="LDAPServer_Process" role="brk">
  1227. <title>LDAP Server Process</title>
  1228. <para>This section describes the configuration attributes of an
  1229. LDAPServer Installation in ConfigManager. For a complete description
  1230. of how to add LDAP Authentication see <emphasis>Using LDAP
  1231. Authentication</emphasis> section in the <emphasis
  1232. role="bluebold">Installing and Running The HPCC Platform</emphasis>
  1233. document.</para>
  1234. <para>
  1235. <graphic fileref="images/LDAP_004.jpg" />
  1236. </para>
  1237. <!--LdapServer-Include-fullDoc-XXX-19-->
  1238. <xi:include href="XMLGeneration/xml/ldapserver.xsd.mod.xml"
  1239. xpointer="ldapSrv"
  1240. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1241. <sect3>
  1242. <title>LDAP Server Process Instances</title>
  1243. <para>This tab allows you to add instances to your LDAP
  1244. Configuration. In order to add instances you would have previously
  1245. added the LDAP computers in the Hardware section. For a complete
  1246. description of how to add LDAP Authentication see <emphasis>Using
  1247. LDAP Authentication</emphasis> section in the <emphasis
  1248. role="bluebold">Installing and Running The HPCC Platform</emphasis>
  1249. document.</para>
  1250. <orderedlist>
  1251. <listitem>
  1252. <para>On the <emphasis role="bold">Instances</emphasis> tab,
  1253. right-click on the table on the right hand side, choose
  1254. <emphasis role="bold">Add Instances...</emphasis></para>
  1255. </listitem>
  1256. <listitem>
  1257. <para>Select the computer to use by checking the box next to
  1258. it.</para>
  1259. <para>This is the computer you added in the <emphasis
  1260. role="bold">Hardware</emphasis> / <emphasis role="bold">Add New
  1261. Computers</emphasis> portion earlier.</para>
  1262. </listitem>
  1263. </orderedlist>
  1264. </sect3>
  1265. <sect3>
  1266. <title>LDAP Server Process Notes</title>
  1267. <para>This tab allows you to add any notes pertinent to the
  1268. component's configuration. This can be useful to keep a record of
  1269. changes and to communicate this information to peers.</para>
  1270. </sect3>
  1271. </sect2>
  1272. <sect2 role="brk">
  1273. <title>Sasha Server</title>
  1274. <sect3>
  1275. <title>Instances</title>
  1276. <orderedlist>
  1277. <listitem>
  1278. <para>Select Sasha Server in the menu on the left side.</para>
  1279. </listitem>
  1280. <listitem>
  1281. <para>Select the Instances tab.</para>
  1282. </listitem>
  1283. <listitem>
  1284. <para>In the computer column, choose a node from the drop list
  1285. as shown below:</para>
  1286. </listitem>
  1287. </orderedlist>
  1288. <graphic fileref="images/CM-img17.jpg" vendor="configmgrSS" />
  1289. </sect3>
  1290. <sect3 role="brk">
  1291. <title>Sasha Server Attributes</title>
  1292. <!--***Might-Want-to-add-CM-Sasha17A.jpg-image-***-->
  1293. <para>This section described the SashaServerProcess <emphasis
  1294. role="bold">Attribute</emphasis> tab values.</para>
  1295. <graphic fileref="images/CM-Sasha17A.jpg" vendor="configmgrSS" />
  1296. <!--configMgr-Sasha-t1-Include-XXX-20-->
  1297. <para>
  1298. <xi:include href="XMLGeneration/xml/sasha.xsd.mod.xml"
  1299. xpointer="sh.t1"
  1300. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1301. </para>
  1302. </sect3>
  1303. <?hard-pagebreak ?>
  1304. <sect3>
  1305. <title>SashaServer Process Archiver</title>
  1306. <para>This section describes the SashaServer Process Archiver
  1307. tab.</para>
  1308. <para>
  1309. <graphic fileref="images/CM-img17-1.jpg" vendor="configmgrSS" />
  1310. </para>
  1311. <!--configMgr-Sasha-Archiver-Include-XXX-21-->
  1312. <para>
  1313. <xi:include href="XMLGeneration/xml/sasha.xsd.mod.xml"
  1314. xpointer="sh.t2"
  1315. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1316. </para>
  1317. <para />
  1318. </sect3>
  1319. <sect3 role="brk">
  1320. <title>SashaServer Process Coalescer</title>
  1321. <para>This section describes the SashaServer Process Coalescer
  1322. tab.</para>
  1323. <para>
  1324. <graphic fileref="images/CM-img17-2.jpg" vendor="configmgrSS" />
  1325. </para>
  1326. <!--configMgr-Sasha-Coaleser-Include-XXX-22-->
  1327. <para>
  1328. <xi:include href="XMLGeneration/xml/sasha.xsd.mod.xml"
  1329. xpointer="sh.t3"
  1330. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1331. </para>
  1332. </sect3>
  1333. <?hard-pagebreak ?>
  1334. <sect3>
  1335. <title>SashaServer Process DfuXRef</title>
  1336. <para>This section describes the SashaServer Process DfuXref
  1337. tab.</para>
  1338. <para>
  1339. <graphic fileref="images/CM-img17-3.jpg" vendor="configmgrSS" />
  1340. </para>
  1341. <!--configMgr-Sasha-DfuXref-Include-XXX-23-->
  1342. <para>
  1343. <xi:include href="XMLGeneration/xml/sasha.xsd.mod.xml"
  1344. xpointer="sh.t4"
  1345. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1346. </para>
  1347. </sect3>
  1348. <?hard-pagebreak ?>
  1349. <sect3>
  1350. <title>SashaServer Process DfuExpiry</title>
  1351. <para>This section describes the SashaServer Process DfuExpiry
  1352. tab.</para>
  1353. <para>
  1354. <graphic fileref="images/CM-img17-4.jpg" vendor="configmgrSS" />
  1355. </para>
  1356. <para />
  1357. <!--configMgr-Sasha-DfuExpiry-Include-XXX-24-->
  1358. <para>
  1359. <xi:include href="XMLGeneration/xml/sasha.xsd.mod.xml"
  1360. xpointer="sh.t5"
  1361. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1362. </para>
  1363. </sect3>
  1364. <?hard-pagebreak ?>
  1365. <sect3>
  1366. <title>SashaServer Process ThorQMon</title>
  1367. <para>This section describes the SashaServer Process ThorQMon
  1368. tab.</para>
  1369. <para>
  1370. <graphic fileref="images/CM-img17-5.jpg" vendor="configmgrSS" />
  1371. </para>
  1372. <!--configMgr-Sasha-ThorQMon-IncludeXXX-25-->
  1373. <para>
  1374. <xi:include href="XMLGeneration/xml/sasha.xsd.mod.xml"
  1375. xpointer="sh.t6"
  1376. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1377. </para>
  1378. </sect3>
  1379. <?hard-pagebreak ?>
  1380. <sect3>
  1381. <title>SashaServer Process DaFileSrvMonitor</title>
  1382. <para>This section describes the SashaServer Process
  1383. DaFileSrvMonitor tab.</para>
  1384. <para>
  1385. <graphic fileref="images/CM-img17-6.jpg" vendor="configmgrSS" />
  1386. </para>
  1387. <!--configMgr-Sasha-DafiSrvMon-Include-XXX26-->
  1388. <para>
  1389. <xi:include href="XMLGeneration/xml/sasha.xsd.mod.xml"
  1390. xpointer="sh.t7"
  1391. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1392. </para>
  1393. </sect3>
  1394. <sect3>
  1395. <title>SashaServer Process Notes</title>
  1396. <para>This tab allows you to add any notes pertinent to the
  1397. component's configuration. This can be useful to keep a record of
  1398. changes and to communicate this information to peers.</para>
  1399. </sect3>
  1400. </sect2>
  1401. <sect2 id="Thor" role="brk">
  1402. <title>Thor</title>
  1403. <para>This section details how to define a Data Refinery (Thor)
  1404. cluster. Before you begin, you should decide the width of the cluster
  1405. (i.e., how many slave nodes will you have).</para>
  1406. <orderedlist>
  1407. <listitem>
  1408. <para>Select <emphasis role="bold">Thor Cluster -
  1409. mythor</emphasis> in the Navigator panel on the left side.</para>
  1410. </listitem>
  1411. <listitem>
  1412. <para>Select the <emphasis role="bold">Topology</emphasis>
  1413. tab.</para>
  1414. </listitem>
  1415. <listitem>
  1416. <para>Expand the Topology, if needed, then right-click the Master
  1417. and select Delete.</para>
  1418. </listitem>
  1419. </orderedlist>
  1420. <para>This deletes the sample one-node Thor.</para>
  1421. <para>You will replace this with a multi-node cluster.</para>
  1422. <orderedlist>
  1423. <listitem>
  1424. <?dbfo keep-together="always"?>
  1425. <para>right-click on the Topology and select Add Master.</para>
  1426. <para>
  1427. <graphic fileref="images/CM-img13.jpg" vendor="configmgrSS" />
  1428. </para>
  1429. </listitem>
  1430. <listitem>
  1431. <?dbfo keep-together="always"?>
  1432. <para>Select a computer from the list, then press the OK
  1433. button.</para>
  1434. <para>
  1435. <graphic fileref="images/CM-112-5.jpg" vendor="configmgrSS" />
  1436. </para>
  1437. </listitem>
  1438. <listitem>
  1439. <?dbfo keep-together="always"?>
  1440. <para>Right-click on the Master and select Add Slaves.</para>
  1441. <para>
  1442. <graphic fileref="images/CM-111.jpg" vendor="configmgrSS" />
  1443. </para>
  1444. </listitem>
  1445. <listitem>
  1446. <?dbfo keep-together="always"?>
  1447. <para>Select the computers to use as slaves from the list, then
  1448. press the OK button. Use CTRL+CLICK to multi-select or SHIFT+CLICK
  1449. to select a range.</para>
  1450. <para><graphic fileref="images/CM-112-3.jpg"
  1451. vendor="configmgrSS" />The Nodes now display below the Thor Master
  1452. node.</para>
  1453. <para>
  1454. <graphic fileref="images/CM-img14.jpg" vendor="configmgrSS" />
  1455. </para>
  1456. </listitem>
  1457. <listitem>
  1458. <para>Select Thor Cluster - mythor in the Navigator panel on the
  1459. left side.</para>
  1460. </listitem>
  1461. <listitem>
  1462. <?dbfo keep-together="always"?>
  1463. <para>Select the Attributes tab.</para>
  1464. <para>
  1465. <graphic fileref="images/CM-img15.jpg" vendor="configmgrSS" />
  1466. </para>
  1467. </listitem>
  1468. <listitem>
  1469. <para>Change the value of the localThor to <emphasis
  1470. role="bold">false</emphasis></para>
  1471. </listitem>
  1472. <listitem>
  1473. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  1474. disk icon to save</para>
  1475. </listitem>
  1476. </orderedlist>
  1477. <?hard-pagebreak ?>
  1478. <sect3>
  1479. <title>Changing Thor topology</title>
  1480. <para>If you want to designate a different node as the Thor master
  1481. when setting up a multi-node system, follow these steps.</para>
  1482. <orderedlist>
  1483. <listitem>
  1484. <para>Select <emphasis role="bold">Thor Cluster -
  1485. mythor</emphasis> in the Navigator panel on the left
  1486. side.</para>
  1487. </listitem>
  1488. <listitem>
  1489. <para>Select the <emphasis role="bold">Topology</emphasis>
  1490. tab.</para>
  1491. </listitem>
  1492. <listitem>
  1493. <para>right-click on the Master node</para>
  1494. </listitem>
  1495. <listitem>
  1496. <?dbfo keep-together="always"?>
  1497. <para>Select the <emphasis role="bold">Replace Master</emphasis>
  1498. option.</para>
  1499. <para>
  1500. <graphic fileref="images/CM-111-2.jpg" vendor="configmgrSS" />
  1501. </para>
  1502. <para>
  1503. <informaltable colsep="1" frame="all" rowsep="1">
  1504. <?dbfo keep-together="always"?>
  1505. <tgroup cols="2">
  1506. <colspec colwidth="49.50pt" />
  1507. <colspec />
  1508. <tbody>
  1509. <row>
  1510. <entry>
  1511. <inlinegraphic fileref="images/caution.png" />
  1512. </entry>
  1513. <entry>You should only use this feature when initially
  1514. setting up your system. If there is data on the nodes
  1515. when attempting to Swap Master, you run the risk of
  1516. losing or corrupting some data.</entry>
  1517. </row>
  1518. </tbody>
  1519. </tgroup>
  1520. </informaltable>
  1521. </para>
  1522. </listitem>
  1523. </orderedlist>
  1524. </sect3>
  1525. <?hard-pagebreak ?>
  1526. <sect3>
  1527. <title>ThorCluster Attributes</title>
  1528. <para>This section describes the Thor Cluster Attributes tab.</para>
  1529. <para>
  1530. <graphic fileref="images/CM-img18-1.jpg" vendor="configmgrSS" />
  1531. </para>
  1532. <para>
  1533. <emphasis role="bold">Thor Memory Settings</emphasis>
  1534. </para>
  1535. <para>If <emphasis role="bold">globalMemorySize</emphasis> is left
  1536. unset, Thor[master] detects total physical memory and allocates 75%
  1537. of it. If there are multiple slaves per node (slavesPerNode&gt;1) it
  1538. divides the total among the slaves. If globalMemorySize is defined,
  1539. then it allocates that amount of memory to each slave. The
  1540. masterMemorySize attribute allocates memory for the Thor master. If
  1541. omitted, Thor master uses globalMemorySize, or the default 75% of
  1542. memory.</para>
  1543. <para>On systems with a lot of memory, the default 75% of physical
  1544. memory is probably too conservative and reserving total physical
  1545. minus 2GB (for the OS and other processes) is sensible. You should
  1546. then divide that number by the number of slavesPerNode.</para>
  1547. <para>If there are multiple Thors sharing the same nodes, then
  1548. globalMemorySize must be configured to take that into
  1549. account.</para>
  1550. <para>For example, if there are 2 Thors each with 2 slaves per box,
  1551. that will mean there are 4 slaves per physical node. So you should
  1552. use a formula similar to the following in your calculations when
  1553. configuring globalMemorySize:</para>
  1554. <programlisting>globalMemorySize = (total-physical-memory)-2GB / (2*2) </programlisting>
  1555. <para>Without any specified setting, Thor assumes it has exclusive
  1556. access to the memory and would therefore use too much (because each
  1557. Thor is unaware of the other's configuration and memory
  1558. usage).</para>
  1559. <para>if <emphasis role="bold">localThor</emphasis> is set to true
  1560. and <emphasis role="bold">masterMemorySize</emphasis> and <emphasis
  1561. role="bold">globalMemorySize</emphasis> are unspecified, then the
  1562. defaults will be 50% for <emphasis
  1563. role="bold">globalMemorySize</emphasis> (divided by <emphasis
  1564. role="bold">slavesPerNode</emphasis>) and 25% for <emphasis
  1565. role="bold">masterMemorySize.</emphasis></para>
  1566. <para>Although a configuration may be set using upper memory limits
  1567. that exceed total physical memory, Thor will not actually reserve
  1568. the memory ahead of time and will only hit memory problems when and
  1569. if your jobs use all of memory. So, for example, two Thors that are
  1570. configured to use all available memory could peacefully co-exist
  1571. until a query on each are simultaneously using more memory than the
  1572. node has available.</para>
  1573. <!--configMgr-Thor-Attribute-Include-XXX-->
  1574. <para>
  1575. <xi:include href="XMLGeneration/xml/thor.xsd.mod.xml"
  1576. xpointer="Th.t1"
  1577. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1578. </para>
  1579. </sect3>
  1580. <?hard-pagebreak ?>
  1581. <sect3>
  1582. <title>ThorCluster SSH Options</title>
  1583. <para>This section describes the ThorCluster SSH Options tab.</para>
  1584. <para>
  1585. <graphic fileref="images/CM-img18-2.jpg" vendor="configmgrSS" />
  1586. </para>
  1587. <!--configMgr-Thor-SSH-Include-XXX-->
  1588. <para>
  1589. <xi:include href="XMLGeneration/xml/thor.xsd.mod.xml"
  1590. xpointer="Th.t3"
  1591. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1592. </para>
  1593. </sect3>
  1594. <sect3>
  1595. <title>ThorCluster Debug</title>
  1596. <para>The debug tab is for internal use only</para>
  1597. </sect3>
  1598. <?hard-pagebreak ?>
  1599. <sect3>
  1600. <title>ThorCluster Swap Node</title>
  1601. <para>This section describes the ThorCluster Swap Node tab.</para>
  1602. <para>
  1603. <graphic fileref="images/CM-img18-4.jpg" vendor="configmgrSS" />
  1604. </para>
  1605. <!--configMgr-Thor-SwapNode-Include-XXX-->
  1606. <para>
  1607. <xi:include href="XMLGeneration/xml/thor.xsd.mod.xml"
  1608. xpointer="Th.t4"
  1609. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1610. </para>
  1611. </sect3>
  1612. <?hard-pagebreak ?>
  1613. <sect3>
  1614. <title>ThorCluster Notes</title>
  1615. <para>This tab allows you to add any notes pertinent to the
  1616. component's configuration. This can be useful to keep a record of
  1617. changes and to communicate this information to peers.</para>
  1618. </sect3>
  1619. </sect2>
  1620. <sect2 id="Roxie" role="brk">
  1621. <title>Roxie</title>
  1622. <para>This section details how to define a Rapid Data Delivery Engine
  1623. (Roxie) cluster. Before you begin, you should decide the width of the
  1624. cluster (i.e., how many agent nodes will you have).</para>
  1625. <!--***This section appears to have had signifcent changes*** -->
  1626. <orderedlist>
  1627. <listitem>
  1628. <para>Select <emphasis role="bold">Roxie Cluster</emphasis> in the
  1629. Navigator panel on the left side.</para>
  1630. <para><emphasis role="bold">Note:</emphasis> If you did not
  1631. specify a value in the <emphasis>Number of nodes for Roxie cluster
  1632. </emphasis>field when you first set up your environment, you will
  1633. not have a Roxie Cluster. To add a Roxie Cluster component:
  1634. Right-click on the <emphasis role="bold">Software</emphasis>
  1635. component in the Navigator Panel, then select <emphasis
  1636. role="bold">New Components</emphasis> then <emphasis
  1637. role="bold">roxie</emphasis> from the drop lists.</para>
  1638. </listitem>
  1639. <listitem>
  1640. <para>Select the <emphasis role="bold">Servers</emphasis>
  1641. tab.</para>
  1642. </listitem>
  1643. <listitem>
  1644. <?dbfo keep-together="always"?>
  1645. <para>Right-click the Roxie Servers and select
  1646. <guimenuitem>Reconfigure Servers</guimenuitem>.</para>
  1647. <para>
  1648. <graphic fileref="images/CM-112.jpg" vendor="configmgrSS" />
  1649. </para>
  1650. </listitem>
  1651. <listitem>
  1652. <?dbfo keep-together="always"?>
  1653. <para>Select the computers to use as Servers from the list, then
  1654. press the OK button.</para>
  1655. <para>
  1656. <graphic fileref="images/CM-112-2.jpg" vendor="configmgrSS" />
  1657. </para>
  1658. </listitem>
  1659. <listitem>
  1660. <para>Select the <emphasis role="bold">Redundancy</emphasis>
  1661. tab.</para>
  1662. </listitem>
  1663. <listitem>
  1664. <?dbfo keep-together="always"?>
  1665. <para>Select the redundancy scheme to use. Typically, this is
  1666. cyclic redundancy, as shown below.</para>
  1667. <para>
  1668. <graphic fileref="images/CM-112-1.jpg" vendor="configmgrSS" />
  1669. </para>
  1670. </listitem>
  1671. <listitem>
  1672. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  1673. disk icon to save</para>
  1674. </listitem>
  1675. <listitem>
  1676. <para>Close Configuration Manager by pressing ctrl+C in the
  1677. command window where it is running.</para>
  1678. </listitem>
  1679. </orderedlist>
  1680. </sect2>
  1681. <!--configMgr-ROXIE-Include-SEC4-->
  1682. <?hard-pagebreak ?>
  1683. <xi:include href="XMLGeneration/xml/roxie.xsd.mod.xml"
  1684. xpointer="element(/1)"
  1685. xmlns:xi="http://www.w3.org/2001/XInclude" />
  1686. <sect2 id="Topology" role="brk">
  1687. <title>Topology</title>
  1688. <para>This section describes the topology tab.</para>
  1689. <para>
  1690. <graphic fileref="images/CM-img20.jpg" vendor="configmgrSS" />
  1691. <informaltable colsep="0" frame="none" rowsep="0">
  1692. <tgroup cols="2">
  1693. <colspec align="left" colwidth="122.40pt" />
  1694. <colspec />
  1695. <tbody>
  1696. <row>
  1697. <entry>Attribute name</entry>
  1698. <entry>Definition</entry>
  1699. </row>
  1700. <row>
  1701. <entry>
  1702. <emphasis>Topology</emphasis>
  1703. </entry>
  1704. <entry>describes the system topology</entry>
  1705. </row>
  1706. <row>
  1707. <entry>
  1708. <emphasis>Cluster - thor</emphasis>
  1709. </entry>
  1710. <entry>describes the Thor clusters</entry>
  1711. </row>
  1712. <row>
  1713. <entry>
  1714. <emphasis>Cluster - hthor</emphasis>
  1715. </entry>
  1716. <entry>describes the hthor clusters</entry>
  1717. </row>
  1718. <row>
  1719. <entry>
  1720. <emphasis>Cluster - roxie</emphasis>
  1721. </entry>
  1722. <entry>describes the Roxie clusters</entry>
  1723. </row>
  1724. </tbody>
  1725. </tgroup>
  1726. </informaltable>
  1727. </para>
  1728. </sect2>
  1729. <sect2 id="Propogate-configuration-changes" role="brk">
  1730. <title>Distribute Configuration Changes to all Nodes</title>
  1731. <para>Once your environment is set up as desired, you must copy the
  1732. configuration file to the other nodes.</para>
  1733. <para />
  1734. <orderedlist>
  1735. <listitem>
  1736. <para>If it is running, stop the system</para>
  1737. <para>
  1738. <informaltable colsep="1" frame="all" rowsep="1">
  1739. <?dbfo keep-together="always"?>
  1740. <tgroup cols="2">
  1741. <colspec colwidth="49.50pt" />
  1742. <colspec />
  1743. <tbody>
  1744. <row>
  1745. <entry>
  1746. <inlinegraphic fileref="images/caution.png" />
  1747. </entry>
  1748. <entry>Be sure system is stopped before attempting to
  1749. copy the Environment.xml file.</entry>
  1750. </row>
  1751. </tbody>
  1752. </tgroup>
  1753. </informaltable>
  1754. </para>
  1755. </listitem>
  1756. <listitem>
  1757. <para>Back up the original environment.xml file</para>
  1758. <programlisting># for example
  1759. sudo -u hpcc cp /etc/HPCCSystems/environment.xml /etc/HPCCSystems/environment.bak </programlisting>
  1760. <para>Note: the "live environment.xml file is located in your
  1761. <emphasis role="bold">/etc/HPCCSystems/</emphasis> directory.
  1762. ConfigManager works on files in <emphasis
  1763. role="bold">/etc/HPCCSystems/source</emphasis> directory. You must
  1764. copy from this location to make an environment.xml file
  1765. active.</para>
  1766. </listitem>
  1767. <listitem>
  1768. <para>Copy the NewEnvironment.xml file from the source directory
  1769. to the /etc/HPCCSystems and rename the file to
  1770. environment.xml</para>
  1771. <programlisting># for example
  1772. sudo -u hpcc cp /etc/HPCCSystems/source/NewEnvironment.xml /etc/HPCCSystems/environment.xml</programlisting>
  1773. <para />
  1774. </listitem>
  1775. <listitem>
  1776. <para>Copy the /etc/HPCCSystems/environment.xml to the
  1777. /etc/HPCCSystems/ on every node.</para>
  1778. <para />
  1779. </listitem>
  1780. <listitem>
  1781. <para>Restart the HPCC system</para>
  1782. <para>You might prefer to script this process, especially if you
  1783. have many nodes. See the Example Scripts section in the Appendix
  1784. of the Installing_and_RunningtheHPCCPlatform document. You can use
  1785. the scripts as a model to create your own script to copy the
  1786. environment.xml file out to all your nodes.</para>
  1787. </listitem>
  1788. </orderedlist>
  1789. </sect2>
  1790. </sect1>
  1791. </chapter>
  1792. </book>