123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
- "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
- <book xml:base="../">
- <bookinfo>
- <title> HPCC Configuration Manager</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/redswooshWithLogo3.jpg" />
- </imageobject>
- </mediaobject>
- <author>
- <surname>Boca Raton Documentation Team</surname>
- </author>
- <legalnotice>
- <para>We welcome your comments and feedback about this document via
- email to <email>docfeedback@hpccsystems.com</email> Please include
- <emphasis role="bold">Documentation Feedback</emphasis> in the subject
- line and reference the document name, page numbers, and current Version
- Number in the text of the message.</para>
- <para>LexisNexis and the Knowledge Burst logo are registered trademarks
- of Reed Elsevier Properties Inc., used under license. Other products,
- logos, and services may be trademarks or registered trademarks of their
- respective companies. All names and example data used in this manual are
- fictitious. Any similarity to actual persons, living or dead, is purely
- coincidental.</para>
- <para></para>
- </legalnotice>
- <xi:include href="common/Version.xml" xpointer="FooterInfo"
- xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="common/Version.xml" xpointer="DateVer"
- xmlns:xi="http://www.w3.org/2001/XInclude" />
- <corpname>HPCC Systems</corpname>
- <xi:include href="common/Version.xml" xpointer="Copyright"
- xmlns:xi="http://www.w3.org/2001/XInclude" />
- <mediaobject role="logo">
- <imageobject>
- <imagedata fileref="images/LN_Rightjustified.jpg" />
- </imageobject>
- </mediaobject>
- </bookinfo>
- <chapter id="Buildin-HPCC-from-Source">
- <title>Using Configuration Manager</title>
- <para>Configuration Manager is the utility with which we configure the
- HPCC platform. The HPCC platform's configuration is stored in an XML file
- named <emphasis role="bold">environment.xml</emphasis>. When you install a
- package, a default single-node environment.xml is generated. After that,
- you can use the Configuration Manager to modify it and add nodes and
- configure components.</para>
- <para>The Configuration Manager Wizard creates a similar file, but after
- it is generated, you must rename it and put it into place on each
- node.</para>
- <para>Configuration Manager also offers an <emphasis role="bold">Advanced
- View</emphasis> which allows you to add instances of components or change
- the default settings for components. Even if you plane to use Advanced
- View, it is a good idea to start with a wizard generated configuration and
- use Advanced View to finish it.</para>
- <para>This document will guide you through configuring an HPCC environment
- using the Configuration Manager.</para>
- <sect1 id="configuring-a-multi-node-system">
- <title>Running the Configuration Manager</title>
- <para>This document will guide you through configuring an HPCC
- environment using the Configuration Manager.</para>
- <itemizedlist mark="square">
- <listitem>
- <para>The HPCC packages should already be installed on ALL
- nodes.</para>
- <para>You can use any tool or shell script you choose.</para>
- </listitem>
- <listitem>
- <para>SSH to the first box in your environment and login as a user
- with sudo privileges.</para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <para>Start the Configuration Manager service on one node (usually
- the first node is considered the head node and is used for this
- task, but this is up to you).</para>
- <programlisting>sudo /opt/HPCCSystems/sbin/configmgr</programlisting>
- <para><graphic fileref="images/gs_img_configmgrStart.jpg" /></para>
- </listitem>
- </itemizedlist>
- <itemizedlist>
- <listitem>
- <para>Using a Web browser, go to the Configuration Manager's
- interface:</para>
- <programlisting>http://<<emphasis>ip of installed system</emphasis>>:8015</programlisting>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <para>The Configuration Manager startup wizard displays.</para>
- <para>There are a few different ways to configure your HPCC. You can
- use the Generate environment wizard or experienced users can use the
- Advanced View.</para>
- <itemizedlist>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>To use the wizard select the <emphasis
- role="bold">Generate new environment using wizard</emphasis>
- button.</para>
- <para><graphic fileref="images/GS_ConfigMgrWizStart.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Provide a name for the environment file.</para>
- <para>This will then be the name of the configuration xml. For
- example we will name our environment
- <emphasis>NewEnvironment</emphasis>. This will produce an XML
- file named<emphasis> NewEnvironment.xml</emphasis>.</para>
- </listitem>
- <listitem>
- <para>Press the Next button.</para>
- <para>Next you will need to define the IP addresses that your
- HPCC will be using.</para>
- </listitem>
- </itemizedlist>
- <itemizedlist>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Enter the IP addresses.</para>
- <para>IP Addresses can be specified individually using
- semi-colon delimiters. You can also specify a range of IPs using
- a hyphen (for example, nnn.nnn.nnn.x-y). In the image below, we
- specified the IP addresses 10.239.219.1 through 10.239.219.100
- using the range syntax, and also a single IP
- 10.239.219.111.</para>
- <para><graphic fileref="images/GS_ConfigMgrWiz002.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Press the Next button.</para>
- <para>Alternatively, you could find the IP addresses using Auto
- Discovery by selecting the Auto Discovery button.</para>
- <para>Now you will define how many nodes to use for the Roxie
- and Thor clusters.</para>
- </listitem>
- </itemizedlist>
- <itemizedlist>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Enter the appropriate values as indicated.</para>
- <para><graphic fileref="images/GS_CMWiz003.jpg"
- vendor="configmgrSS" /></para>
- <variablelist>
- <varlistentry>
- <term>Number of support nodes:</term>
- <listitem>
- <para>Specify the number of nodes to use for support
- components. The default is 1.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Number of nodes for Roxie cluster:</term>
- <listitem>
- <para>Specify the number of nodes to use for your Roxie
- cluster. Enter zero (0) if you do not want a Roxie
- cluster.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Number of slave nodes for Thor cluster</term>
- <listitem>
- <para>Specify the number of slave nodes to use in your
- Thor cluster. A Thor master node will be added
- automatically.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Number of Thor slaves per node (default 1)</term>
- <listitem>
- <para>Specify the number of Thor slave processes to
- instantiate on each slave node. Enter zero (0) if you do
- not want a Thor cluster.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Enable Roxie on demand</term>
- <listitem>
- <para>Specify whether or not to allow queries to be run
- immediately on Roxie. This must be enabled to run the
- debugger. (Default is true)</para>
- </listitem>
- </varlistentry>
- </variablelist>
- </listitem>
- </itemizedlist>
- <itemizedlist>
- <listitem>
- <para>Press the <emphasis role="bold">Next</emphasis>
- button</para>
- <para>The wizard displays the configuration parameters.</para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Press the <emphasis role="bold">Finish</emphasis> button
- to accept these values or press the <emphasis
- role="bold">Advanced View</emphasis> button to edit in advanced
- mode.</para>
- <graphic fileref="images/GS_ConfigMgrWiz004.jpg" />
- </listitem>
- </itemizedlist>
- <para>You will now be notified that you have completed the
- wizard.</para>
- <para><graphic fileref="images/GS_ConfigMgrWiz005.jpg" /></para>
- <para>At this point, you have created a file named
- NewEnvironment.xml in the <emphasis
- role="bold">/etc/HPCCSystems/source</emphasis> directory</para>
- <informaltable colsep="1" frame="all" rowsep="1">
- <?dbfo keep-together="always"?>
- <tgroup cols="2">
- <colspec colwidth="49.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry><inlinegraphic fileref="images/OSSgr3.png" /></entry>
- <entry>Keep in mind, that your HPPC configuration may be
- different depending on your needs. For example, you may not
- need a Roxie or you may need several smaller Roxie clusters.
- In addition, in a production [Thor] system, you would ensure
- that Thor and Roxie nodes are dedicated and have no other
- processes running on them. This document is intended to show
- you how to use the configuration tools. Capacity planning
- and system design is covered in a training module.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Stop the HPCC</para>
- <para><informaltable colsep="1" frame="all" rowsep="1">
- <tgroup cols="2">
- <colspec colwidth="49.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry><inlinegraphic
- fileref="images/caution.png" /></entry>
- <entry>Be sure HPCC is stopped before attempting to move
- the environment.xml file.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </listitem>
- <listitem>
- <para>Back up the original environment.xml file</para>
- <programlisting># for example
- sudo -u hpcc cp /etc/HPCCSystems/environment.xml /etc/HPCCSystems/environment.bak </programlisting>
- <para>Note: the "live environment.xml file is located in your
- <emphasis role="bold">/etc/HPCCSystems/</emphasis> directory.
- ConfigManager works on files in <emphasis
- role="bold">/etc/HPCCSystems/source</emphasis> directory. You must
- copy from this location to make an environment.xml file
- active.</para>
- </listitem>
- <listitem>
- <para>Copy the new .xml file from the source directory to the
- /etc/HPCCSystems and rename the file to
- <emphasis>environment.xml</emphasis></para>
- <programlisting># for example
- sudo -u hpcc cp /etc/HPCCSystems/source/NewEnvironment.xml /etc/HPCCSystems/environment.xml</programlisting>
- <para></para>
- </listitem>
- <listitem>
- <para>Copy the <emphasis
- role="bold">/etc/HPCCSystems/environment.xml</emphasis> to the
- <emphasis role="bold">/etc/HPCCSystems/</emphasis> on
- <emphasis>every</emphasis> node.</para>
- <para>You may want to use a script to push out XML file to all
- nodes. See the Example Scripts section in the Appendix of the
- Installing_and_RunningtheHPCCPlatform document. You can use the
- scripts as a model to create your own script to copy the
- environment.xml file out to all your nodes.</para>
- </listitem>
- <listitem>
- <para>Restart the HPCC platform.</para>
- </listitem>
- </itemizedlist>
- </sect1>
- </chapter>
- <chapter>
- <title>Configuration Manager Advanced View</title>
- <para>For the advanced user, the Advanced View offers access to adding
- additional instances of components or making configuration settings for
- individual components.</para>
- <sect1 id="configuring-advanced-setup">
- <title>Using ConfigMgr in Advanced Mode</title>
- <para>This section shows some of the configuration options in Advanced
- Mode.</para>
- <para><itemizedlist mark="square">
- <listitem>
- <para>SSH to the first box in your environment and login as a user
- with sudo privileges.</para>
- </listitem>
- <listitem>
- <para>If it is running, stop the HPCC system, using this
- command:</para>
- <para><programlisting>sudo /sbin/service hpcc-init stop</programlisting><informaltable
- colsep="1" frame="all" rowsep="1">
- <?dbfo keep-together="always"?>
- <tgroup cols="2">
- <colspec colwidth="49.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry><inlinegraphic
- fileref="images/OSSgr3.png" /></entry>
- <entry>You can use this command to confirm HPCC
- processes are stopped: <para><programlisting>sudo /sbin/service hpcc-init status</programlisting></para></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </listitem>
- </itemizedlist><itemizedlist mark="square">
- <listitem>
- <para>Start the Configuration Manager service on one node (usually
- the first node is considered the head node and is used for this
- task, but this is up to you).</para>
- <programlisting>sudo configmgr</programlisting>
- <para><graphic
- fileref="images/gs_img_configmgrStart.jpg" /></para>
- </listitem>
- </itemizedlist><itemizedlist>
- <listitem>
- <para>Using a Web browser, go to the Configuration Manager's
- interface:</para>
- <programlisting>http://<<emphasis>ip of installed system</emphasis>>:8015</programlisting>
- </listitem>
- </itemizedlist><itemizedlist mark="square">
- <listitem>
- <para>The Configuration Manager startup wizard displays.</para>
- <para>There are a few different ways to configure your system. You
- can use the Generate environment wizard or experienced users can
- use the Advanced set up.</para>
- <itemizedlist>
- <listitem>
- <para>Select <emphasis role="bold">Advanced View</emphasis>,
- then press the <emphasis role="bold">Next
- </emphasis>button.</para>
- </listitem>
- <listitem>
- <para>Select an XML file from the drop list.</para>
- <para>This list is populated from versions of an environment
- XML file in your server's ./etc/HPCCSystems/source/
- directory.</para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Press the <emphasis role="bold">Next</emphasis> button.
- <graphic fileref="images/CM-WizStart.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- </listitem>
- </itemizedlist></para>
- <itemizedlist mark="circle">
- <listitem>
- <para>The Configuration Manager interface displays.</para>
- <para><informaltable colsep="1" frame="all" rowsep="1">
- <?dbfo keep-together="always"?>
- <tgroup cols="2">
- <colspec colwidth="49.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry><inlinegraphic
- fileref="images/OSSgr3.png" /></entry>
- <entry>Default access is read-only. Many options are only
- available when write-access is enabled. <para>Gain write
- access by checking the <emphasis role="bold">Write
- Access</emphasis> checkbox. </para><para>Unchecking this
- box returns the environment to read-only mode. All menu
- items are disabled in read-only mode. </para><para>Closing
- the web page automatically removes any write-access
- locks.</para></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </listitem>
- <listitem>
- <para>Check the <emphasis role="bold">Write Access</emphasis>
- box.</para>
- <para><graphic fileref="images/CM-img101.jpg"
- vendor="configmgrSS" />The <emphasis role="bold">Save</emphasis>
- button<inlinegraphic fileref="images/GS-img01c.png"
- vendor="configmgrSS" /> validates and saves the environment.</para>
- <para>The <emphasis role="bold">Save Environment As</emphasis>
- button <inlinegraphic fileref="images/CM-img181.jpg"
- vendor="configmgrSS" /> validates and lets you specify the
- environment filename to save.</para>
- <para>The <emphasis role="bold">Validate Environment</emphasis>
- button<inlinegraphic fileref="images/GS-img01d.png"
- vendor="configmgrSS" /> just validates the current environment
- including any changes that have not yet been saved.</para>
- <para>The <emphasis role="bold">Open Environment</emphasis> button
- <inlinegraphic fileref="images/CM-img18.jpg" vendor="configmgrSS" />
- allows you to open a new environment file to work on.</para>
- <para>The <emphasis role="bold">Wizard</emphasis> button
- <inlinegraphic fileref="images/CM-img19.jpg" vendor="configmgrSS" />
- will bring up the Configuration Manager chooser form which will
- allow you to create or view an environment file where you can also
- launch the configuration wizard.</para>
- <para>These buttons are only enabled in Write Access mode.</para>
- </listitem>
- </itemizedlist>
- <sect2>
- <title>XML View</title>
- <para>In the advanced view of configuration manager, you can
- optionally choose to work with the XML view.</para>
- <para>To see the the configuration in XML view click on the
- Environment heading in the Navigator panel on the left side.</para>
- <para><graphic fileref="images/CM-120.jpg" />You can access the same
- attributes through the XML view. If you wish to add an attribute that
- does not exist in XML view, RT-CLICK on one of the components then you
- can choose to add the attribute options.</para>
- <para><graphic fileref="images\CM-121.jpg" /></para>
- </sect2>
- <sect2>
- <title>Hardware Section</title>
- <para>This section allows you to define your list of servers. When
- defining instances of components, you will choose from servers in this
- list.</para>
- <itemizedlist mark="circle">
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select <emphasis role="bold">Hardware</emphasis> in the
- Navigator panel on the left side.</para>
- <para><graphic fileref="images/CM-img01.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <para>Select the <emphasis role="bold">Computers</emphasis>
- tab.</para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>RT-CLICK on one of computers listed, then select New
- Range.</para>
- <para><graphic fileref="images/CM-img02.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <para>Specify the following:</para>
- <itemizedlist>
- <listitem>
- <para>Name Prefix - any name that will help you to identify
- the node or range</para>
- </listitem>
- <listitem>
- <para>Start IP Address</para>
- </listitem>
- <listitem>
- <para>Stop IP Address</para>
- <para>The IP Addresses can be specified in a range if all your
- host IP addresses are consecutively numbered. If the IP
- addresses are not sequential you should repeat the process for
- each individual IP address and just add the IP address in both
- the start and stop IP address field. You will then need to
- repeat the process for each node.</para>
- </listitem>
- </itemizedlist>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Press the <emphasis role="bold">OK</emphasis> button.</para>
- <para>The list of nodes now displays with the nodes that you just
- added.</para>
- <para><inlinegraphic fileref="images/CM-img03.jpg"
- vendor="configmgrSS" /></para>
- <para>Next, edit each System Server component instance and set it
- to a newly defined node.</para>
- <!--***The steps that follow are using one component per node. You can allocate more components per node, if needed.-->
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
- disk icon to save</para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <para>Expand the <emphasis role="bold">Software</emphasis>
- section, if necessary, in the Navigator panel on the left side, by
- clicking on the <inlinegraphic
- fileref="images/expandButton.png" /> button.</para>
- </listitem>
- </itemizedlist>
- </sect2>
- <sect2>
- <title>Software Section</title>
- <para>Use the software components section to configure software
- components of the HPCC platform. Most software components are actual
- running processes; however, some are just definitions used by the
- system. These definitions are used by the configuration
- generator.</para>
- <para>Items that appear in red indicate optional values. They are only
- written to the environment if you add to or change that value. If
- untouched, they will not appear in the environment XML file.</para>
- <sect3>
- <title>Dali</title>
- <sect4>
- <title>Instances</title>
- <para><itemizedlist mark="square">
- <listitem>
- <para>Select <emphasis role="bold">Dali Server</emphasis> in
- the Navigator panel on the left side.</para>
- </listitem>
- <listitem>
- <para>Select the Instances tab.</para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>In the computer column, choose a node from the drop
- list as shown below:<graphic fileref="images/CM-img04.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic
- fileref="images/GS-img01c.png" /> disk icon to save</para>
- </listitem>
- </itemizedlist></para>
- </sect4>
- <sect4>
- <title>DaliServer attributes</title>
- <para>This section describes the DaliServer attributes.</para>
- <para><graphic fileref="images/CM-img04-1.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>AuditLogDir</emphasis></entry>
- <entry>Audit Log Process description</entry>
- </row>
- <row>
- <entry><emphasis>dataPath</emphasis></entry>
- <entry>the path to the data</entry>
- </row>
- <row>
- <entry><emphasis>description </emphasis></entry>
- <entry>data path description</entry>
- </row>
- <row>
- <entry><emphasis>environment</emphasis></entry>
- <entry>the current environment file in use</entry>
- </row>
- <row>
- <entry><emphasis>LogDir</emphasis></entry>
- <entry>location of the log files</entry>
- </row>
- <row>
- <entry><emphasis>msgLevel</emphasis></entry>
- <entry>description of the msgLevel</entry>
- </row>
- <row>
- <entry><emphasis>name</emphasis></entry>
- <entry>Name of the process instance (AlphaNumeric and
- underscore only)</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>DaliServer store</title>
- <para>This section describes the attributes configuring how Dali
- handles the system data store.</para>
- <para><graphic fileref="images/CM-img04-2.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>EndTime</emphasis></entry>
- <entry>End Time</entry>
- </row>
- <row>
- <entry><emphasis>IdlePeriod</emphasis></entry>
- <entry>Period to remain Idle</entry>
- </row>
- <row>
- <entry><emphasis>IdleRate</emphasis></entry>
- <entry>IdleRate</entry>
- </row>
- <row>
- <entry><emphasis>keepStores</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>lightweightCoalesce</emphasis></entry>
- <entry>lightweight</entry>
- </row>
- <row>
- <entry><emphasis>MinTime</emphasis></entry>
- <entry>min. time...</entry>
- </row>
- <row>
- <entry><emphasis>recoverDeltaErrors</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>StartTime</emphasis></entry>
- <entry>start time</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>DaliServer LDAP options</title>
- <para>This section describes the DaliServer LDAP tab.</para>
- <para><graphic fileref="images/CM-img04-4.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>authMethod</emphasis></entry>
- <entry>Authentication Method. Kerberos</entry>
- </row>
- <row>
- <entry><emphasis>checkScopeScans</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>filesBasedn</emphasis></entry>
- <entry>The Base File Type</entry>
- </row>
- <row>
- <entry><emphasis>filesDefaultPassword</emphasis></entry>
- <entry>Default Password</entry>
- </row>
- <row>
- <entry><emphasis>filesDefaultUser</emphasis></entry>
- <entry>Default User</entry>
- </row>
- <row>
- <entry><emphasis>ldapProtocol</emphasis></entry>
- <entry>Default Protocol use</entry>
- </row>
- <row>
- <entry><emphasis>ldapServer</emphasis></entry>
- <entry>LDAP Server</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>DaliServer Notes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3 id="Dafilesrv-Process">
- <title>Dafilesrv Process</title>
- <sect4>
- <title>Dafilesrv Instances</title>
- <para>Dafilesrv is a helper process that every node needs.</para>
- <itemizedlist mark="square">
- <listitem>
- <para>Select Dafilesrv in the Navigator panel on the left
- side.</para>
- </listitem>
- <listitem>
- <para>Select the Instances tab.</para>
- </listitem>
- <listitem>
- <para>RT-CLICK on a computer in the computer column, and
- select Add Instance .</para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select all computers in the list by checking the
- <emphasis role="bold">Select All</emphasis> box, then press
- the <emphasis role="bold">OK</emphasis> button.</para>
- <para><graphic fileref="images/CM-img12.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic
- fileref="images/GS-img01c.png" /> disk icon to save</para>
- </listitem>
- </itemizedlist>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>Dafilesrv attributes</title>
- <para>This section describes the Dafilesrv attributes.</para>
- <para><graphic fileref="images/CM-img12-1.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>description</emphasis></entry>
- <entry>DaFileSrv Process description</entry>
- </row>
- <row>
- <entry><emphasis>name</emphasis></entry>
- <entry>Name of the process instance (AlphaNumeric and
- underscore only)</entry>
- </row>
- <row>
- <entry><emphasis>version</emphasis></entry>
- <entry>current version number</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- </sect3>
- <sect3 id="DFU-Server">
- <title><emphasis>DFU Server</emphasis></title>
- <sect4>
- <title>DfuServer Instances</title>
- <itemizedlist mark="square">
- <listitem>
- <para>Select <emphasis role="bold">DFU Server</emphasis> in
- the Navigator panel on the left side.</para>
- </listitem>
- <listitem>
- <para>Select the Instances tab.</para>
- </listitem>
- <listitem>
- <para>In the computer column, choose a node from the drop list
- as shown below:<graphic fileref="images/CM-img05.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic
- fileref="images/GS-img01c.png" /> disk icon to save</para>
- </listitem>
- </itemizedlist>
- </sect4>
- <sect4>
- <title>DfuServer Attributes Tab</title>
- <para>This section describes the DfuServer attributes.</para>
- <para><graphic fileref="images/CM-img05-1.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>daliServers</emphasis></entry>
- <entry>The Dali servers to use</entry>
- </row>
- <row>
- <entry><emphasis>description</emphasis></entry>
- <entry>Describes the component</entry>
- </row>
- <row>
- <entry><emphasis>dfuLogDir</emphasis></entry>
- <entry>The log directory</entry>
- </row>
- <row>
- <entry><emphasis>monitorinterval</emphasis></entry>
- <entry>Specifies the polling interval for DFU monitoring
- (in seconds). Default is 900 (15 minutes)</entry>
- </row>
- <row>
- <entry><emphasis>monitorque</emphasis></entry>
- <entry>the queue to monitor</entry>
- </row>
- <row>
- <entry><emphasis>name</emphasis></entry>
- <entry>Name of the process instance (AlphaNumeric and
- underscore only)</entry>
- </row>
- <row>
- <entry><emphasis>queue</emphasis></entry>
- <entry>the name of the dfu server queue</entry>
- </row>
- <row>
- <entry><emphasis>transferBufferSize</emphasis></entry>
- <entry>The value at which...</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>DfuServer SSH Options</title>
- <para>This section describes the DfuServer SSH Options..</para>
- <para><graphic fileref="images/CM-img05-2.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <?dbfo keep-together="always"?>
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>SSHidentityfile</emphasis></entry>
- <entry>The SSH file used for authentication</entry>
- </row>
- <row>
- <entry><emphasis>SSHpassword</emphasis></entry>
- <entry>the SSH Password</entry>
- </row>
- <row>
- <entry><emphasis>SSHretries</emphasis></entry>
- <entry>no. of retries to authenticate</entry>
- </row>
- <row>
- <entry><emphasis>SHtimeout</emphasis></entry>
- <entry>the timeout interval</entry>
- </row>
- <row>
- <entry><emphasis>SSHusername</emphasis></entry>
- <entry>SSH username default is
- <emphasis>hpcc</emphasis></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>DfuServer Notes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3>
- <title>Directories</title>
- <para>The DIrectories component is a global definition used by other
- components to determine the directories they will use for various
- functions.</para>
- <para><graphic fileref="images/CM-161a.jpg"
- vendor="configmgrSS" /></para>
- <para></para>
- <informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="3">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Name</entry>
- <entry>Directory</entry>
- <entry>Description</entry>
- </row>
- <row>
- <entry><emphasis role="bold">log</emphasis></entry>
- <entry>/var/log/[NAME]/[INST]</entry>
- <entry>Location for Log files</entry>
- </row>
- <row>
- <entry><emphasis role="bold">temp</emphasis></entry>
- <entry>/var/lib/[NAME]/[INST]/temp</entry>
- <entry>Location for temp files</entry>
- </row>
- <row>
- <entry><emphasis role="bold">data</emphasis></entry>
- <entry></entry>
- <entry>Base Location for data files</entry>
- </row>
- <row>
- <entry><emphasis role="bold">data2</emphasis></entry>
- <entry></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis role="bold">data3</emphasis></entry>
- <entry></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis role="bold">mirror</emphasis></entry>
- <entry></entry>
- <entry>Base Location for mirror data files</entry>
- </row>
- <row>
- <entry><emphasis role="bold">query</emphasis></entry>
- <entry></entry>
- <entry>Base Location for Queries</entry>
- </row>
- <row>
- <entry><emphasis role="bold"></emphasis></entry>
- <entry></entry>
- <entry></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </sect3>
- <sect3 id="Drop-Zone">
- <title><emphasis>Drop Zone</emphasis></title>
- <sect4>
- <title>DropZone Attributes</title>
- <itemizedlist mark="square">
- <listitem>
- <para>Select Drop Zone in the Navigator panel on the left
- side.</para>
- </listitem>
- <listitem>
- <para>Select the Attributes tab.</para>
- </listitem>
- <listitem>
- <para>In the Value column of the Computer row, choose a node
- from the drop list as shown below:<graphic
- fileref="images/CM-img06.jpg" vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic
- fileref="images/GS-img01c.png" /> disk icon to save</para>
- </listitem>
- </itemizedlist>
- </sect4>
- <sect4>
- <title>DropZone Notes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3 id="ECL-Agent" role="brk">
- <title><emphasis>ECL Agent</emphasis></title>
- <sect4>
- <title>instances</title>
- <itemizedlist mark="square">
- <listitem>
- <para>Select ECL Agent in the Navigator panel on the left
- side.</para>
- </listitem>
- <listitem>
- <para>Select the Instances tab.</para>
- </listitem>
- <listitem>
- <para>In the computer column, choose a node from the drop list
- as shown below:<graphic fileref="images/CM-img07.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic
- fileref="images/GS-img01c.png" /> disk icon to save</para>
- </listitem>
- </itemizedlist>
- </sect4>
- <sect4>
- <title>EclAgent Attributes Tab</title>
- <para>This section describes the EclAgent Attributes tab.</para>
- <para><graphic fileref="images/CM-img07-1.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>description</emphasis></entry>
- <entry>Describes the component</entry>
- </row>
- <row>
- <entry><emphasis>name</emphasis></entry>
- <entry>Name of the process instance (AlphaNumeric and
- underscore only)</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>EclAgent Options Tab</title>
- <para>This section describes the EclAgent Options tab.</para>
- <para><graphic fileref="images/CM-img07-2.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>allowedPipePrograms</emphasis></entry>
- <entry>describes allowed Pipe Programs</entry>
- </row>
- <row>
- <entry><emphasis>daliServers</emphasis></entry>
- <entry>the Dali Servers</entry>
- </row>
- <row>
- <entry><emphasis>pluginDirectory</emphasis></entry>
- <entry>the plugin directory</entry>
- </row>
- <row>
- <entry><emphasis>thorConnectTimeout</emphasis></entry>
- <entry>the Thor timeout value</entry>
- </row>
- <row>
- <entry><emphasis>traceLevel</emphasis></entry>
- <entry>the trace level</entry>
- </row>
- <row>
- <entry><emphasis>wuQueueName</emphasis></entry>
- <entry>the name of the workunit queue</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>EclAgentProcessNotes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3 role="brk">
- <title>ECL CC Server Process</title>
- <sect4>
- <title>Ecl CC Server Instances</title>
- <para><itemizedlist mark="square">
- <listitem>
- <para>Select Ecl CC Server - myeclccserver in the Navigator
- panel on the left side.</para>
- </listitem>
- <listitem>
- <para>Select the Instances tab.</para>
- </listitem>
- <listitem>
- <para>In the computer column, choose a node from the drop
- list as shown below:<graphic
- fileref="images/CM-ECLCC-01.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic
- fileref="images/GS-img01c.png" /> disk icon to save</para>
- </listitem>
- </itemizedlist></para>
- </sect4>
- <sect4>
- <title>Ecl CC Server Attributes Tab</title>
- <para>This section describes the Ecl CC Server Attributes
- tab.</para>
- <para><graphic fileref="images/CM-ECLCC-02.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>daliServers</emphasis></entry>
- <entry>The Dali servers to use</entry>
- </row>
- <row>
- <entry><emphasis>description</emphasis></entry>
- <entry>Describes the component</entry>
- </row>
- <row>
- <entry><emphasis>maxEclccProcesses</emphasis></entry>
- <entry>The maximum number of eclcc processes that will
- be launched in parallel</entry>
- </row>
- <row>
- <entry><emphasis>name</emphasis></entry>
- <entry>Name of the process instance (AlphaNumeric and
- underscore only)</entry>
- </row>
- <row>
- <entry><emphasis>queue</emphasis></entry>
- <entry>Name of the Ecl cc server queue</entry>
- </row>
- <row>
- <entry><emphasis>traceLevel</emphasis></entry>
- <entry>The value ***</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>EclCC Server Process Options</title>
- <para>To add a custom option, rt-click and select add.</para>
- <!--This feature allows the user to configure any options pertinent to the Ecl CC Server Process -->
- <para></para>
- </sect4>
- <sect4>
- <title>EclCC Server Process Notes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3 id="ECL-Scheduler" role="brk">
- <title><emphasis>ECL Scheduler</emphasis></title>
- <sect4>
- <title>instances</title>
- <itemizedlist mark="square">
- <listitem>
- <para>Select <emphasis role="bold">ECL Scheduler</emphasis> in
- the Navigator panel on the left side.</para>
- </listitem>
- <listitem>
- <para>Select the Instances tab.</para>
- </listitem>
- <listitem>
- <para>In the computer column, choose a node from the drop list
- as shown below:<graphic fileref="images/CM-161.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic
- fileref="images/GS-img01c.png" /> disk icon to save</para>
- </listitem>
- </itemizedlist>
- </sect4>
- <sect4 role="brk">
- <title>EclScheduler Attributes Tab</title>
- <para>This section describes the EclScheduler Attributes
- tab.</para>
- <para><graphic fileref="images/CM-160.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>description</emphasis></entry>
- <entry>Describes the component</entry>
- </row>
- <row>
- <entry><emphasis>name</emphasis></entry>
- <entry>Name of the process instance (AlphaNumeric and
- underscore only)</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>EclScheduler Notes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3 id="ESP-Server" role="brk">
- <title><emphasis>ESP Server</emphasis></title>
- <sect4>
- <title>Esp Process Instances</title>
- <itemizedlist mark="square">
- <listitem>
- <para>Select ESP - MyEsp in the Navigator panel on the left
- side.</para>
- </listitem>
- <listitem>
- <para>Select the Instances tab.</para>
- </listitem>
- <listitem>
- <para>In the computer column, choose a node from the drop list
- as shown below:<graphic fileref="images/CM-img08.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic
- fileref="images/GS-img01c.png" /> disk icon to save</para>
- </listitem>
- </itemizedlist>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>Esp - myesp Attributes Tab</title>
- <para>This section describes the Esp - myesp Attributes
- tab.</para>
- <para><graphic fileref="images/CM-img08-1.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>componentfilesDir</emphasis></entry>
- <entry>the component files directory</entry>
- </row>
- <row>
- <entry><emphasis>daliServers</emphasis></entry>
- <entry>the Dali servers</entry>
- </row>
- <row>
- <entry><emphasis>description</emphasis></entry>
- <entry>Describes the component</entry>
- </row>
- <row>
- <entry><emphasis>enableSEHMapping</emphasis></entry>
- <entry>True or False to enable***</entry>
- </row>
- <row>
- <entry><emphasis>formOptionsAccess</emphasis></entry>
- <entry>True or False to enable...***</entry>
- </row>
- <row>
- <entry><emphasis>httpConfigAccess</emphasis></entry>
- <entry>True or False to enable...***</entry>
- </row>
- <row>
- <entry><emphasis>logLevel</emphasis></entry>
- <entry>The Level of ...***</entry>
- </row>
- <row>
- <entry><emphasis>logRequests</emphasis></entry>
- <entry>True or False to enable...***</entry>
- </row>
- <row>
- <entry><emphasis>logResponses</emphasis></entry>
- <entry>True or False to enable...***</entry>
- </row>
- <row>
- <entry><emphasis>maxBacklogQueueSize</emphasis></entry>
- <entry>The size of the backlog queue</entry>
- </row>
- <row>
- <entry><emphasis>maxConcurrentThreads</emphasis></entry>
- <entry>The maximum number of concurrent threads</entry>
- </row>
- <row>
- <entry><emphasis>maxRequestEntityLegnth</emphasis></entry>
- <entry>The maximum length for entity requests</entry>
- </row>
- <row>
- <entry><emphasis>name</emphasis></entry>
- <entry>Name of the process instance (AlphaNumeric and
- underscore only)</entry>
- </row>
- <row>
- <entry><emphasis>perfReportDelay</emphasis></entry>
- <entry>The value at which...***</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4 role="brk">
- <title>Esp - myesp Service BindingsTab</title>
- <para>This section describes the Esp - myesp Service Bindings
- tab.</para>
- <para><graphic fileref="images/CM-img08-2.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry><emphasis role="bold">Attribute
- name</emphasis></entry>
- <entry><emphasis
- role="bold">Definition</emphasis></entry>
- </row>
- <row>
- <entry><emphasis>ECLWatch</emphasis></entry>
- <entry>provides ECL Watch interface</entry>
- </row>
- <row>
- <entry><emphasis>Ws_ecl</emphasis></entry>
- <entry>Provides Web access to published queries</entry>
- </row>
- <row>
- <entry><emphasis>myecldirect</emphasis></entry>
- <entry>Provides Ecl direct access</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>Esp - myesp AuthenticationTab</title>
- <para>This section describes the Esp - myesp Service
- Authentication tab. LDAP is a feature only available in Enterprise
- Edition.</para>
- <para><graphic fileref="images/CM-img08-3.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="155.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>ldapAuthMethod</emphasis></entry>
- <entry>the LDAP Authentication Method</entry>
- </row>
- <row>
- <entry><emphasis>ldapConnections</emphasis></entry>
- <entry>the number of LDAP Connections</entry>
- </row>
- <row>
- <entry><emphasis>ldapServer</emphasis></entry>
- <entry>the LDAP server</entry>
- </row>
- <row>
- <entry><emphasis>method</emphasis></entry>
- <entry>the method...</entry>
- </row>
- <row>
- <entry><emphasis>passwordExpirationWarningDays</emphasis></entry>
- <entry>the number of days advance warning of password
- expiration</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>Esp - myesp HTTPS Tab</title>
- <para>This section describes the Esp - myesp HTTPS tab.</para>
- <para><graphic fileref="images/CM-img08-4.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>acceptSelfSigned</emphasis></entry>
- <entry>True or False to enable self signed
- certificate...</entry>
- </row>
- <row>
- <entry><emphasis>CA_Certificates_Path</emphasis></entry>
- <entry>the location of the CA Certificates</entry>
- </row>
- <row>
- <entry><emphasis>certificateFileName</emphasis></entry>
- <entry>name of the CA Certificate</entry>
- </row>
- <row>
- <entry><emphasis>Name of the city</emphasis></entry>
- <entry>name of the city.</entry>
- </row>
- <row>
- <entry><emphasis>Name of the country</emphasis></entry>
- <entry>name of the country.</entry>
- </row>
- <row>
- <entry><emphasis>Number of days the certificate is
- valid.</emphasis></entry>
- <entry>The Number of days the certificate is
- valid.</entry>
- </row>
- <row>
- <entry><emphasis>enableVerification</emphasis></entry>
- <entry>True or False to enable verification
- of...</entry>
- </row>
- <row>
- <entry><emphasis>organization</emphasis></entry>
- <entry>name of the organization...</entry>
- </row>
- <row>
- <entry><emphasis>organizationalUnit</emphasis></entry>
- <entry>OU to use</entry>
- </row>
- <row>
- <entry><emphasis>passphrase</emphasis></entry>
- <entry>passphrase to use</entry>
- </row>
- <row>
- <entry><emphasis>privateKeyFileName</emphasis></entry>
- <entry>The privatekey name file (such as,
- privatekey.cer)</entry>
- </row>
- <row>
- <entry><emphasis>regenerateCredentials</emphasis></entry>
- <entry>True or False to enable generation of
- credentials.</entry>
- </row>
- <row>
- <entry><emphasis>requireAddressMatch</emphasis></entry>
- <entry>True or False to enable address match</entry>
- </row>
- <row>
- <entry><emphasis>Name of the State</emphasis></entry>
- <entry>name of the state</entry>
- </row>
- <row>
- <entry><emphasis>TrustedPeers</emphasis></entry>
- <entry>The names of trusted peers.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>EspProcess Notes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3 id="FTSlave-Process" role="brk">
- <title><emphasis>FTSlave Process</emphasis></title>
- <para>FTSlave is a helper process that every node needs.</para>
- <sect4>
- <title>Instances</title>
- <itemizedlist mark="square">
- <listitem>
- <para>Select FTSlave in the Navigator panel on the left
- side.</para>
- </listitem>
- <listitem>
- <para>Select the Instances tab.</para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>RT-CLICK on a computer in the computer column, and
- select Add Instance .</para>
- <para><graphic fileref="images/CM-190.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select all computers in the list, then press the
- <emphasis role="bold">OK</emphasis> button.</para>
- <para><graphic fileref="images/CM-112-4.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic
- fileref="images/GS-img01c.png" /> disk icon to save</para>
- </listitem>
- </itemizedlist>
- </sect4>
- <sect4>
- <title>FtSlave attributes</title>
- <para>This section describes the FTSlave attributes tab.</para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>description</emphasis></entry>
- <entry>FTSlave Process description</entry>
- </row>
- <row>
- <entry><emphasis>name</emphasis></entry>
- <entry>Name of the process instance (AlphaNumeric and
- underscore only)</entry>
- </row>
- <row>
- <entry><emphasis>version</emphasis></entry>
- <entry>current version number</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>FtSlave Process Notes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3>
- <title><emphasis>Sasha Server</emphasis></title>
- <sect4>
- <title>Instances</title>
- <itemizedlist mark="square">
- <listitem>
- <para>Select Sasha Server in the menu on the left side.</para>
- </listitem>
- <listitem>
- <para>Select the Instances tab.</para>
- </listitem>
- <listitem>
- <para>In the computer column, choose a node from the drop list
- as shown below:</para>
- </listitem>
- </itemizedlist>
- <graphic fileref="images/CM-img17.jpg" vendor="configmgrSS" />
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>SashaServer Process Archiver</title>
- <para>This section describes the SashaServer Process Archiver
- tab.</para>
- <para><graphic fileref="images/CM-img17-1.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>cachedWUat</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>cachedWUinterval</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>cachedWUlimit</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUrecoveryAt</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUrecoveryCutoff</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUrecoveryInterval</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUrecoveryLimit</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUWUat</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUWUcutoff</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUWUduration</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUWUinterval</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUWUlimit</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>DFUWUthrottle</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>keepResultFiles</emphasis></entry>
- <entry>Keep result files, True or False</entry>
- </row>
- <row>
- <entry><emphasis>WUat</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>WUbackup</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>WUcutof</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>WUduration</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>WUinterval</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>WUlimit</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>WUretryinterval</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- <row>
- <entry><emphasis>WUthrottle</emphasis></entry>
- <entry>SashaServer Archiver Process description</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>SashaServer Process Coalescer</title>
- <para>This section describes the SashaServer Process Coalescer
- tab.</para>
- <para><graphic fileref="images/CM-img17-2.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>coalesceAt</emphasis></entry>
- <entry>SashaServer Coalesce Process description</entry>
- </row>
- <row>
- <entry><emphasis>coalesceInterval</emphasis></entry>
- <entry>SashaServer Coalesce Process description</entry>
- </row>
- <row>
- <entry><emphasis>minDeltaSize</emphasis></entry>
- <entry>SashaServer Coalesce Process description</entry>
- </row>
- <row>
- <entry><emphasis>recoverDeltaErrors</emphasis></entry>
- <entry>SashaServer Coalesce Process description</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>SashaServer Process DfuXRef</title>
- <para>This section describes the SashaServer Process DfuXref
- tab.</para>
- <para><graphic fileref="images/CM-img17-3.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>memoryLimit</emphasis></entry>
- <entry>set value for Memory Limit</entry>
- </row>
- <row>
- <entry><emphasis>xrefAt</emphasis></entry>
- <entry>SashaServer DfuXRef Attribute
- description...</entry>
- </row>
- <row>
- <entry><emphasis>xrefCutoff</emphasis></entry>
- <entry>SashaServer DfuXRef Attribute
- description...</entry>
- </row>
- <row>
- <entry><emphasis>xrefEclWatchProvider</emphasis></entry>
- <entry>Xref Ecl Watch Provider, True or False</entry>
- </row>
- <row>
- <entry><emphasis>xrefInterval</emphasis></entry>
- <entry>value of SashaServer DfuXRef Attribute</entry>
- </row>
- <row>
- <entry><emphasis>xrefList</emphasis></entry>
- <entry>SashaServer DfuXRef Attribute
- description...</entry>
- </row>
- <row>
- <entry><emphasis>xrefMaxScanThreads</emphasis></entry>
- <entry>SashaServer DfuXRef Attribute
- description...</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>SashaServer Process DfuExpiry</title>
- <para>This section describes the SashaServer Process DfuExpiry
- tab.</para>
- <para><graphic fileref="images/CM-img17-4.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>ExpiryAt</emphasis></entry>
- <entry>SashaServer DfuExpiry tab description</entry>
- </row>
- <row>
- <entry><emphasis>ExpiryInterval</emphasis></entry>
- <entry>Interval in hours at which the Dfu
- expires</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>SashaServer Process ThorQMon</title>
- <para>This section describes the SashaServer Process ThorQMon
- tab.</para>
- <para><graphic fileref="images/CM-img17-5.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="155.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>ThorQMonInterval</emphasis></entry>
- <entry>ThorQMonInterval description</entry>
- </row>
- <row>
- <entry><emphasis>ThorQMonQueues</emphasis></entry>
- <entry>ThorQMonQueues description</entry>
- </row>
- <row>
- <entry><emphasis>ThorQMonSwitchMinTime</emphasis></entry>
- <entry>ThorQMonSwitchMinTime description</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>SashaServer Process DaFileSrvMonitor</title>
- <para>This section describes the SashaServer Process
- DaFileSrvMonitor tab.</para>
- <para><graphic fileref="images/CM-img17-6.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>dafsmonAt</emphasis></entry>
- <entry>dafsmon description</entry>
- </row>
- <row>
- <entry><emphasis>dafsmonInterval</emphasis></entry>
- <entry>dafsmon description</entry>
- </row>
- <row>
- <entry><emphasis>dafsmonList</emphasis></entry>
- <entry>dafsmon description</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>SashaServer Process Notes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3 id="Thor">
- <title><emphasis>Thor</emphasis></title>
- <para>This section details how to define a Data Refinery (Thor)
- cluster. Before you begin, you should decide the width of the
- cluster (i.e., how many slave nodes will you have).</para>
- <itemizedlist mark="square">
- <listitem>
- <para>Select <emphasis role="bold">Thor Cluster -
- mythor</emphasis> in the Navigator panel on the left
- side.</para>
- </listitem>
- <listitem>
- <para>Select the <emphasis role="bold">Topology</emphasis>
- tab.</para>
- </listitem>
- <listitem>
- <para>Expand the Topology, if needed, then RT-CLICK the Master
- and select Delete.</para>
- </listitem>
- </itemizedlist>
- <para>This deletes the sample one-node Thor.</para>
- <para>You will replace this with a multi-node cluster.</para>
- <itemizedlist mark="square">
- <listitem>
- <?dbfo keep-together="always"?>
- <para>RT-CLICK on the Topology and select Add Master.</para>
- <para><graphic fileref="images/CM-img13.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select a computer from the list, then press the OK
- button.</para>
- <para><graphic fileref="images/CM-112-5.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <?dbfo keep-together="always"?>
- <para>RT-CLICK on the Master and select Add Slaves.</para>
- <para><graphic fileref="images/CM-111.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select the computers to use as slaves from the list, then
- press the OK button. Use CTRL+CLICK to multi-select or
- SHIFT+CLICK to select a range.</para>
- <para><graphic fileref="images/CM-112-3.jpg"
- vendor="configmgrSS" />The Nodes now display below the Thor
- Master node.</para>
- <para><graphic fileref="images/CM-img14.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- <itemizedlist>
- <listitem>
- <para>Select Thor Cluster - mythor in the Navigator panel on the
- left side.</para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select the Attributes tab.</para>
- <para><graphic fileref="images/CM-img15.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Change the value of the localThor to <emphasis
- role="bold">false</emphasis></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
- disk icon to save</para>
- </listitem>
- </itemizedlist>
- <?hard-pagebreak ?>
- <sect4>
- <title>ThorCluster Attributes</title>
- <para>This section describes the Thor Cluster Attributes
- tab.</para>
- <para><graphic fileref="images/CM-img18-1.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="155.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>allowedPipePrograms</emphasis></entry>
- <entry>ThorCluster Process description</entry>
- </row>
- <row>
- <entry><emphasis>autoCopyBackup</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>checkPointRecovery</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>daliServers</emphasis></entry>
- <entry>The Dali Server</entry>
- </row>
- <row>
- <entry><emphasis>defaultOutputNodeGroup</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>description</emphasis></entry>
- <entry>ThorCluster Process description</entry>
- </row>
- <row>
- <entry><emphasis>externalProgDir</emphasis></entry>
- <entry>Location of externals</entry>
- </row>
- <row>
- <entry><emphasis>globalMemorySize</emphasis></entry>
- <entry>ThorCluster Process description</entry>
- </row>
- <row>
- <entry><emphasis>idleRestartPeriod</emphasis></entry>
- <entry>ThorCluster Process description</entry>
- </row>
- <row>
- <entry><emphasis>largeMemSize</emphasis></entry>
- <entry>ThorCluster Process description</entry>
- </row>
- <row>
- <entry><emphasis>LCR</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>localThor</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>localThorPortBase</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>localThorPortInc</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>masterport</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>monitorDaliFileServer</emphasis></entry>
- <entry>Specifies whether to monitor for DaFileSrv
- process (True or False )</entry>
- </row>
- <row>
- <entry><emphasis>multiSlaves</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>multiThorExclusionLockName</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>multiThorMemoryThreshold</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>multiThorPriorityLock</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>name</emphasis></entry>
- <entry>Name of cluster</entry>
- </row>
- <row>
- <entry><emphasis>nodeGroup</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>pluginsPath</emphasis></entry>
- <entry>Location of plugins</entry>
- </row>
- <row>
- <entry><emphasis>queueName</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>replicateAsync</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>replicateOutputs</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>slaveDownTimeout</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>slaveport</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>smallSortThreshold</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>verifyDaliConnectionInterval</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>watchdogEnabled</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>watchdogProgressEnabled</emphasis></entry>
- <entry>True or False</entry>
- </row>
- <row>
- <entry><emphasis>watchdogProgressInterval</emphasis></entry>
- <entry>ThorCluster Process description</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>ThorCluster SSH Options</title>
- <para>This section describes the ThorCluster SSH Options
- tab.</para>
- <para><graphic fileref="images/CM-img18-2.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>SSHidentityfile</emphasis></entry>
- <entry>Location of the SSH keys component files.</entry>
- </row>
- <row>
- <entry><emphasis>SSHpassword</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>SSHretries</emphasis></entry>
- <entry>The number of times...</entry>
- </row>
- <row>
- <entry><emphasis>SSHtimeout</emphasis></entry>
- <entry>Timeout</entry>
- </row>
- <row>
- <entry><emphasis>SSHusername</emphasis></entry>
- <entry>The user name of the account the SSH keys are
- associated with</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>ThorCluster Debug</title>
- <para>The debug tab is for internal use only</para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>ThorCluster Swap Node</title>
- <para>This section describes the ThorCluster Swap Node tab.</para>
- <para><graphic fileref="images/CM-img18-4.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="155.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>AutoSwapNode</emphasis></entry>
- <entry>True or False. Set to True to enable
- AutoSwapNode</entry>
- </row>
- <row>
- <entry><emphasis>CheckAfterEveryJob</emphasis></entry>
- <entry>True or False. Set to True to Check after Every
- Job</entry>
- </row>
- <row>
- <entry><emphasis>SwapNodeCheckC</emphasis></entry>
- <entry>True or False. Set to True to ...</entry>
- </row>
- <row>
- <entry><emphasis>SwapNodeCheckD</emphasis></entry>
- <entry>True or False. Set to True to...</entry>
- </row>
- <row>
- <entry><emphasis>SwapNodeCheckScript</emphasis></entry>
- <entry></entry>
- </row>
- <row>
- <entry><emphasis>SwapNodeCheckScriptTimeout</emphasis></entry>
- <entry>The number ...</entry>
- </row>
- <row>
- <entry><emphasis>SwapNodeInterval</emphasis></entry>
- <entry>The number ...</entry>
- </row>
- <row>
- <entry><emphasis>SwapNodeMaxConcurrent</emphasis></entry>
- <entry>value of Maximum number of concurrent...</entry>
- </row>
- <row>
- <entry><emphasis>SwapNodeRestartJob</emphasis></entry>
- <entry>True or False. Set to True...</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <?hard-pagebreak ?>
- <sect4>
- <title>ThorCluster Backup</title>
- <para>This section describes the ThorCluster Backup tab.</para>
- <para><graphic fileref="images/CM-img18-5.jpg"
- vendor="configmgrSS" /></para>
- <para><informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>breakoutLimit</emphasis></entry>
- <entry>value of...</entry>
- </row>
- <row>
- <entry><emphasis>refreshRate</emphasis></entry>
- <entry>value of...</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect4>
- <sect4>
- <title>ThorCluster Notes</title>
- <para>This tab allows you to add any notes pertinent to the
- component's configuration. This can be useful to keep a record of
- changes and to communicate this information to peers.</para>
- </sect4>
- </sect3>
- <sect3 id="Roxie" role="brk">
- <title><emphasis>Roxie</emphasis></title>
- <para>This section details how to define a Rapid Data Delivery
- Engine (Roxie) cluster. Before you begin, you should decide the
- width of the cluster (i.e., how many agent nodes will you
- have).***Change the value of the localslave to <emphasis
- role="bold">false***</emphasis></para>
- <itemizedlist mark="square">
- <listitem>
- <para>Select Roxie Cluster in the Navigator panel on the left
- side.</para>
- </listitem>
- <listitem>
- <para>Select the Servers tab.</para>
- </listitem>
- <listitem>
- <para>Expand the RoxieCluster >> farm1, if needed, then
- RT-CLICK the Server and select
- <guimenuitem>Delete</guimenuitem>.</para>
- <para><graphic fileref="images/CM-112.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- <para>This deletes the sample one-node Roxie Server.</para>
- <para>You will replace this with several servers to act as Roxie
- Servers.</para>
- <itemizedlist mark="square">
- <listitem>
- <?dbfo keep-together="always"?>
- <para>RT-CLICK on the Roxie Cluster and select Add Farm.</para>
- <para><graphic fileref="images/CM-112-1.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select the computers to use as Servers from the list, then
- press the OK button. Use Ctrl+click to multi-select or
- shift+click to select a range.</para>
- <para><graphic fileref="images/CM-112-2.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <para>Select the Agents tab.</para>
- </listitem>
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select the RoxieCluster, then RT-CLICK select Reconfigure
- Agents.</para>
- <para>This allows you to replace the single agent with the
- multiple nodes you added as Servers.</para>
- <para><graphic fileref="images/CM-img16.jpg"
- vendor="configmgrSS" /></para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select the computers to use as Agents from the list, then
- press the <emphasis role="bold">OK</emphasis> button. Use
- Ctrl+click to multi-select or shift+click to select a
- range.</para>
- <para><graphic fileref="images/CM-112-2.jpg"
- vendor="configmgrSS" /><emphasis role="bold">Note:</emphasis> In
- this example, we are using the same five nodes that were made to
- be Servers. This is a typical configuration.</para>
- </listitem>
- </itemizedlist>
- <itemizedlist mark="square">
- <listitem>
- <?dbfo keep-together="always"?>
- <para>Select the redundancy scheme to use. Typically, this is
- Circular Redundancy, as shown below.</para>
- <para><graphic fileref="images/GS-img25.png"
- vendor="configmgrSS" /></para>
- </listitem>
- <listitem>
- <para>Click the <inlinegraphic fileref="images/GS-img01c.png" />
- disk icon to save</para>
- </listitem>
- <listitem>
- <para>Close Configuration Manager by pressing ctrl+C in the
- command window where it is running.</para>
- </listitem>
- </itemizedlist>
- </sect3>
- <sect3 id="Topology" role="brk">
- <title>Topology</title>
- <para>This section describes the topology tab.</para>
- <para></para>
- <para><graphic fileref="images/CM-img20.jpg"
- vendor="configmgrSS" /><informaltable colsep="0" frame="none"
- rowsep="0">
- <tgroup cols="2">
- <colspec align="left" colwidth="122.40pt" />
- <colspec />
- <tbody>
- <row>
- <entry>Attribute name</entry>
- <entry>Definition</entry>
- </row>
- <row>
- <entry><emphasis>Topology</emphasis></entry>
- <entry>describes the system topology</entry>
- </row>
- <row>
- <entry><emphasis>Cluster - thor</emphasis></entry>
- <entry>describes the Thor clusters</entry>
- </row>
- <row>
- <entry><emphasis>Cluster - hthor</emphasis></entry>
- <entry>describes the hthor clusters</entry>
- </row>
- <row>
- <entry><emphasis>Cluster - roxie</emphasis></entry>
- <entry>describes the Roxie clusters</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </sect3>
- <sect3 id="Propogate-configuration-changes">
- <title><emphasis>Distribute Configuration Changes to all Nodes
- </emphasis></title>
- <para>Once your environment is set up as desired, you must copy the
- configuration file out to the other nodes.</para>
- <para></para>
- <itemizedlist>
- <listitem>
- <para>If it is running, stop the system</para>
- <para><informaltable colsep="1" frame="all" rowsep="1">
- <?dbfo keep-together="always"?>
- <tgroup cols="2">
- <colspec colwidth="49.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry><inlinegraphic
- fileref="images/caution.png" /></entry>
- <entry>Be sure system is stopped before attempting to
- move the Environment.xml file.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- </listitem>
- <listitem>
- <para>Back up the original environment.xml file</para>
- <programlisting># for example
- sudo -u hpcc cp /etc/HPCCSystems/environment.xml /etc/HPCCSystems/environment.bak </programlisting>
- <para>Note: the "live environment.xml file is located in your
- <emphasis role="bold">/etc/HPCCSystems/</emphasis> directory.
- ConfigManager works on files in <emphasis
- role="bold">/etc/HPCCSystems/source</emphasis> directory. You
- must copy from this location to make an environment.xml file
- active.</para>
- </listitem>
- <listitem>
- <para>Copy the NewEnvironment.xml file from the source directory
- to the /etc/HPCCSystems and rename the file to
- environment.xml</para>
- <programlisting># for example
- sudo -u hpcc cp /etc/HPCCSystems/source/NewEnvironment.xml /etc/HPCCSystems/environment.xml</programlisting>
- <para></para>
- </listitem>
- <listitem>
- <para>Copy the /etc/HPCCSystems/environment.xml to the
- /etc/HPCCSystems/ on every node.</para>
- <para></para>
- </listitem>
- <listitem>
- <para>Restart the HPCC system</para>
- <para>You might prefer to script this process, especially if you
- have many nodes. See the Example Scripts section in the Appendix
- of the Installing_and_RunningtheHPCCPlatform document. You can
- use the scripts as a model to create your own script to copy the
- environment.xml file out to all your nodes.</para>
- </listitem>
- </itemizedlist>
- </sect3>
- </sect2>
- </sect1>
- </chapter>
- </book>
|