UsingConfigManager.xml 106 KB

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