UsingConfigManager.xml 105 KB

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