UsingConfigManager.xml 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300
  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>
  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> Please include
  18. <emphasis role="bold">Documentation Feedback</emphasis> in the subject
  19. line and reference the document name, page numbers, and current Version
  20. Number in the text of the message.</para>
  21. <para>LexisNexis and the Knowledge Burst logo are registered trademarks
  22. of Reed Elsevier Properties Inc., used under license. Other products,
  23. logos, and services may be trademarks or registered trademarks of their
  24. respective companies. All names and example data used in this manual are
  25. fictitious. Any similarity to actual persons, living or dead, is purely
  26. coincidental.</para>
  27. <para></para>
  28. </legalnotice>
  29. <xi:include href="Version.xml" xpointer="FooterInfo"
  30. xmlns:xi="http://www.w3.org/2001/XInclude" />
  31. <xi:include href="Version.xml" xpointer="DateVer"
  32. xmlns:xi="http://www.w3.org/2001/XInclude" />
  33. <corpname>HPCC Systems</corpname>
  34. <xi:include href="Version.xml" xpointer="Copyright"
  35. xmlns:xi="http://www.w3.org/2001/XInclude" />
  36. <mediaobject role="logo">
  37. <imageobject>
  38. <imagedata fileref="images/LN_Rightjustified.jpg" />
  39. </imageobject>
  40. </mediaobject>
  41. </bookinfo>
  42. <chapter id="Buildin-HPCC-from-Source">
  43. <title>Using Configuration Manager</title>
  44. <para>Configuration Manager is the utility with which we configure the
  45. HPCC platform. The HPCC platform's configuration is stored in an XML file
  46. named <emphasis role="bold">environment.xml</emphasis>. When you install a
  47. package, a default single-node environment.xml is generated. After that,
  48. you can use the Configuration Manager to modify it and add nodes and
  49. configure components.</para>
  50. <para>The Configuration Manager Wizard creates a similar file, but after
  51. it is generated, you must rename it and put it into place on each
  52. node.</para>
  53. <para>Configuration Manager also offers an <emphasis role="bold">Advanced
  54. View</emphasis> which allows you to add instances of components or change
  55. the default settings for components. Even if you plane to use Advanced
  56. View, it is a good idea to start with a wizard generated configuration and
  57. use Advanced View to finish it.</para>
  58. <para>This document will guide you through configuring an HPCC environment
  59. using the Configuration Manager.</para>
  60. <sect1 id="configuring-a-multi-node-system">
  61. <title>Running the Configuration Manager</title>
  62. <para>This document will guide you through configuring an HPCC
  63. environment using the Configuration Manager.</para>
  64. <itemizedlist mark="square">
  65. <listitem>
  66. <para>The HPCC packages should already be installed on ALL
  67. nodes.</para>
  68. <para>You can use any tool or shell script you choose.</para>
  69. </listitem>
  70. <listitem>
  71. <para>SSH to the first box in your environment and login as a user
  72. with sudo privileges.</para>
  73. </listitem>
  74. </itemizedlist>
  75. <itemizedlist mark="square">
  76. <listitem>
  77. <para>Start the Configuration Manager service on one node (usually
  78. the first node is considered the head node and is used for this
  79. task, but this is up to you).</para>
  80. <programlisting>sudo /opt/HPCCSystems/sbin/configmgr</programlisting>
  81. <para><graphic fileref="images/gs_img_configmgrStart.jpg" /></para>
  82. </listitem>
  83. </itemizedlist>
  84. <itemizedlist>
  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. </listitem>
  90. </itemizedlist>
  91. <itemizedlist mark="square">
  92. <listitem>
  93. <para>The Configuration Manager startup wizard displays.</para>
  94. <para>There are a few different ways to configure your HPCC. You can
  95. use the Generate environment wizard or experienced users can use the
  96. Advanced View.</para>
  97. <itemizedlist>
  98. <listitem>
  99. <?dbfo keep-together="always"?>
  100. <para>To use the wizard select the <emphasis
  101. role="bold">Generate new environment using wizard</emphasis>
  102. button.</para>
  103. <para><graphic
  104. fileref="images/GS_ConfigMgrWizStart.jpg" /></para>
  105. </listitem>
  106. <listitem>
  107. <para>Provide a name for the environment file.</para>
  108. <para>This will then be the name of the configuration xml. For
  109. example we will name our environment
  110. <emphasis>NewEnvironment</emphasis>. This will produce an XML
  111. file named<emphasis> NewEnvironment.xml</emphasis>.</para>
  112. </listitem>
  113. <listitem>
  114. <para>Press the Next button.</para>
  115. <para>Next you will need to define the IP addresses that your
  116. HPCC will be using.</para>
  117. </listitem>
  118. </itemizedlist>
  119. <itemizedlist>
  120. <listitem>
  121. <?dbfo keep-together="always"?>
  122. <para>Enter the IP addresses.</para>
  123. <para>IP Addresses can be specified individually using
  124. semi-colon delimiters. You can also specify a range of IPs using
  125. a hyphen (for example, nnn.nnn.nnn.x-y). In the image below, we
  126. specified the IP addresses 10.239.219.1 through 10.239.219.100
  127. using the range syntax, and also a single IP
  128. 10.239.219.111.</para>
  129. <para><graphic fileref="images/GS_ConfigMgrWiz002.jpg" /></para>
  130. </listitem>
  131. <listitem>
  132. <para>Press the Next button.</para>
  133. <para>Alternatively, you could find the IP addresses using Auto
  134. Discovery by selecting the Auto Discovery button. (Auto
  135. Discovery is only available in Enterprise Edition)</para>
  136. <para>Now you will define how many nodes to use for the Roxie
  137. and Thor clusters.</para>
  138. </listitem>
  139. </itemizedlist>
  140. <itemizedlist>
  141. <listitem>
  142. <?dbfo keep-together="always"?>
  143. <para>Enter the appropriate values as indicated.</para>
  144. <para><graphic fileref="images/GS_CMWiz003.jpg" /></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
  165. Thor cluster. A Thor master node will be added
  166. automatically.</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
  174. not 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. </itemizedlist>
  188. <itemizedlist>
  189. <listitem>
  190. <para>Press the <emphasis role="bold">Next</emphasis>
  191. button</para>
  192. <para>The wizard displays the configuration parameters.</para>
  193. </listitem>
  194. <listitem>
  195. <?dbfo keep-together="always"?>
  196. <para>Press the <emphasis role="bold">Finish</emphasis> button
  197. to accept these values or press the <emphasis
  198. role="bold">Advanced View</emphasis> button to edit in advanced
  199. mode.</para>
  200. <graphic fileref="images/GS_ConfigMgrWiz004.jpg" />
  201. </listitem>
  202. </itemizedlist>
  203. <para>You will now be notified that you have completed the
  204. wizard.</para>
  205. <para><graphic fileref="images/GS_ConfigMgrWiz005.jpg" /></para>
  206. <para>At this point, you have created a file named
  207. NewEnvironment.xml in the <emphasis
  208. role="bold">/etc/HPCCSystems/source</emphasis> directory</para>
  209. <informaltable colsep="1" frame="all" rowsep="1">
  210. <?dbfo keep-together="always"?>
  211. <tgroup cols="2">
  212. <colspec colwidth="49.50pt" />
  213. <colspec />
  214. <tbody>
  215. <row>
  216. <entry><inlinegraphic fileref="images/OSSgr3.png" /></entry>
  217. <entry>Keep in mind, that your HPPC configuration may be
  218. different depending on your needs. For example, you may not
  219. need a Roxie or you may need several smaller Roxie clusters.
  220. In addition, in a production [Thor] system, you would ensure
  221. that Thor and Roxie nodes are dedicated and have no other
  222. processes running on them. This document is intended to show
  223. you how to use the configuration tools. Capacity planning
  224. and system design is covered in a training module.</entry>
  225. </row>
  226. </tbody>
  227. </tgroup>
  228. </informaltable>
  229. </listitem>
  230. <listitem>
  231. <?dbfo keep-together="always"?>
  232. <para>Stop the HPCC</para>
  233. <para><informaltable colsep="1" frame="all" rowsep="1">
  234. <tgroup cols="2">
  235. <colspec colwidth="49.50pt" />
  236. <colspec />
  237. <tbody>
  238. <row>
  239. <entry><inlinegraphic
  240. fileref="images/caution.png" /></entry>
  241. <entry>Be sure HPCC is stopped before attempting to move
  242. the environment.xml file.</entry>
  243. </row>
  244. </tbody>
  245. </tgroup>
  246. </informaltable></para>
  247. </listitem>
  248. <listitem>
  249. <para>Back up the original environment.xml file</para>
  250. <programlisting># for example
  251. sudo -u hpcc cp /etc/HPCCSystems/environment.xml /etc/HPCCSystems/environment.bak </programlisting>
  252. <para>Note: the "live environment.xml file is located in your
  253. <emphasis role="bold">/etc/HPCCSystems/</emphasis> directory.
  254. ConfigManager works on files in <emphasis
  255. role="bold">/etc/HPCCSystems/source</emphasis> directory. You must
  256. copy from this location to make an environment.xml file
  257. active.</para>
  258. </listitem>
  259. <listitem>
  260. <para>Copy the new .xml file from the source directory to the
  261. /etc/HPCCSystems and rename the file to
  262. <emphasis>environment.xml</emphasis></para>
  263. <programlisting># for example
  264. sudo -u hpcc cp /etc/HPCCSystems/source/NewEnvironment.xml /etc/HPCCSystems/environment.xml</programlisting>
  265. <para></para>
  266. </listitem>
  267. <listitem>
  268. <para>Copy the <emphasis
  269. role="bold">/etc/HPCCSystems/environment.xml</emphasis> to the
  270. <emphasis role="bold">/etc/HPCCSystems/</emphasis> on
  271. <emphasis>every</emphasis> node.</para>
  272. <para>You may want to use a script to push out XML file to all
  273. nodes. See the Example Scripts section in the Appendix of the
  274. Installing_and_RunningtheHPCCPlatform document. You can use the
  275. scripts as a model to create your own script to copy the
  276. environment.xml file out to all your nodes.</para>
  277. </listitem>
  278. <listitem>
  279. <para>Restart the HPCC platform.</para>
  280. </listitem>
  281. </itemizedlist>
  282. </sect1>
  283. </chapter>
  284. <chapter>
  285. <title>Configuration Manager Advanced View</title>
  286. <para>For the advanced user, the Advanced View offers access to adding
  287. additional instances of components or making configuration settings for
  288. individual components.</para>
  289. <sect1 id="configuring-advanced-setup">
  290. <title>Using ConfigMgr in Advanced Mode</title>
  291. <para>This section shows some of the configuration options in Advanced
  292. Mode.</para>
  293. <para><itemizedlist mark="square">
  294. <listitem>
  295. <para>SSH to the first box in your environment and login as a user
  296. with sudo privileges.</para>
  297. </listitem>
  298. <listitem>
  299. <para>If it is running, stop the HPCC system, using this
  300. command:</para>
  301. <para><programlisting>sudo /sbin/service hpcc-init stop</programlisting><informaltable
  302. colsep="1" frame="all" rowsep="1">
  303. <?dbfo keep-together="always"?>
  304. <tgroup cols="2">
  305. <colspec colwidth="49.50pt" />
  306. <colspec />
  307. <tbody>
  308. <row>
  309. <entry><inlinegraphic
  310. fileref="images/OSSgr3.png" /></entry>
  311. <entry>You can use this command to confirm HPCC
  312. processes are stopped: <para><programlisting>sudo /sbin/service hpcc-init status</programlisting></para></entry>
  313. </row>
  314. </tbody>
  315. </tgroup>
  316. </informaltable></para>
  317. </listitem>
  318. </itemizedlist><itemizedlist mark="square">
  319. <listitem>
  320. <para>Start the Configuration Manager service on one node (usually
  321. the first node is considered the head node and is used for this
  322. task, but this is up to you).</para>
  323. <programlisting>source /opt/HPCCSystems/sbin/hpcc_setenv
  324. sudo configmgr</programlisting>
  325. <para><graphic
  326. fileref="images/gs_img_configmgrStart.jpg" /></para>
  327. </listitem>
  328. </itemizedlist><itemizedlist>
  329. <listitem>
  330. <para>Using a Web browser, go to the Configuration Manager's
  331. interface:</para>
  332. <programlisting>http://&lt;<emphasis>ip of installed system</emphasis>&gt;:8015</programlisting>
  333. </listitem>
  334. </itemizedlist><itemizedlist mark="square">
  335. <listitem>
  336. <para>The Configuration Manager startup wizard displays.</para>
  337. <para>There are a few different ways to configure your system. You
  338. can use the Generate environment wizard or experienced users can
  339. use the Advanced set up.</para>
  340. <itemizedlist>
  341. <listitem>
  342. <para>Select <emphasis role="bold">Advanced View</emphasis>,
  343. then press the <emphasis role="bold">Next
  344. </emphasis>button.</para>
  345. </listitem>
  346. <listitem>
  347. <para>Select an XML file from the drop list.</para>
  348. <para>This list is populated from versions of an environment
  349. XML file in your server's ./etc/HPCCSystems/source/
  350. directory.</para>
  351. </listitem>
  352. <listitem>
  353. <?dbfo keep-together="always"?>
  354. <para>Press the <emphasis role="bold">Next</emphasis> button.
  355. <graphic fileref="images/CM-WizStart.jpg" /></para>
  356. </listitem>
  357. </itemizedlist>
  358. </listitem>
  359. </itemizedlist></para>
  360. <itemizedlist mark="circle">
  361. <listitem>
  362. <para>The Configuration Manager interface displays.</para>
  363. <para><informaltable colsep="1" frame="all" rowsep="1">
  364. <?dbfo keep-together="always"?>
  365. <tgroup cols="2">
  366. <colspec colwidth="49.50pt" />
  367. <colspec />
  368. <tbody>
  369. <row>
  370. <entry><inlinegraphic
  371. fileref="images/OSSgr3.png" /></entry>
  372. <entry>Default access is read-only. Many options are only
  373. available when write-access is enabled. <para>Gain write
  374. access by checking the <emphasis role="bold">Write
  375. Access</emphasis> checkbox. </para><para>Unchecking this
  376. box returns the environment to read-only mode. All menu
  377. items are disabled in read-only mode. </para><para>Closing
  378. the web page automatically removes any write-access
  379. locks.</para></entry>
  380. </row>
  381. </tbody>
  382. </tgroup>
  383. </informaltable></para>
  384. </listitem>
  385. <listitem>
  386. <para>Check the <emphasis role="bold">Write Access</emphasis>
  387. box.</para>
  388. <para><graphic fileref="images/CM-img101.jpg" />The Save
  389. button<inlinegraphic fileref="images/GS-img01c.png" /> validates and
  390. saves the environment.</para>
  391. <para>The validate button<inlinegraphic
  392. fileref="images/GS-img01d.png" /> just validates the current
  393. environment including any changes that have not yet been
  394. saved.</para>
  395. <para>The open button <inlinegraphic
  396. fileref="images/CM-img18.jpg" /> allows you to open a new
  397. environment file to work on.</para>
  398. <para>The wizard button <inlinegraphic
  399. fileref="images/CM-img19.jpg" /> will bring up the Configuration
  400. Manager chooser form which will allow you to create or view an
  401. environment file where you can also launch the configuration
  402. wizard.</para>
  403. <para>These buttons are only enabled in Write Access mode.</para>
  404. </listitem>
  405. </itemizedlist>
  406. <sect2>
  407. <title>Hardware Section</title>
  408. <para>This section allows you to define your list of servers. When
  409. defining instances of components, you will choose from servers in this
  410. list.</para>
  411. <itemizedlist mark="circle">
  412. <listitem>
  413. <?dbfo keep-together="always"?>
  414. <para>Select <emphasis role="bold">Hardware</emphasis> in the
  415. Navigator panel on the left side.</para>
  416. <para><graphic fileref="images/CM-img01.jpg" /></para>
  417. </listitem>
  418. </itemizedlist>
  419. <itemizedlist mark="square">
  420. <listitem>
  421. <para>Select the <emphasis role="bold">Computers</emphasis>
  422. tab.</para>
  423. </listitem>
  424. <listitem>
  425. <?dbfo keep-together="always"?>
  426. <para>RT-CLICK on one of computers listed, then select New
  427. Range.</para>
  428. <para><graphic fileref="images/CM-img02.jpg" /></para>
  429. </listitem>
  430. </itemizedlist>
  431. <itemizedlist mark="square">
  432. <listitem>
  433. <para>Specify the following:</para>
  434. <itemizedlist>
  435. <listitem>
  436. <para>Name Prefix - any name that will help you to identify
  437. the node or range</para>
  438. </listitem>
  439. <listitem>
  440. <para>Start IP Address</para>
  441. </listitem>
  442. <listitem>
  443. <para>Stop IP Address</para>
  444. <para>The IP Addresses can be specified in a range if all your
  445. host IP addresses are consecutively numbered. If the IP
  446. addresses are not sequential you should repeat the process for
  447. each individual IP address and just add the IP address in both
  448. the start and stop IP address field. You will then need to
  449. repeat the process for each node.</para>
  450. </listitem>
  451. </itemizedlist>
  452. </listitem>
  453. </itemizedlist>
  454. <itemizedlist mark="square">
  455. <listitem>
  456. <?dbfo keep-together="always"?>
  457. <para>Press the <emphasis role="bold">OK</emphasis> button.</para>
  458. <para>The list of nodes now displays with the nodes that you just
  459. added.</para>
  460. <para><inlinegraphic fileref="images/CM-img03.jpg" /></para>
  461. <para>Next, edit each System Server component instance and set it
  462. to a newly defined node.</para>
  463. <!--***The steps that follow are using one component per node. You can allocate more components per node, if needed.-->
  464. </listitem>
  465. <listitem>
  466. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  467. disk icon to save</para>
  468. </listitem>
  469. </itemizedlist>
  470. <itemizedlist mark="square">
  471. <listitem>
  472. <para>Expand the <emphasis role="bold">Software</emphasis>
  473. section, if necessary, in the Navigator panel on the left side, by
  474. clicking on the <inlinegraphic
  475. fileref="images/expandbutton.png" /> button.</para>
  476. </listitem>
  477. </itemizedlist>
  478. </sect2>
  479. <sect2>
  480. <title>Software Section</title>
  481. <para>Use the software components section to configure software
  482. components of the HPCC platform. Most software components are actual
  483. running processes; however, some are just definitions used by the
  484. system. These definitions are used by the configuration
  485. generator.</para>
  486. <sect3>
  487. <title>Dali</title>
  488. <sect4>
  489. <title>Instances</title>
  490. <para><itemizedlist mark="square">
  491. <listitem>
  492. <para>Select <emphasis role="bold">Dali Server</emphasis> in
  493. the Navigator panel on the left side.</para>
  494. </listitem>
  495. <listitem>
  496. <para>Select the Instances tab.</para>
  497. </listitem>
  498. <listitem>
  499. <?dbfo keep-together="always"?>
  500. <para>In the computer column, choose a node from the drop
  501. list as shown below:<graphic
  502. fileref="images/CM-img04.jpg" /></para>
  503. </listitem>
  504. <listitem>
  505. <para>Click the <inlinegraphic
  506. fileref="images/GS-img01c.png" /> disk icon to save</para>
  507. </listitem>
  508. </itemizedlist></para>
  509. </sect4>
  510. <sect4>
  511. <title>DaliServer attributes</title>
  512. <para>This section describes the DaliServer attributes.</para>
  513. <para><graphic fileref="images/CM-img04-1.jpg" /></para>
  514. <para><informaltable colsep="0" frame="none" rowsep="0">
  515. <tgroup cols="2">
  516. <colspec align="left" colwidth="122.40pt" />
  517. <colspec />
  518. <tbody>
  519. <row>
  520. <entry>Attribute</entry>
  521. <entry>Definition</entry>
  522. </row>
  523. <row>
  524. <entry><emphasis>AuditLogDir</emphasis></entry>
  525. <entry>Audit Log Process description</entry>
  526. </row>
  527. <row>
  528. <entry><emphasis>dataPath</emphasis></entry>
  529. <entry>the path to the data</entry>
  530. </row>
  531. <row>
  532. <entry><emphasis>description </emphasis></entry>
  533. <entry>data path description</entry>
  534. </row>
  535. <row>
  536. <entry><emphasis>environment</emphasis></entry>
  537. <entry>the current environment file in use</entry>
  538. </row>
  539. <row>
  540. <entry><emphasis>LogDir</emphasis></entry>
  541. <entry>location of the log files</entry>
  542. </row>
  543. <row>
  544. <entry><emphasis>msgLevel</emphasis></entry>
  545. <entry>description of the msgLevel</entry>
  546. </row>
  547. <row>
  548. <entry><emphasis>name</emphasis></entry>
  549. <entry>Name of the process instance (AlphaNumeric and
  550. underscore only)</entry>
  551. </row>
  552. </tbody>
  553. </tgroup>
  554. </informaltable></para>
  555. </sect4>
  556. <?hard-pagebreak ?>
  557. <sect4>
  558. <title>DaliServer store</title>
  559. <para>This section describes the attributes configuring how Dali
  560. handles the system data store.</para>
  561. <para><graphic fileref="images/CM-img04-2.jpg" /></para>
  562. <para><informaltable colsep="0" frame="none" rowsep="0">
  563. <tgroup cols="2">
  564. <colspec align="left" colwidth="122.40pt" />
  565. <colspec />
  566. <tbody>
  567. <row>
  568. <entry>Attribute name</entry>
  569. <entry>Definition</entry>
  570. </row>
  571. <row>
  572. <entry><emphasis>EndTime</emphasis></entry>
  573. <entry>End Time</entry>
  574. </row>
  575. <row>
  576. <entry><emphasis>IdlePeriod</emphasis></entry>
  577. <entry>Period to remain Idle</entry>
  578. </row>
  579. <row>
  580. <entry><emphasis>IdleRate</emphasis></entry>
  581. <entry>IdleRate</entry>
  582. </row>
  583. <row>
  584. <entry><emphasis>keepStores</emphasis></entry>
  585. <entry></entry>
  586. </row>
  587. <row>
  588. <entry><emphasis>lightweightCoalesce</emphasis></entry>
  589. <entry>lightweight</entry>
  590. </row>
  591. <row>
  592. <entry><emphasis>MinTime</emphasis></entry>
  593. <entry>min. time...</entry>
  594. </row>
  595. <row>
  596. <entry><emphasis>recoverDeltaErrors</emphasis></entry>
  597. <entry>True or False</entry>
  598. </row>
  599. <row>
  600. <entry><emphasis>StartTime</emphasis></entry>
  601. <entry>start time</entry>
  602. </row>
  603. </tbody>
  604. </tgroup>
  605. </informaltable></para>
  606. </sect4>
  607. <?hard-pagebreak ?>
  608. <sect4>
  609. <title>DaliServer LDAP options</title>
  610. <para>This section describes the DaliServer LDAP tab. (LDAP is
  611. only available in Enterprise Edition)</para>
  612. <para><graphic fileref="images/CM-img04-4.jpg" /></para>
  613. <para><informaltable colsep="0" frame="none" rowsep="0">
  614. <tgroup cols="2">
  615. <colspec align="left" colwidth="122.40pt" />
  616. <colspec />
  617. <tbody>
  618. <row>
  619. <entry>Attribute name</entry>
  620. <entry>Definition</entry>
  621. </row>
  622. <row>
  623. <entry><emphasis>authMethod</emphasis></entry>
  624. <entry>Authentication Method. Kerberos</entry>
  625. </row>
  626. <row>
  627. <entry><emphasis>checkScopeScans</emphasis></entry>
  628. <entry>True or False</entry>
  629. </row>
  630. <row>
  631. <entry><emphasis>filesBasedn</emphasis></entry>
  632. <entry>The Base File Type</entry>
  633. </row>
  634. <row>
  635. <entry><emphasis>filesDefaultPassword</emphasis></entry>
  636. <entry>Default Password</entry>
  637. </row>
  638. <row>
  639. <entry><emphasis>filesDefaultUser</emphasis></entry>
  640. <entry>Default User</entry>
  641. </row>
  642. <row>
  643. <entry><emphasis>ldapProtocol</emphasis></entry>
  644. <entry>Default Protocol use</entry>
  645. </row>
  646. <row>
  647. <entry><emphasis>ldapServer</emphasis></entry>
  648. <entry>LDAP Server</entry>
  649. </row>
  650. </tbody>
  651. </tgroup>
  652. </informaltable></para>
  653. </sect4>
  654. <sect4>
  655. <title>DaliServer Notes</title>
  656. <para>This tab allows you to add any notes pertinent to the
  657. component's configuration. This can be useful to keep a record of
  658. changes and to communicate this information to peers.</para>
  659. </sect4>
  660. </sect3>
  661. <sect3 id="Dafilesrv-Process">
  662. <title>Dafilesrv Process</title>
  663. <sect4>
  664. <title>Dafilesrv Instances</title>
  665. <para>Dafilesrv is a helper process that every node needs.</para>
  666. <itemizedlist mark="square">
  667. <listitem>
  668. <para>Select Dafilesrv in the Navigator panel on the left
  669. side.</para>
  670. </listitem>
  671. <listitem>
  672. <para>Select the Instances tab.</para>
  673. </listitem>
  674. <listitem>
  675. <para>RT-CLICK on a computer in the computer column, and
  676. select Add Instance .</para>
  677. </listitem>
  678. <listitem>
  679. <?dbfo keep-together="always"?>
  680. <para>Select all computers in the list, then press the OK
  681. button.</para>
  682. <para><graphic fileref="images/CM-img12.jpg"
  683. scalefit="1" /></para>
  684. </listitem>
  685. <listitem>
  686. <para>Click the <inlinegraphic
  687. fileref="images/GS-img01c.png" /> disk icon to save</para>
  688. </listitem>
  689. </itemizedlist>
  690. </sect4>
  691. <?hard-pagebreak ?>
  692. <sect4>
  693. <title>Dafilesrv attributes</title>
  694. <para>This section describes the Dafilesrv attributes.</para>
  695. <para><graphic fileref="images/CM-img12-1.jpg" /></para>
  696. <para><informaltable colsep="0" frame="none" rowsep="0">
  697. <tgroup cols="2">
  698. <colspec align="left" colwidth="122.40pt" />
  699. <colspec />
  700. <tbody>
  701. <row>
  702. <entry>Attribute</entry>
  703. <entry>Definition</entry>
  704. </row>
  705. <row>
  706. <entry><emphasis>description</emphasis></entry>
  707. <entry>DaFileSrv Process description</entry>
  708. </row>
  709. <row>
  710. <entry><emphasis>name</emphasis></entry>
  711. <entry>Name of the process instance (AlphaNumeric and
  712. underscore only)</entry>
  713. </row>
  714. <row>
  715. <entry><emphasis>version</emphasis></entry>
  716. <entry>current version number</entry>
  717. </row>
  718. </tbody>
  719. </tgroup>
  720. </informaltable></para>
  721. </sect4>
  722. </sect3>
  723. <sect3 id="DFU-Server">
  724. <title><emphasis>DFU Server</emphasis></title>
  725. <sect4>
  726. <title>DfuServer Instances</title>
  727. <itemizedlist mark="square">
  728. <listitem>
  729. <para>Select <emphasis role="bold">DFU Server</emphasis> in
  730. the Navigator panel on the left side.</para>
  731. </listitem>
  732. <listitem>
  733. <para>Select the Instances tab.</para>
  734. </listitem>
  735. <listitem>
  736. <para>In the computer column, choose a node from the drop list
  737. as shown below:<graphic
  738. fileref="images/CM-img05.jpg" /></para>
  739. </listitem>
  740. <listitem>
  741. <para>Click the <inlinegraphic
  742. fileref="images/GS-img01c.png" /> disk icon to save</para>
  743. </listitem>
  744. </itemizedlist>
  745. </sect4>
  746. <sect4>
  747. <title>DfuServer Attributes Tab</title>
  748. <para>This section describes the DfuServer attributes.</para>
  749. <para><graphic fileref="images/CM-img05-1.jpg" /></para>
  750. <para><informaltable colsep="0" frame="none" rowsep="0">
  751. <tgroup cols="2">
  752. <colspec align="left" colwidth="122.40pt" />
  753. <colspec />
  754. <tbody>
  755. <row>
  756. <entry>Attribute name</entry>
  757. <entry>Definition</entry>
  758. </row>
  759. <row>
  760. <entry><emphasis>daliServers</emphasis></entry>
  761. <entry>The Dali servers to use</entry>
  762. </row>
  763. <row>
  764. <entry><emphasis>description</emphasis></entry>
  765. <entry>Describes the component</entry>
  766. </row>
  767. <row>
  768. <entry><emphasis>dfuLogDir</emphasis></entry>
  769. <entry>The log directory</entry>
  770. </row>
  771. <row>
  772. <entry><emphasis>monitorinterval</emphasis></entry>
  773. <entry>the interval that the process checks ...</entry>
  774. </row>
  775. <row>
  776. <entry><emphasis>monitorque</emphasis></entry>
  777. <entry>the queue to monitor</entry>
  778. </row>
  779. <row>
  780. <entry><emphasis>name</emphasis></entry>
  781. <entry>Name of the process instance (AlphaNumeric and
  782. underscore only)</entry>
  783. </row>
  784. <row>
  785. <entry><emphasis>queue</emphasis></entry>
  786. <entry>the name of the dfu server queue</entry>
  787. </row>
  788. <row>
  789. <entry><emphasis>transferBufferSize</emphasis></entry>
  790. <entry>The value at which...</entry>
  791. </row>
  792. </tbody>
  793. </tgroup>
  794. </informaltable></para>
  795. </sect4>
  796. <sect4>
  797. <title>DfuServer SSH Options</title>
  798. <para>This section describes the DfuServer SSH Options..</para>
  799. <para><graphic fileref="images/CM-img05-2.jpg" /></para>
  800. <para><informaltable colsep="0" frame="none" rowsep="0">
  801. <?dbfo keep-together="always"?>
  802. <tgroup cols="2">
  803. <colspec align="left" colwidth="122.40pt" />
  804. <colspec />
  805. <tbody>
  806. <row>
  807. <entry>Attribute name</entry>
  808. <entry>Definition</entry>
  809. </row>
  810. <row>
  811. <entry><emphasis>SSHidentityfile</emphasis></entry>
  812. <entry>The SSH file used for authentication</entry>
  813. </row>
  814. <row>
  815. <entry><emphasis>SSHpassword</emphasis></entry>
  816. <entry>the SSH Password</entry>
  817. </row>
  818. <row>
  819. <entry><emphasis>SSHretries</emphasis></entry>
  820. <entry>no. of retries to authenticate</entry>
  821. </row>
  822. <row>
  823. <entry><emphasis>SHtimeout</emphasis></entry>
  824. <entry>the timeout interval</entry>
  825. </row>
  826. <row>
  827. <entry><emphasis>SSHusername</emphasis></entry>
  828. <entry>SSH username default is
  829. <emphasis>hpcc</emphasis></entry>
  830. </row>
  831. </tbody>
  832. </tgroup>
  833. </informaltable></para>
  834. </sect4>
  835. <sect4>
  836. <title>DfuServer Notes</title>
  837. <para>This tab allows you to add any notes pertinent to the
  838. component's configuration. This can be useful to keep a record of
  839. changes and to communicate this information to peers.</para>
  840. </sect4>
  841. </sect3>
  842. <sect3>
  843. <title>Directories</title>
  844. <para>The DIrectories component is a global definition used by other
  845. components to determine the directories they will use for various
  846. functions.</para>
  847. <para><graphic fileref="images/CM-161a.jpg" /></para>
  848. <para></para>
  849. <informaltable colsep="0" frame="none" rowsep="0">
  850. <tgroup cols="3">
  851. <colspec align="left" colwidth="122.40pt" />
  852. <colspec />
  853. <tbody>
  854. <row>
  855. <entry>Name</entry>
  856. <entry>Directory</entry>
  857. <entry>Description</entry>
  858. </row>
  859. <row>
  860. <entry><emphasis role="bold">log</emphasis></entry>
  861. <entry>/var/log/[NAME]/[INST]</entry>
  862. <entry>Location for Log files</entry>
  863. </row>
  864. <row>
  865. <entry><emphasis role="bold">temp</emphasis></entry>
  866. <entry>/var/lib/[NAME]/[INST]/temp</entry>
  867. <entry>Location for temp files</entry>
  868. </row>
  869. <row>
  870. <entry><emphasis role="bold">data</emphasis></entry>
  871. <entry></entry>
  872. <entry>Base Location for data files</entry>
  873. </row>
  874. <row>
  875. <entry><emphasis role="bold">data2</emphasis></entry>
  876. <entry></entry>
  877. <entry></entry>
  878. </row>
  879. <row>
  880. <entry><emphasis role="bold">data3</emphasis></entry>
  881. <entry></entry>
  882. <entry></entry>
  883. </row>
  884. <row>
  885. <entry><emphasis role="bold">mirror</emphasis></entry>
  886. <entry></entry>
  887. <entry>Base Location for mirror data files</entry>
  888. </row>
  889. <row>
  890. <entry><emphasis role="bold">query</emphasis></entry>
  891. <entry></entry>
  892. <entry>Base Location for Queries</entry>
  893. </row>
  894. <row>
  895. <entry><emphasis role="bold"></emphasis></entry>
  896. <entry></entry>
  897. <entry></entry>
  898. </row>
  899. </tbody>
  900. </tgroup>
  901. </informaltable>
  902. </sect3>
  903. <sect3 id="Drop-Zone">
  904. <title><emphasis>Drop Zone</emphasis></title>
  905. <sect4>
  906. <title>DropZone Attributes</title>
  907. <itemizedlist mark="square">
  908. <listitem>
  909. <para>Select Drop Zone in the Navigator panel on the left
  910. side.</para>
  911. </listitem>
  912. <listitem>
  913. <para>Select the Attributes tab.</para>
  914. </listitem>
  915. <listitem>
  916. <para>In the Value column of the Computer row, choose a node
  917. from the drop list as shown below:<graphic
  918. fileref="images/CM-img06.jpg" scale="90"
  919. scalefit="1" /></para>
  920. </listitem>
  921. <listitem>
  922. <para>Click the <inlinegraphic
  923. fileref="images/GS-img01c.png" /> disk icon to save</para>
  924. </listitem>
  925. </itemizedlist>
  926. </sect4>
  927. <sect4>
  928. <title>DropZone Notes</title>
  929. <para>This tab allows you to add any notes pertinent to the
  930. component's configuration. This can be useful to keep a record of
  931. changes and to communicate this information to peers.</para>
  932. </sect4>
  933. </sect3>
  934. <sect3 id="ECL-Agent">
  935. <title><emphasis>ECL Agent</emphasis></title>
  936. <sect4>
  937. <title>instances</title>
  938. <itemizedlist mark="square">
  939. <listitem>
  940. <para>Select ECL Agent in the Navigator panel on the left
  941. side.</para>
  942. </listitem>
  943. <listitem>
  944. <para>Select the Instances tab.</para>
  945. </listitem>
  946. <listitem>
  947. <para>In the computer column, choose a node from the drop list
  948. as shown below:<graphic
  949. fileref="images/CM-img07.jpg" /></para>
  950. </listitem>
  951. <listitem>
  952. <para>Click the <inlinegraphic
  953. fileref="images/GS-img01c.png" /> disk icon to save</para>
  954. </listitem>
  955. </itemizedlist>
  956. </sect4>
  957. <sect4>
  958. <title>EclAgent Attributes Tab</title>
  959. <para>This section describes the EclAgent Attributes tab.</para>
  960. <para><graphic fileref="images/CM-img07-1.jpg" /></para>
  961. <para><informaltable colsep="0" frame="none" rowsep="0">
  962. <tgroup cols="2">
  963. <colspec align="left" colwidth="122.40pt" />
  964. <colspec />
  965. <tbody>
  966. <row>
  967. <entry>Attribute name</entry>
  968. <entry>Definition</entry>
  969. </row>
  970. <row>
  971. <entry><emphasis>description</emphasis></entry>
  972. <entry>Describes the component</entry>
  973. </row>
  974. <row>
  975. <entry><emphasis>name</emphasis></entry>
  976. <entry>Name of the process instance (AlphaNumeric and
  977. underscore only)</entry>
  978. </row>
  979. </tbody>
  980. </tgroup>
  981. </informaltable></para>
  982. </sect4>
  983. <sect4>
  984. <title>EclAgent Options Tab</title>
  985. <para>This section describes the EclAgent Options tab.</para>
  986. <para><graphic fileref="images/CM-img07-2.jpg" /></para>
  987. <para><informaltable colsep="0" frame="none" rowsep="0">
  988. <tgroup cols="2">
  989. <colspec align="left" colwidth="122.40pt" />
  990. <colspec />
  991. <tbody>
  992. <row>
  993. <entry>Attribute name</entry>
  994. <entry>Definition</entry>
  995. </row>
  996. <row>
  997. <entry><emphasis>allowedPipePrograms</emphasis></entry>
  998. <entry>describes allowed Pipe Programs</entry>
  999. </row>
  1000. <row>
  1001. <entry><emphasis>daliServers</emphasis></entry>
  1002. <entry>the Dali Servers</entry>
  1003. </row>
  1004. <row>
  1005. <entry><emphasis>logDir</emphasis></entry>
  1006. <entry>The log directory</entry>
  1007. </row>
  1008. <row>
  1009. <entry><emphasis>pluginDirectory</emphasis></entry>
  1010. <entry>the plugin directory</entry>
  1011. </row>
  1012. <row>
  1013. <entry><emphasis>thorConnectTimeout</emphasis></entry>
  1014. <entry>the Thor timeout value</entry>
  1015. </row>
  1016. <row>
  1017. <entry><emphasis>traceLevel</emphasis></entry>
  1018. <entry>the trace level</entry>
  1019. </row>
  1020. <row>
  1021. <entry><emphasis>wuQueueName</emphasis></entry>
  1022. <entry>the name of the workunit queue</entry>
  1023. </row>
  1024. </tbody>
  1025. </tgroup>
  1026. </informaltable></para>
  1027. </sect4>
  1028. <sect4>
  1029. <title>EclAgentProcessNotes</title>
  1030. <para>This tab allows you to add any notes pertinent to the
  1031. component's configuration. This can be useful to keep a record of
  1032. changes and to communicate this information to peers.</para>
  1033. </sect4>
  1034. </sect3>
  1035. <sect3>
  1036. <title>ECL CC Server Process</title>
  1037. <sect4>
  1038. <title>Ecl CC Server Instances</title>
  1039. <para><itemizedlist mark="square">
  1040. <listitem>
  1041. <para>Select Ecl CC Server - myeclccserver in the Navigator
  1042. panel on the left side.</para>
  1043. </listitem>
  1044. <listitem>
  1045. <para>Select the Instances tab.</para>
  1046. </listitem>
  1047. <listitem>
  1048. <para>In the computer column, choose a node from the drop
  1049. list as shown below:<graphic
  1050. fileref="images/CM-ECLCC-01.jpg" /></para>
  1051. </listitem>
  1052. <listitem>
  1053. <para>Click the <inlinegraphic
  1054. fileref="images/GS-img01c.png" /> disk icon to save</para>
  1055. </listitem>
  1056. </itemizedlist></para>
  1057. </sect4>
  1058. <sect4>
  1059. <title>Ecl CC Server Attributes Tab</title>
  1060. <para>This section describes the Ecl CC Server Attributes
  1061. tab.</para>
  1062. <para><graphic fileref="images/CM-ECLCC-02.jpg" /></para>
  1063. <para><informaltable colsep="0" frame="none" rowsep="0">
  1064. <tgroup cols="2">
  1065. <colspec align="left" colwidth="122.40pt" />
  1066. <colspec />
  1067. <tbody>
  1068. <row>
  1069. <entry>Attribute name</entry>
  1070. <entry>Definition</entry>
  1071. </row>
  1072. <row>
  1073. <entry><emphasis>daliServers</emphasis></entry>
  1074. <entry>The Dali servers to use</entry>
  1075. </row>
  1076. <row>
  1077. <entry><emphasis>description</emphasis></entry>
  1078. <entry>Describes the component</entry>
  1079. </row>
  1080. <row>
  1081. <entry><emphasis>maxCompileThreads</emphasis></entry>
  1082. <entry>The maximum number of compile threads</entry>
  1083. </row>
  1084. <row>
  1085. <entry><emphasis>name</emphasis></entry>
  1086. <entry>Name of the process instance (AlphaNumeric and
  1087. underscore only)</entry>
  1088. </row>
  1089. <row>
  1090. <entry><emphasis>queue</emphasis></entry>
  1091. <entry>Name of the Ecl cc server queue</entry>
  1092. </row>
  1093. <row>
  1094. <entry><emphasis>traceLevel</emphasis></entry>
  1095. <entry>The value ***</entry>
  1096. </row>
  1097. </tbody>
  1098. </tgroup>
  1099. </informaltable></para>
  1100. </sect4>
  1101. <sect4>
  1102. <title>EclCC Server Process Options</title>
  1103. <para>To add a custom option, rt-click and select add.</para>
  1104. <!--This feature allows the user to configure any options pertinent to the Ecl CC Server Process -->
  1105. <para></para>
  1106. </sect4>
  1107. <sect4>
  1108. <title>EclCC Server Process Notes</title>
  1109. <para>This tab allows you to add any notes pertinent to the
  1110. component's configuration. This can be useful to keep a record of
  1111. changes and to communicate this information to peers.</para>
  1112. </sect4>
  1113. </sect3>
  1114. <sect3 id="ECL-Scheduler" role="brk">
  1115. <title><emphasis>ECL Scheduler</emphasis></title>
  1116. <sect4>
  1117. <title>instances</title>
  1118. <itemizedlist mark="square">
  1119. <listitem>
  1120. <para>Select <emphasis role="bold">ECL Scheduler</emphasis> in
  1121. the Navigator panel on the left side.</para>
  1122. </listitem>
  1123. <listitem>
  1124. <para>Select the Instances tab.</para>
  1125. </listitem>
  1126. <listitem>
  1127. <para>In the computer column, choose a node from the drop list
  1128. as shown below:<graphic fileref="images/CM-161.jpg" /></para>
  1129. </listitem>
  1130. <listitem>
  1131. <para>Click the <inlinegraphic
  1132. fileref="images/GS-img01c.png" /> disk icon to save</para>
  1133. </listitem>
  1134. </itemizedlist>
  1135. </sect4>
  1136. <?hard-pagebreak ?>
  1137. <sect4>
  1138. <title>EclScheduler Attributes Tab</title>
  1139. <para>This section describes the EclScheduler Attributes
  1140. tab.</para>
  1141. <para><graphic fileref="images/CM-160.jpg" /></para>
  1142. <para><informaltable colsep="0" frame="none" rowsep="0">
  1143. <tgroup cols="2">
  1144. <colspec align="left" colwidth="122.40pt" />
  1145. <colspec />
  1146. <tbody>
  1147. <row>
  1148. <entry>Attribute name</entry>
  1149. <entry>Definition</entry>
  1150. </row>
  1151. <row>
  1152. <entry><emphasis>description</emphasis></entry>
  1153. <entry>Describes the component</entry>
  1154. </row>
  1155. <row>
  1156. <entry><emphasis>name</emphasis></entry>
  1157. <entry>Name of the process instance (AlphaNumeric and
  1158. underscore only)</entry>
  1159. </row>
  1160. </tbody>
  1161. </tgroup>
  1162. </informaltable></para>
  1163. </sect4>
  1164. <sect4>
  1165. <title>EclScheduler Notes</title>
  1166. <para>This tab allows you to add any notes pertinent to the
  1167. component's configuration. This can be useful to keep a record of
  1168. changes and to communicate this information to peers.</para>
  1169. </sect4>
  1170. </sect3>
  1171. <sect3 id="ESP-Server" role="brk">
  1172. <title><emphasis>ESP Server</emphasis></title>
  1173. <sect4>
  1174. <title>Esp Process Instances</title>
  1175. <itemizedlist mark="square">
  1176. <listitem>
  1177. <para>Select ESP - MyEsp in the Navigator panel on the left
  1178. side.</para>
  1179. </listitem>
  1180. <listitem>
  1181. <para>Select the Instances tab.</para>
  1182. </listitem>
  1183. <listitem>
  1184. <para>In the computer column, choose a node from the drop list
  1185. as shown below:<graphic
  1186. fileref="images/CM-img08.jpg" /></para>
  1187. </listitem>
  1188. <listitem>
  1189. <para>Click the <inlinegraphic
  1190. fileref="images/GS-img01c.png" /> disk icon to save</para>
  1191. </listitem>
  1192. </itemizedlist>
  1193. </sect4>
  1194. <?hard-pagebreak ?>
  1195. <sect4>
  1196. <title>Esp - myesp Attributes Tab</title>
  1197. <para>This section describes the Esp - myesp Attributes
  1198. tab.</para>
  1199. <para><graphic fileref="images/CM-img08-1.jpg" /></para>
  1200. <para><informaltable colsep="0" frame="none" rowsep="0">
  1201. <tgroup cols="2">
  1202. <colspec align="left" colwidth="122.40pt" />
  1203. <colspec />
  1204. <tbody>
  1205. <row>
  1206. <entry>Attribute name</entry>
  1207. <entry>Definition</entry>
  1208. </row>
  1209. <row>
  1210. <entry><emphasis>componentfilesDir</emphasis></entry>
  1211. <entry>the component files directory</entry>
  1212. </row>
  1213. <row>
  1214. <entry><emphasis>daliServers</emphasis></entry>
  1215. <entry>the Dali servers</entry>
  1216. </row>
  1217. <row>
  1218. <entry><emphasis>description</emphasis></entry>
  1219. <entry>Describes the component</entry>
  1220. </row>
  1221. <row>
  1222. <entry><emphasis>enableSEHMapping</emphasis></entry>
  1223. <entry>True or False to enable***</entry>
  1224. </row>
  1225. <row>
  1226. <entry><emphasis>formOptionsAccess</emphasis></entry>
  1227. <entry>True or False to enable...***</entry>
  1228. </row>
  1229. <row>
  1230. <entry><emphasis>httpConfigAccess</emphasis></entry>
  1231. <entry>True or False to enable...***</entry>
  1232. </row>
  1233. <row>
  1234. <entry><emphasis>logLevel</emphasis></entry>
  1235. <entry>The Level of ...***</entry>
  1236. </row>
  1237. <row>
  1238. <entry><emphasis>logRequests</emphasis></entry>
  1239. <entry>True or False to enable...***</entry>
  1240. </row>
  1241. <row>
  1242. <entry><emphasis>logResponses</emphasis></entry>
  1243. <entry>True or False to enable...***</entry>
  1244. </row>
  1245. <row>
  1246. <entry><emphasis>maxBacklogQueueSize</emphasis></entry>
  1247. <entry>The size of the backlog queue</entry>
  1248. </row>
  1249. <row>
  1250. <entry><emphasis>maxConcurrentThreads</emphasis></entry>
  1251. <entry>The maximum number of concurrent threads</entry>
  1252. </row>
  1253. <row>
  1254. <entry><emphasis>maxRequestEntityLegnth</emphasis></entry>
  1255. <entry>The maximum length for entity requests</entry>
  1256. </row>
  1257. <row>
  1258. <entry><emphasis>name</emphasis></entry>
  1259. <entry>Name of the process instance (AlphaNumeric and
  1260. underscore only)</entry>
  1261. </row>
  1262. <row>
  1263. <entry><emphasis>perfReportDelay</emphasis></entry>
  1264. <entry>The value at which...***</entry>
  1265. </row>
  1266. </tbody>
  1267. </tgroup>
  1268. </informaltable></para>
  1269. </sect4>
  1270. <sect4>
  1271. <title>Esp - myesp Service BindingsTab</title>
  1272. <para>This section describes the Esp - myesp Service Bindings
  1273. tab.</para>
  1274. <para><graphic fileref="images/CM-img08-2.jpg" /></para>
  1275. <para><informaltable colsep="0" frame="none" rowsep="0">
  1276. <tgroup cols="2">
  1277. <colspec align="left" colwidth="122.40pt" />
  1278. <colspec />
  1279. <tbody>
  1280. <row>
  1281. <entry><emphasis role="bold">Attribute
  1282. name</emphasis></entry>
  1283. <entry><emphasis
  1284. role="bold">Definition</emphasis></entry>
  1285. </row>
  1286. <row>
  1287. <entry><emphasis>ECLWatch</emphasis></entry>
  1288. <entry>provides ECL Watch interface</entry>
  1289. </row>
  1290. <row>
  1291. <entry><emphasis>Ws_ecl</emphasis></entry>
  1292. <entry>Provides Web access to published queries</entry>
  1293. </row>
  1294. </tbody>
  1295. </tgroup>
  1296. </informaltable></para>
  1297. </sect4>
  1298. <?hard-pagebreak ?>
  1299. <sect4>
  1300. <title>Esp - myesp AuthenticationTab</title>
  1301. <para>This section describes the Esp - myesp Service
  1302. Authentication tab. LDAP is a feature only available in Enterprise
  1303. Edition.</para>
  1304. <para><graphic fileref="images/CM-img08-3.jpg" /></para>
  1305. <para><informaltable colsep="0" frame="none" rowsep="0">
  1306. <tgroup cols="2">
  1307. <colspec align="left" colwidth="122.40pt" />
  1308. <colspec />
  1309. <tbody>
  1310. <row>
  1311. <entry>Attribute name</entry>
  1312. <entry>Definition</entry>
  1313. </row>
  1314. <row>
  1315. <entry><emphasis>AccurintSecurity</emphasis></entry>
  1316. <entry>the AccurintSecurity pass...</entry>
  1317. </row>
  1318. <row>
  1319. <entry><emphasis>ldapAuthMethod</emphasis></entry>
  1320. <entry>the LDAP Authentication Method</entry>
  1321. </row>
  1322. <row>
  1323. <entry><emphasis>ldapConnections</emphasis></entry>
  1324. <entry>the number of LDAP Connections</entry>
  1325. </row>
  1326. <row>
  1327. <entry><emphasis>ldapServer</emphasis></entry>
  1328. <entry>the LDAP server</entry>
  1329. </row>
  1330. <row>
  1331. <entry><emphasis>method</emphasis></entry>
  1332. <entry>the method...</entry>
  1333. </row>
  1334. </tbody>
  1335. </tgroup>
  1336. </informaltable></para>
  1337. </sect4>
  1338. <?hard-pagebreak ?>
  1339. <sect4>
  1340. <title>Esp - myesp HTTPS Tab</title>
  1341. <para>This section describes the Esp - myesp HTTPS tab.</para>
  1342. <para><graphic fileref="images/CM-img08-4.jpg" /></para>
  1343. <para><informaltable colsep="0" frame="none" rowsep="0">
  1344. <tgroup cols="2">
  1345. <colspec align="left" colwidth="122.40pt" />
  1346. <colspec />
  1347. <tbody>
  1348. <row>
  1349. <entry>Attribute name</entry>
  1350. <entry>Definition</entry>
  1351. </row>
  1352. <row>
  1353. <entry><emphasis>acceptSelfSigned</emphasis></entry>
  1354. <entry>True or False to enable self signed
  1355. certificate...</entry>
  1356. </row>
  1357. <row>
  1358. <entry><emphasis>CA_Certificates_Path</emphasis></entry>
  1359. <entry>the location of the CA Certificates</entry>
  1360. </row>
  1361. <row>
  1362. <entry><emphasis>certificateFileName</emphasis></entry>
  1363. <entry>name of the CA Certificate</entry>
  1364. </row>
  1365. <row>
  1366. <entry><emphasis>Name of the city</emphasis></entry>
  1367. <entry>name of the city.</entry>
  1368. </row>
  1369. <row>
  1370. <entry><emphasis>Name of the country</emphasis></entry>
  1371. <entry>name of the country.</entry>
  1372. </row>
  1373. <row>
  1374. <entry><emphasis>Number of days the certificate is
  1375. valid.</emphasis></entry>
  1376. <entry>The Number of days the certificate is
  1377. valid.</entry>
  1378. </row>
  1379. <row>
  1380. <entry><emphasis>enableVerification</emphasis></entry>
  1381. <entry>True or False to enable verification
  1382. of...</entry>
  1383. </row>
  1384. <row>
  1385. <entry><emphasis>organization</emphasis></entry>
  1386. <entry>name of the organization...</entry>
  1387. </row>
  1388. <row>
  1389. <entry><emphasis>organizationalUnit</emphasis></entry>
  1390. <entry>OU to use</entry>
  1391. </row>
  1392. <row>
  1393. <entry><emphasis>passphrase</emphasis></entry>
  1394. <entry>passphrase to use</entry>
  1395. </row>
  1396. <row>
  1397. <entry><emphasis>privateKeyFileName</emphasis></entry>
  1398. <entry>The privatekey name file (such as,
  1399. privatekey.cer)</entry>
  1400. </row>
  1401. <row>
  1402. <entry><emphasis>regenerateCredentials</emphasis></entry>
  1403. <entry>True or False to enable generation of
  1404. credentials.</entry>
  1405. </row>
  1406. <row>
  1407. <entry><emphasis>requireAddressMatch</emphasis></entry>
  1408. <entry>True or False to enable address match</entry>
  1409. </row>
  1410. <row>
  1411. <entry><emphasis>Name of the State</emphasis></entry>
  1412. <entry>name of the state</entry>
  1413. </row>
  1414. <row>
  1415. <entry><emphasis>TrustedPeers</emphasis></entry>
  1416. <entry>The names of trusted peers.</entry>
  1417. </row>
  1418. </tbody>
  1419. </tgroup>
  1420. </informaltable></para>
  1421. </sect4>
  1422. <sect4>
  1423. <title>Esp - myesp Protocol XTab</title>
  1424. <para>This section describes the Esp - myesp Protocol X
  1425. tab.</para>
  1426. <para><graphic fileref="images/CM-img08-5.jpg" /></para>
  1427. <para><informaltable colsep="0" frame="none" rowsep="0">
  1428. <tgroup cols="2">
  1429. <colspec align="left" colwidth="122.40pt" />
  1430. <colspec />
  1431. <tbody>
  1432. <row>
  1433. <entry>Attribute name</entry>
  1434. <entry>Definition</entry>
  1435. </row>
  1436. <row>
  1437. <entry><emphasis>Authentication
  1438. Timeout</emphasis></entry>
  1439. <entry>The Authentication timeout value...</entry>
  1440. </row>
  1441. <row>
  1442. <entry><emphasis>Default Time out </emphasis></entry>
  1443. <entry>The default timeout value...</entry>
  1444. </row>
  1445. <row>
  1446. <entry><emphasis>ldle Timeout</emphasis></entry>
  1447. <entry>The timeout value...</entry>
  1448. </row>
  1449. <row>
  1450. <entry><emphasis>Maximum Timeout</emphasis></entry>
  1451. <entry>The maximum timeout value...</entry>
  1452. </row>
  1453. <row>
  1454. <entry><emphasis>Minimum Timeout</emphasis></entry>
  1455. <entry>The minimum timeout value...</entry>
  1456. </row>
  1457. <row>
  1458. <entry><emphasis>Thread Count</emphasis></entry>
  1459. <entry>the number of threads...</entry>
  1460. </row>
  1461. </tbody>
  1462. </tgroup>
  1463. </informaltable></para>
  1464. </sect4>
  1465. <sect4>
  1466. <title>EspProcess Notes</title>
  1467. <para>This tab allows you to add any notes pertinent to the
  1468. component's configuration. This can be useful to keep a record of
  1469. changes and to communicate this information to peers.</para>
  1470. </sect4>
  1471. </sect3>
  1472. <sect3 id="FTSlave-Process" role="brk">
  1473. <title><emphasis>FTSlave Process</emphasis></title>
  1474. <para>FTSlave is a helper process that every node needs.</para>
  1475. <sect4>
  1476. <title>Instances</title>
  1477. <itemizedlist mark="square">
  1478. <listitem>
  1479. <para>Select FTSlave in the Navigator panel on the left
  1480. side.</para>
  1481. </listitem>
  1482. <listitem>
  1483. <para>Select the Instances tab.</para>
  1484. </listitem>
  1485. <listitem>
  1486. <?dbfo keep-together="always"?>
  1487. <para>RT-CLICK on a computer in the computer column, and
  1488. select Add Instance .</para>
  1489. <para><graphic fileref="images/CM-190.jpg" /></para>
  1490. </listitem>
  1491. <listitem>
  1492. <?dbfo keep-together="always"?>
  1493. <para>Select all computers in the list, then press the
  1494. <emphasis role="bold">OK</emphasis> button.</para>
  1495. <para><graphic fileref="images/CM-img11.jpg" /></para>
  1496. </listitem>
  1497. <listitem>
  1498. <para>Click the <inlinegraphic
  1499. fileref="images/GS-img01c.png" /> disk icon to save</para>
  1500. </listitem>
  1501. </itemizedlist>
  1502. </sect4>
  1503. <sect4>
  1504. <title>FtSlave attributes</title>
  1505. <para>This section describes the FTSlave attributes tab.</para>
  1506. <para><informaltable colsep="0" frame="none" rowsep="0">
  1507. <tgroup cols="2">
  1508. <colspec align="left" colwidth="122.40pt" />
  1509. <colspec />
  1510. <tbody>
  1511. <row>
  1512. <entry>Attribute</entry>
  1513. <entry>Definition</entry>
  1514. </row>
  1515. <row>
  1516. <entry><emphasis>description</emphasis></entry>
  1517. <entry>FTSlave Process description</entry>
  1518. </row>
  1519. <row>
  1520. <entry><emphasis>name</emphasis></entry>
  1521. <entry>Name of the process instance (AlphaNumeric and
  1522. underscore only)</entry>
  1523. </row>
  1524. <row>
  1525. <entry><emphasis>version</emphasis></entry>
  1526. <entry>current version number</entry>
  1527. </row>
  1528. </tbody>
  1529. </tgroup>
  1530. </informaltable></para>
  1531. </sect4>
  1532. <sect4>
  1533. <title>FtSlave Process Notes</title>
  1534. <para>This tab allows you to add any notes pertinent to the
  1535. component's configuration. This can be useful to keep a record of
  1536. changes and to communicate this information to peers.</para>
  1537. </sect4>
  1538. </sect3>
  1539. <sect3>
  1540. <title><emphasis>Sasha Server</emphasis></title>
  1541. <sect4>
  1542. <title>Instances</title>
  1543. <itemizedlist mark="square">
  1544. <listitem>
  1545. <para>Select Sasha Server in the menu on the left side.</para>
  1546. </listitem>
  1547. <listitem>
  1548. <para>Select the Instances tab.</para>
  1549. </listitem>
  1550. <listitem>
  1551. <para>In the computer column, choose a node from the drop list
  1552. as shown below:</para>
  1553. </listitem>
  1554. </itemizedlist>
  1555. <graphic fileref="images/CM-img17.jpg" scalefit="1" />
  1556. </sect4>
  1557. <?hard-pagebreak ?>
  1558. <sect4>
  1559. <title>SashaServer Process Archiver</title>
  1560. <para>This section describes the SashaServer Process Archiver
  1561. tab.</para>
  1562. <para><graphic fileref="images/CM-img17-1.jpg" /></para>
  1563. <para><informaltable colsep="0" frame="none" rowsep="0">
  1564. <tgroup cols="2">
  1565. <colspec align="left" colwidth="122.40pt" />
  1566. <colspec />
  1567. <tbody>
  1568. <row>
  1569. <entry>Attribute</entry>
  1570. <entry>Definition</entry>
  1571. </row>
  1572. <row>
  1573. <entry><emphasis>cachedWUat</emphasis></entry>
  1574. <entry>SashaServer Archiver Process description</entry>
  1575. </row>
  1576. <row>
  1577. <entry><emphasis>cachedWUinterval</emphasis></entry>
  1578. <entry>SashaServer Archiver Process description</entry>
  1579. </row>
  1580. <row>
  1581. <entry><emphasis>cachedWUlimit</emphasis></entry>
  1582. <entry>SashaServer Archiver Process description</entry>
  1583. </row>
  1584. <row>
  1585. <entry><emphasis>DFUrecoveryAt</emphasis></entry>
  1586. <entry>SashaServer Archiver Process description</entry>
  1587. </row>
  1588. <row>
  1589. <entry><emphasis>DFUrecoveryCutoff</emphasis></entry>
  1590. <entry>SashaServer Archiver Process description</entry>
  1591. </row>
  1592. <row>
  1593. <entry><emphasis>DFUrecoveryInterval</emphasis></entry>
  1594. <entry>SashaServer Archiver Process description</entry>
  1595. </row>
  1596. <row>
  1597. <entry><emphasis>DFUrecoveryLimit</emphasis></entry>
  1598. <entry>SashaServer Archiver Process description</entry>
  1599. </row>
  1600. <row>
  1601. <entry><emphasis>DFUWUat</emphasis></entry>
  1602. <entry>SashaServer Archiver Process description</entry>
  1603. </row>
  1604. <row>
  1605. <entry><emphasis>DFUWUcutoff</emphasis></entry>
  1606. <entry>SashaServer Archiver Process description</entry>
  1607. </row>
  1608. <row>
  1609. <entry><emphasis>DFUWUduration</emphasis></entry>
  1610. <entry>SashaServer Archiver Process description</entry>
  1611. </row>
  1612. <row>
  1613. <entry><emphasis>DFUWUinterval</emphasis></entry>
  1614. <entry>SashaServer Archiver Process description</entry>
  1615. </row>
  1616. <row>
  1617. <entry><emphasis>DFUWUlimit</emphasis></entry>
  1618. <entry>SashaServer Archiver Process description</entry>
  1619. </row>
  1620. <row>
  1621. <entry><emphasis>DFUWUthrottle</emphasis></entry>
  1622. <entry>SashaServer Archiver Process description</entry>
  1623. </row>
  1624. <row>
  1625. <entry><emphasis>keepResultFiles</emphasis></entry>
  1626. <entry>Keep result files, True or False</entry>
  1627. </row>
  1628. <row>
  1629. <entry><emphasis>WUat</emphasis></entry>
  1630. <entry>SashaServer Archiver Process description</entry>
  1631. </row>
  1632. <row>
  1633. <entry><emphasis>WUbackup</emphasis></entry>
  1634. <entry>SashaServer Archiver Process description</entry>
  1635. </row>
  1636. <row>
  1637. <entry><emphasis>WUcutof</emphasis></entry>
  1638. <entry>SashaServer Archiver Process description</entry>
  1639. </row>
  1640. <row>
  1641. <entry><emphasis>WUduration</emphasis></entry>
  1642. <entry>SashaServer Archiver Process description</entry>
  1643. </row>
  1644. <row>
  1645. <entry><emphasis>WUinterval</emphasis></entry>
  1646. <entry>SashaServer Archiver Process description</entry>
  1647. </row>
  1648. <row>
  1649. <entry><emphasis>WUlimit</emphasis></entry>
  1650. <entry>SashaServer Archiver Process description</entry>
  1651. </row>
  1652. <row>
  1653. <entry><emphasis>WUretryinterval</emphasis></entry>
  1654. <entry>SashaServer Archiver Process description</entry>
  1655. </row>
  1656. <row>
  1657. <entry><emphasis>WUthrottle</emphasis></entry>
  1658. <entry>SashaServer Archiver Process description</entry>
  1659. </row>
  1660. </tbody>
  1661. </tgroup>
  1662. </informaltable></para>
  1663. </sect4>
  1664. <sect4>
  1665. <title>SashaServer Process Coalescer</title>
  1666. <para>This section describes the SashaServer Process Coalescer
  1667. tab.</para>
  1668. <para><graphic fileref="images/CM-img17-2.jpg" /></para>
  1669. <para><informaltable colsep="0" frame="none" rowsep="0">
  1670. <tgroup cols="2">
  1671. <colspec align="left" colwidth="122.40pt" />
  1672. <colspec />
  1673. <tbody>
  1674. <row>
  1675. <entry>Attribute</entry>
  1676. <entry>Definition</entry>
  1677. </row>
  1678. <row>
  1679. <entry><emphasis>coalesceAt</emphasis></entry>
  1680. <entry>SashaServer Coalesce Process description</entry>
  1681. </row>
  1682. <row>
  1683. <entry><emphasis>coalesceInterval</emphasis></entry>
  1684. <entry>SashaServer Coalesce Process description</entry>
  1685. </row>
  1686. <row>
  1687. <entry><emphasis>minDeltaSize</emphasis></entry>
  1688. <entry>SashaServer Coalesce Process description</entry>
  1689. </row>
  1690. <row>
  1691. <entry><emphasis>recoverDeltaErrors</emphasis></entry>
  1692. <entry>SashaServer Coalesce Process description</entry>
  1693. </row>
  1694. </tbody>
  1695. </tgroup>
  1696. </informaltable></para>
  1697. </sect4>
  1698. <?hard-pagebreak ?>
  1699. <sect4>
  1700. <title>SashaServer Process DfuXRef</title>
  1701. <para>This section describes the SashaServer Process DfuXref
  1702. tab.</para>
  1703. <para><graphic fileref="images/CM-img17-3.jpg" /></para>
  1704. <para><informaltable colsep="0" frame="none" rowsep="0">
  1705. <tgroup cols="2">
  1706. <colspec align="left" colwidth="122.40pt" />
  1707. <colspec />
  1708. <tbody>
  1709. <row>
  1710. <entry>Attribute</entry>
  1711. <entry>Definition</entry>
  1712. </row>
  1713. <row>
  1714. <entry><emphasis>xrefAt</emphasis></entry>
  1715. <entry>SashaServer DfuXRef Attribute description</entry>
  1716. </row>
  1717. <row>
  1718. <entry><emphasis>xrefCutoff</emphasis></entry>
  1719. <entry>SashaServer DfuXRef Attribute description</entry>
  1720. </row>
  1721. <row>
  1722. <entry><emphasis>xrefEclWatchProvider</emphasis></entry>
  1723. <entry>Xref Ecl Watch Provider, True or False</entry>
  1724. </row>
  1725. <row>
  1726. <entry><emphasis>xrefInterval</emphasis></entry>
  1727. <entry>value of SashaServer DfuXRef Attribute</entry>
  1728. </row>
  1729. <row>
  1730. <entry><emphasis>xrefList</emphasis></entry>
  1731. <entry>SashaServer DfuXRef Attribute description</entry>
  1732. </row>
  1733. </tbody>
  1734. </tgroup>
  1735. </informaltable></para>
  1736. </sect4>
  1737. <?hard-pagebreak ?>
  1738. <sect4>
  1739. <title>SashaServer Process DfuExpiry</title>
  1740. <para>This section describes the SashaServer Process DfuExpiry
  1741. tab.</para>
  1742. <para><graphic fileref="images/CM-img17-4.jpg" /></para>
  1743. <para><informaltable colsep="0" frame="none" rowsep="0">
  1744. <tgroup cols="2">
  1745. <colspec align="left" colwidth="122.40pt" />
  1746. <colspec />
  1747. <tbody>
  1748. <row>
  1749. <entry>Attribute</entry>
  1750. <entry>Definition</entry>
  1751. </row>
  1752. <row>
  1753. <entry><emphasis>ExpiryAt</emphasis></entry>
  1754. <entry>SashaServer DfuExpiry tab description</entry>
  1755. </row>
  1756. <row>
  1757. <entry><emphasis>ExpiryInterval</emphasis></entry>
  1758. <entry>Interval in hours at which the Dfu
  1759. expires</entry>
  1760. </row>
  1761. </tbody>
  1762. </tgroup>
  1763. </informaltable></para>
  1764. </sect4>
  1765. <?hard-pagebreak ?>
  1766. <sect4>
  1767. <title>SashaServer Process ThorQMon</title>
  1768. <para>This section describes the SashaServer Process ThorQMon
  1769. tab.</para>
  1770. <para><graphic fileref="images/CM-img17-5.jpg" /></para>
  1771. <para><informaltable colsep="0" frame="none" rowsep="0">
  1772. <tgroup cols="2">
  1773. <colspec align="left" colwidth="122.40pt" />
  1774. <colspec />
  1775. <tbody>
  1776. <row>
  1777. <entry>Attribute</entry>
  1778. <entry>Definition</entry>
  1779. </row>
  1780. <row>
  1781. <entry><emphasis>ThorQMonInterval</emphasis></entry>
  1782. <entry>ThorQMonInterval description</entry>
  1783. </row>
  1784. <row>
  1785. <entry><emphasis>ThorQMonQueues</emphasis></entry>
  1786. <entry>ThorQMonQueues description</entry>
  1787. </row>
  1788. <row>
  1789. <entry><emphasis>ThorQMonSwitchMinTime</emphasis></entry>
  1790. <entry>ThorQMonSwitchMinTime description</entry>
  1791. </row>
  1792. </tbody>
  1793. </tgroup>
  1794. </informaltable></para>
  1795. </sect4>
  1796. <?hard-pagebreak ?>
  1797. <sect4>
  1798. <title>SashaServer Process DaFileSrvMonitor</title>
  1799. <para>This section describes the SashaServer Process
  1800. DaFileSrvMonitor tab.</para>
  1801. <para><graphic fileref="images/CM-img17-6.jpg" /></para>
  1802. <para><informaltable colsep="0" frame="none" rowsep="0">
  1803. <tgroup cols="2">
  1804. <colspec align="left" colwidth="122.40pt" />
  1805. <colspec />
  1806. <tbody>
  1807. <row>
  1808. <entry>Attribute</entry>
  1809. <entry>Definition</entry>
  1810. </row>
  1811. <row>
  1812. <entry><emphasis>dafsmonAt</emphasis></entry>
  1813. <entry>dafsmon description</entry>
  1814. </row>
  1815. <row>
  1816. <entry><emphasis>dafsmonInterval</emphasis></entry>
  1817. <entry>dafsmon description</entry>
  1818. </row>
  1819. <row>
  1820. <entry><emphasis>dafsmonList</emphasis></entry>
  1821. <entry>dafsmon description</entry>
  1822. </row>
  1823. </tbody>
  1824. </tgroup>
  1825. </informaltable></para>
  1826. </sect4>
  1827. <sect4>
  1828. <title>SashaServer Process Notes</title>
  1829. <para>This tab allows you to add any notes pertinent to the
  1830. component's configuration. This can be useful to keep a record of
  1831. changes and to communicate this information to peers.</para>
  1832. </sect4>
  1833. </sect3>
  1834. <sect3 id="Thor">
  1835. <title><emphasis>Thor</emphasis></title>
  1836. <para>This section details how to define a Data Refinery (Thor)
  1837. cluster. Before you begin, you should decide the width of the
  1838. cluster (i.e., how many slave nodes will you have).</para>
  1839. <itemizedlist mark="square">
  1840. <listitem>
  1841. <para>Select Thor Cluster - mythor in the Navigator panel on the
  1842. left side.</para>
  1843. </listitem>
  1844. <listitem>
  1845. <para>Select the <emphasis role="bold">Topology</emphasis>
  1846. tab.</para>
  1847. </listitem>
  1848. <listitem>
  1849. <para>Expand the Topology, if needed, then RT-CLICK the Master
  1850. and select Delete.</para>
  1851. </listitem>
  1852. </itemizedlist>
  1853. <para>This deletes the sample one-node Thor.</para>
  1854. <para>You will replace this with a multi-node cluster.</para>
  1855. <itemizedlist mark="square">
  1856. <listitem>
  1857. <?dbfo keep-together="always"?>
  1858. <para>RT-CLICK on the Topology and select Add Master.</para>
  1859. <para><graphic fileref="images/CM-img13.jpg" /></para>
  1860. </listitem>
  1861. </itemizedlist>
  1862. <itemizedlist mark="square">
  1863. <listitem>
  1864. <?dbfo keep-together="always"?>
  1865. <para>Select a computer from the list, then press the OK
  1866. button.</para>
  1867. <para><graphic fileref="images/gs_img17.png" /></para>
  1868. </listitem>
  1869. </itemizedlist>
  1870. <itemizedlist mark="square">
  1871. <listitem>
  1872. <?dbfo keep-together="always"?>
  1873. <para>RT-CLICK on the Master and select Add Slaves.</para>
  1874. <para><graphic fileref="images/CM-111.jpg" /></para>
  1875. </listitem>
  1876. </itemizedlist>
  1877. <itemizedlist mark="square">
  1878. <listitem>
  1879. <?dbfo keep-together="always"?>
  1880. <para>Select the computers to use as slaves from the list, then
  1881. press the OK button. Use CTRL+CLICK to multi-select or
  1882. SHIFT+CLICK to select a range.</para>
  1883. <para><graphic fileref="images/CM-112.jpg" />The Nodes now
  1884. display below the Thor Master node.</para>
  1885. <para><graphic fileref="images/CM-img14.jpg" /></para>
  1886. </listitem>
  1887. </itemizedlist>
  1888. <itemizedlist>
  1889. <listitem>
  1890. <para>Select Thor Cluster - mythor in the Navigator panel on the
  1891. left side.</para>
  1892. </listitem>
  1893. <listitem>
  1894. <?dbfo keep-together="always"?>
  1895. <para>Select the Attributes tab.</para>
  1896. <para><graphic fileref="images/CM-img15.jpg" /></para>
  1897. </listitem>
  1898. <listitem>
  1899. <para>Change the value of the localThor to <emphasis
  1900. role="bold">false</emphasis></para>
  1901. </listitem>
  1902. <listitem>
  1903. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  1904. disk icon to save</para>
  1905. </listitem>
  1906. </itemizedlist>
  1907. <?hard-pagebreak ?>
  1908. <sect4>
  1909. <title>ThorCluster Attributes</title>
  1910. <para>This section describes the Thor Cluster Attributes
  1911. tab.</para>
  1912. <para><graphic fileref="images/CM-img18-1.jpg" /></para>
  1913. <para><informaltable colsep="0" frame="none" rowsep="0">
  1914. <tgroup cols="2">
  1915. <colspec align="left" colwidth="122.40pt" />
  1916. <colspec />
  1917. <tbody>
  1918. <row>
  1919. <entry>Attribute</entry>
  1920. <entry>Definition</entry>
  1921. </row>
  1922. <row>
  1923. <entry><emphasis>allowedPipePrograms</emphasis></entry>
  1924. <entry>ThorCluster Process description</entry>
  1925. </row>
  1926. <row>
  1927. <entry><emphasis>autoCopyBackup</emphasis></entry>
  1928. <entry>True or False</entry>
  1929. </row>
  1930. <row>
  1931. <entry><emphasis>checkPointRecovery</emphasis></entry>
  1932. <entry>True or False</entry>
  1933. </row>
  1934. <row>
  1935. <entry><emphasis>daliServers</emphasis></entry>
  1936. <entry>The Dali Server</entry>
  1937. </row>
  1938. <row>
  1939. <entry><emphasis>defaultOutputNodeGroup</emphasis></entry>
  1940. <entry></entry>
  1941. </row>
  1942. <row>
  1943. <entry><emphasis>description</emphasis></entry>
  1944. <entry>ThorCluster Process description</entry>
  1945. </row>
  1946. <row>
  1947. <entry><emphasis>externalProgDir</emphasis></entry>
  1948. <entry>Location of externals</entry>
  1949. </row>
  1950. <row>
  1951. <entry><emphasis>globalMemorySize</emphasis></entry>
  1952. <entry>ThorCluster Process description</entry>
  1953. </row>
  1954. <row>
  1955. <entry><emphasis>idleRestartPeriod</emphasis></entry>
  1956. <entry>ThorCluster Process description</entry>
  1957. </row>
  1958. <row>
  1959. <entry><emphasis>largeMemSize</emphasis></entry>
  1960. <entry>ThorCluster Process description</entry>
  1961. </row>
  1962. <row>
  1963. <entry><emphasis>LCR</emphasis></entry>
  1964. <entry>True or False</entry>
  1965. </row>
  1966. <row>
  1967. <entry><emphasis>localThor</emphasis></entry>
  1968. <entry>True or False</entry>
  1969. </row>
  1970. <row>
  1971. <entry><emphasis>localThorPortBase</emphasis></entry>
  1972. <entry></entry>
  1973. </row>
  1974. <row>
  1975. <entry><emphasis>localThorPortInc</emphasis></entry>
  1976. <entry></entry>
  1977. </row>
  1978. <row>
  1979. <entry><emphasis>masterport</emphasis></entry>
  1980. <entry></entry>
  1981. </row>
  1982. <row>
  1983. <entry><emphasis>monitorDaliFileServer</emphasis></entry>
  1984. <entry>Specifies whether to monitor for DaFileSrv
  1985. process (True or False )</entry>
  1986. </row>
  1987. <row>
  1988. <entry><emphasis>multiSlaves</emphasis></entry>
  1989. <entry>True or False</entry>
  1990. </row>
  1991. <row>
  1992. <entry><emphasis>multiThorExclusionLockName</emphasis></entry>
  1993. <entry></entry>
  1994. </row>
  1995. <row>
  1996. <entry><emphasis>multiThorMemoryThreshold</emphasis></entry>
  1997. <entry></entry>
  1998. </row>
  1999. <row>
  2000. <entry><emphasis>multiThorPriorityLock</emphasis></entry>
  2001. <entry>True or False</entry>
  2002. </row>
  2003. <row>
  2004. <entry><emphasis>name</emphasis></entry>
  2005. <entry>Name of cluster</entry>
  2006. </row>
  2007. <row>
  2008. <entry><emphasis>nodeGroup</emphasis></entry>
  2009. <entry></entry>
  2010. </row>
  2011. <row>
  2012. <entry><emphasis>pluginsPath</emphasis></entry>
  2013. <entry>Location of plugins</entry>
  2014. </row>
  2015. <row>
  2016. <entry><emphasis>queueName</emphasis></entry>
  2017. <entry></entry>
  2018. </row>
  2019. <row>
  2020. <entry><emphasis>replicateAsync</emphasis></entry>
  2021. <entry>True or False</entry>
  2022. </row>
  2023. <row>
  2024. <entry><emphasis>replicateOutputs</emphasis></entry>
  2025. <entry>True or False</entry>
  2026. </row>
  2027. <row>
  2028. <entry><emphasis>slaveDownTimeout</emphasis></entry>
  2029. <entry></entry>
  2030. </row>
  2031. <row>
  2032. <entry><emphasis>slaveport</emphasis></entry>
  2033. <entry></entry>
  2034. </row>
  2035. <row>
  2036. <entry><emphasis>smallSortThreshold</emphasis></entry>
  2037. <entry></entry>
  2038. </row>
  2039. <row>
  2040. <entry><emphasis>verifyDaliConnectionInterval</emphasis></entry>
  2041. <entry></entry>
  2042. </row>
  2043. <row>
  2044. <entry><emphasis>watchdogEnabled</emphasis></entry>
  2045. <entry>True or False</entry>
  2046. </row>
  2047. <row>
  2048. <entry><emphasis>watchdogProgressEnabled</emphasis></entry>
  2049. <entry>True or False</entry>
  2050. </row>
  2051. <row>
  2052. <entry><emphasis>watchdogProgressInterval</emphasis></entry>
  2053. <entry>ThorCluster Process description</entry>
  2054. </row>
  2055. </tbody>
  2056. </tgroup>
  2057. </informaltable></para>
  2058. </sect4>
  2059. <?hard-pagebreak ?>
  2060. <sect4>
  2061. <title>ThorCluster SSH Options</title>
  2062. <para>This section describes the ThorCluster SSH Options
  2063. tab.</para>
  2064. <para><graphic fileref="images/CM-img18-2.jpg" /></para>
  2065. <para><informaltable colsep="0" frame="none" rowsep="0">
  2066. <tgroup cols="2">
  2067. <colspec align="left" colwidth="122.40pt" />
  2068. <colspec />
  2069. <tbody>
  2070. <row>
  2071. <entry>Attribute</entry>
  2072. <entry>Definition</entry>
  2073. </row>
  2074. <row>
  2075. <entry><emphasis>SSHidentityfile</emphasis></entry>
  2076. <entry>Location of the SSH keys component files.</entry>
  2077. </row>
  2078. <row>
  2079. <entry><emphasis>SSHpassword</emphasis></entry>
  2080. <entry></entry>
  2081. </row>
  2082. <row>
  2083. <entry><emphasis>SSHretries</emphasis></entry>
  2084. <entry>The number of times...</entry>
  2085. </row>
  2086. <row>
  2087. <entry><emphasis>SSHtimeout</emphasis></entry>
  2088. <entry>Timeout</entry>
  2089. </row>
  2090. <row>
  2091. <entry><emphasis>SSHusername</emphasis></entry>
  2092. <entry>The user name of the account the SSH keys are
  2093. associated with</entry>
  2094. </row>
  2095. </tbody>
  2096. </tgroup>
  2097. </informaltable></para>
  2098. </sect4>
  2099. <sect4>
  2100. <title>ThorCluster Debug</title>
  2101. <para>The debug tab is for internal use only</para>
  2102. </sect4>
  2103. <?hard-pagebreak ?>
  2104. <sect4>
  2105. <title>ThorCluster Swap Node</title>
  2106. <para>This section describes the ThorCluster Swap Node tab.</para>
  2107. <para><graphic fileref="images/CM-img18-4.jpg" /></para>
  2108. <para><informaltable colsep="0" frame="none" rowsep="0">
  2109. <tgroup cols="2">
  2110. <colspec align="left" colwidth="122.40pt" />
  2111. <colspec />
  2112. <tbody>
  2113. <row>
  2114. <entry>Attribute</entry>
  2115. <entry>Definition</entry>
  2116. </row>
  2117. <row>
  2118. <entry><emphasis>AutoSwapNode</emphasis></entry>
  2119. <entry>True or False. Set to True to enable
  2120. AutoSwapNode</entry>
  2121. </row>
  2122. <row>
  2123. <entry><emphasis>CheckAfterEveryJob</emphasis></entry>
  2124. <entry>True or False. Set to True to Check after Every
  2125. Job</entry>
  2126. </row>
  2127. <row>
  2128. <entry><emphasis>SwapNodeCheckC</emphasis></entry>
  2129. <entry>True or False. Set to True to ...</entry>
  2130. </row>
  2131. <row>
  2132. <entry><emphasis>SwapNodeCheckD</emphasis></entry>
  2133. <entry>True or False. Set to True to...</entry>
  2134. </row>
  2135. <row>
  2136. <entry><emphasis>SwapNodeCheckScript</emphasis></entry>
  2137. <entry></entry>
  2138. </row>
  2139. <row>
  2140. <entry><emphasis>SwapNodeCheckScriptTimeout</emphasis></entry>
  2141. <entry>The number ...</entry>
  2142. </row>
  2143. <row>
  2144. <entry><emphasis>SwapNodeInterval</emphasis></entry>
  2145. <entry>The number ...</entry>
  2146. </row>
  2147. <row>
  2148. <entry><emphasis>SwapNodeMaxConcurrent</emphasis></entry>
  2149. <entry>value of Maximum number of concurrent...</entry>
  2150. </row>
  2151. <row>
  2152. <entry><emphasis>SwapNodeRestartJob</emphasis></entry>
  2153. <entry>True or False. Set to True...</entry>
  2154. </row>
  2155. </tbody>
  2156. </tgroup>
  2157. </informaltable></para>
  2158. </sect4>
  2159. <?hard-pagebreak ?>
  2160. <sect4>
  2161. <title>ThorCluster Backup</title>
  2162. <para>This section describes the ThorCluster Backup tab.</para>
  2163. <para><graphic fileref="images/CM-img18-5.jpg" /></para>
  2164. <para><informaltable colsep="0" frame="none" rowsep="0">
  2165. <tgroup cols="2">
  2166. <colspec align="left" colwidth="122.40pt" />
  2167. <colspec />
  2168. <tbody>
  2169. <row>
  2170. <entry>Attribute</entry>
  2171. <entry>Definition</entry>
  2172. </row>
  2173. <row>
  2174. <entry><emphasis>breakoutLimit</emphasis></entry>
  2175. <entry>value of...</entry>
  2176. </row>
  2177. <row>
  2178. <entry><emphasis>refreshRate</emphasis></entry>
  2179. <entry>value of...</entry>
  2180. </row>
  2181. </tbody>
  2182. </tgroup>
  2183. </informaltable></para>
  2184. </sect4>
  2185. <sect4>
  2186. <title>ThorCluster Notes</title>
  2187. <para>This tab allows you to add any notes pertinent to the
  2188. component's configuration. This can be useful to keep a record of
  2189. changes and to communicate this information to peers.</para>
  2190. </sect4>
  2191. </sect3>
  2192. <sect3 id="Roxie" role="brk">
  2193. <title><emphasis>Roxie</emphasis></title>
  2194. <para>This section details how to define a Rapid Data Delivery
  2195. Engine (Roxie) cluster. Before you begin, you should decide the
  2196. width of the cluster (i.e., how many agent nodes will you
  2197. have).***Change the value of the localslave to <emphasis
  2198. role="bold">false***</emphasis></para>
  2199. <itemizedlist mark="square">
  2200. <listitem>
  2201. <para>Select Roxie Cluster in the Navigator panel on the left
  2202. side.</para>
  2203. </listitem>
  2204. <listitem>
  2205. <para>Select the Servers tab.</para>
  2206. </listitem>
  2207. <listitem>
  2208. <para>Expand the RoxieCluster &gt;&gt; farm1, if needed, then
  2209. RT-CLICK the Server and select
  2210. <guimenuitem>Delete</guimenuitem>.</para>
  2211. <para><graphic fileref="images/CM-112.jpg" /></para>
  2212. </listitem>
  2213. </itemizedlist>
  2214. <para>This deletes the sample one-node Roxie Server.</para>
  2215. <para>You will replace this with several servers to act as Roxie
  2216. Servers.</para>
  2217. <itemizedlist mark="square">
  2218. <listitem>
  2219. <?dbfo keep-together="always"?>
  2220. <para>RT-CLICK on the Roxie Cluster and select Add Farm.</para>
  2221. <para><graphic fileref="images/CM-112-1.jpg" /></para>
  2222. </listitem>
  2223. <listitem>
  2224. <?dbfo keep-together="always"?>
  2225. <para>Select the computers to use as Servers from the list, then
  2226. press the OK button. Use Ctrl+click to multi-select or
  2227. shift+click to select a range.</para>
  2228. <para><graphic fileref="images/CM-112-2.jpg" /></para>
  2229. </listitem>
  2230. </itemizedlist>
  2231. <itemizedlist mark="square">
  2232. <listitem>
  2233. <para>Select the Agents tab.</para>
  2234. </listitem>
  2235. <listitem>
  2236. <?dbfo keep-together="always"?>
  2237. <para>Select the RoxieCluster, then RT-CLICK select Reconfigure
  2238. Agents.</para>
  2239. <para>This allows you to replace the single agent with the
  2240. multiple nodes you added as Servers.</para>
  2241. <para><graphic fileref="images/CM-img16.jpg" /></para>
  2242. </listitem>
  2243. </itemizedlist>
  2244. <itemizedlist mark="square">
  2245. <listitem>
  2246. <?dbfo keep-together="always"?>
  2247. <para>Select the computers to use as Agents from the list, then
  2248. press the <emphasis role="bold">OK</emphasis> button. Use
  2249. Ctrl+click to multi-select or shift+click to select a
  2250. range.</para>
  2251. <para><graphic fileref="images/CM-112-2.jpg" /><emphasis
  2252. role="bold">Note:</emphasis> In this example, we are using the
  2253. same five nodes that were made to be Servers. This is a typical
  2254. configuration.</para>
  2255. </listitem>
  2256. </itemizedlist>
  2257. <itemizedlist mark="square">
  2258. <listitem>
  2259. <?dbfo keep-together="always"?>
  2260. <para>Select the redundancy scheme to use. Typically, this is
  2261. Circular Redundancy, as shown below.</para>
  2262. <para><graphic fileref="images/GS-img25.png" /></para>
  2263. </listitem>
  2264. <listitem>
  2265. <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
  2266. disk icon to save</para>
  2267. </listitem>
  2268. <listitem>
  2269. <para>Close Configuration Manager by pressing ctrl+C in the
  2270. command window where it is running.</para>
  2271. </listitem>
  2272. </itemizedlist>
  2273. </sect3>
  2274. <sect3 id="Topology" role="brk">
  2275. <title>Topology</title>
  2276. <para>This section describes the topology tab.</para>
  2277. <para></para>
  2278. <para><graphic fileref="images/CM-img20.jpg" /><informaltable
  2279. colsep="0" frame="none" rowsep="0">
  2280. <tgroup cols="2">
  2281. <colspec align="left" colwidth="122.40pt" />
  2282. <colspec />
  2283. <tbody>
  2284. <row>
  2285. <entry>Attribute name</entry>
  2286. <entry>Definition</entry>
  2287. </row>
  2288. <row>
  2289. <entry><emphasis>Topology</emphasis></entry>
  2290. <entry>describes the system topology</entry>
  2291. </row>
  2292. <row>
  2293. <entry><emphasis>Cluster - thor</emphasis></entry>
  2294. <entry>describes the Thor clusters</entry>
  2295. </row>
  2296. <row>
  2297. <entry><emphasis>Cluster - hthor</emphasis></entry>
  2298. <entry>describes the hthor clusters</entry>
  2299. </row>
  2300. <row>
  2301. <entry><emphasis>Cluster - roxie</emphasis></entry>
  2302. <entry>describes the Roxie clusters</entry>
  2303. </row>
  2304. </tbody>
  2305. </tgroup>
  2306. </informaltable></para>
  2307. </sect3>
  2308. <sect3 id="Propogate-configuration-changes">
  2309. <title><emphasis>Distribute Configuration Changes to all Nodes
  2310. </emphasis></title>
  2311. <para>Once your environment is set up as desired, you must copy the
  2312. configuration file out to the other nodes.</para>
  2313. <para></para>
  2314. <itemizedlist>
  2315. <listitem>
  2316. <para>If it is running, stop the system</para>
  2317. <para><informaltable colsep="1" frame="all" rowsep="1">
  2318. <?dbfo keep-together="always"?>
  2319. <tgroup cols="2">
  2320. <colspec colwidth="49.50pt" />
  2321. <colspec />
  2322. <tbody>
  2323. <row>
  2324. <entry><inlinegraphic
  2325. fileref="images/caution.png" /></entry>
  2326. <entry>Be sure system is stopped before attempting to
  2327. move the Environment.xml file.</entry>
  2328. </row>
  2329. </tbody>
  2330. </tgroup>
  2331. </informaltable></para>
  2332. </listitem>
  2333. <listitem>
  2334. <para>Back up the original environment.xml file</para>
  2335. <programlisting># for example
  2336. sudo -u hpcc cp /etc/HPCCSystems/environment.xml /etc/HPCCSystems/environment.bak </programlisting>
  2337. <para>Note: the "live environment.xml file is located in your
  2338. <emphasis role="bold">/etc/HPCCSystems/</emphasis> directory.
  2339. ConfigManager works on files in <emphasis
  2340. role="bold">/etc/HPCCSystems/source</emphasis> directory. You
  2341. must copy from this location to make an environment.xml file
  2342. active.</para>
  2343. </listitem>
  2344. <listitem>
  2345. <para>Copy the NewEnvironment.xml file from the source directory
  2346. to the /etc/HPCCSystems and rename the file to
  2347. environment.xml</para>
  2348. <programlisting># for example
  2349. sudo -u hpcc cp /etc/HPCCSystems/source/NewEnvironment.xml /etc/HPCCSystems/environment.xml</programlisting>
  2350. <para></para>
  2351. </listitem>
  2352. <listitem>
  2353. <para>Copy the /etc/HPCCSystems/environment.xml to the
  2354. /etc/HPCCSystems/ on every node.</para>
  2355. <para></para>
  2356. </listitem>
  2357. <listitem>
  2358. <para>Restart the HPCC system</para>
  2359. <para>You might prefer to script this process, especially if you
  2360. have many nodes. See the Example Scripts section in the Appendix
  2361. of the Installing_and_RunningtheHPCCPlatform document. You can
  2362. use the scripts as a model to create your own script to copy the
  2363. environment.xml file out to all your nodes.</para>
  2364. </listitem>
  2365. </itemizedlist>
  2366. </sect3>
  2367. </sect2>
  2368. </sect1>
  2369. </chapter>
  2370. </book>