Seek help: How to make XI 3.0 BOE Cluster

My aim to make cluster is:
1. High availability, that is, when Server A is down, Server B can take place.
2. Let job servers on Server B to join Server A's large load publication task to improve performance.
My Steps:
1. New install BOE XI 3.0 on both Server A and Server B, both win2003 sp2 OS.
2. Server A is installed first, so it use an Oracle DB as the CMS repository. And Server B is pointed to the same repository.
I want to change Server B's file store's location after adding Server B's CMS into cluster, however, I found when logging into the CMC, I can only see all servers from server A, and Server B's cms in the server List, and no Server B's node in CCM's SIA list.
The problem is :
1. Server B's cms is stoped, (it's enabled), and I tried manully start it, but failed.
2. How can I let job servers on Server B to register into the new cluster, I don't find any place to see them.
In XI R2, I can add -ns newCluster into servers' command line.
I think, I don't follow the right steps, any one can help?
Thanks in advance!
Jennie

Clustering XI3 servers is explained in detail starting on page 266 in the Admin Guide.
In a nut shell, you will need to delete your current SIA on server B, then add a new SIA in CCM pointing it to the same CMS DB SIA on server A is using.
Once you see new node in CMC, you can clone all servers from node A to node B, which will keep all the server settings they have in A. Including FRS location.

Similar Messages

  • Please help : How to make the anomalistic table just like below?

    Hi all,
    How to make the anomalistic table just like below? Anyone can give the way detail or thoughtway ?
    http://61.132.17.188/webber/table.gif

    This is just a suggestion.
    If you put your "JTable" in a "JScrollPane", then you can add any "java.awt.Component" to the corner of the "JScrollPane" -- using the "setCorner()" method (of "JScrollPane").
    I would suggest making a custon "JPanel" and overriding its "paintComponent()" method to draw a diagonal line (and the required text) on it.
    You can find out more about how to do this from the links I provided in my first reply.
    Hope this helps.
    Good Luck,
    Avi.

  • Help: how to make photo enlargements?

    hi there, i'm am currently constucting a website using iweb. i have managed to create a photo page with all the thumbnails i need.
    can anyone tell me how to make it so when someone clicks on a particular thumbnail and enlargement or the actual size of the photo opens up in a separate window as you find in regular galleries?
    also, is this an effective method, or does it take up a lot more memory when uploading the site, or would it just be better to have larger thumbnails that are more visable?
    any help is appreciated, thanks!
    MacBook2,1   Mac OS X (10.4.8)  

    This should be already happening if you are using a photo page template.

  • Help:How to make static text in JTextField??

    How to make a text to be displayed initially on a JTextField, yet we can not change the text (so the text
    is static)?
    The other question:
    How to make an input mask so that a JTextField
    has input pattern of XXX.XXX.XXX.XXX
    (which is the mask of IP Address) ??
    What I know that limiting input in JTextField can be done
    by extending PlainDocument....what about the cases above??
    Please reply if you know.
    Thanks a lot,
    Ted.

    For the first question, just call setEditable(false).

  • 8i+WebDB HELP:How to make longer fields for "News items"

    8i+WebDB
    How do I create longer fields for my "News items"?
    If I try to publish long sized News I receive an Error:
    "Ora-02005: Implisit(-1) Length not valid for this bind or define
    data type". I HAVE chosen "long field" settings in the DB
    (8.1.5.0.0)
    Are there any parameter settings in WebDB to allow longer
    fields??
    PLEASE HELP!!
    null

    Hi, Lu:
    If I understand your question correctly, you want to modify the FSG of recociliation account of Vendor/Customer to make sure Cost Center/WBS field display in transaction F-22/F-43 for example, right?
    I am not sure whether it is possible, I also tried in ECC6.0 but failed to show these two fields. And I think that doesn't make sense to assign CO object to AP/AR reconciliation account, but assign it to Revenue/Expense account in following line items.
    And You can use New General Ledger functionality Document Splitting to derive corresponding CO object information to Reconciliation Account line item, but it is enabled only in General Ledger level, not in subledger level.
    If you find any other meaningful solution, please also share with us.
    Thanks & BR, Lawrence

  • Help, how to make Finder to refresh custom icon programmatically

    Hi
    I have two file both are same name, e.g. 1.rtf, but with different custom icon.
    When I copied the first 1.rtf to an USB drive, the custom icon was displayed correctly.
    However, when copied the second file to the USB drive to replace the first file, Finder still showed the custom icon of the first file.
    How can I solve this issue and how can I make Finder to refresh the custom icon programmatically.
    Thanks

    Hi KT, thanks your reply & help
    but result is same. The following is my experiment
    STEP 1: copy 1.rtf to USB drive, the result is OK.
    STEP 2: copy another 1.rtf to USB drive, Finder still showing the 1st file icon and a little bit blurred
    STEP 3: copy 3rd file without custom icon, the result is OK
    STEP 4: using following code to set its custom icon, the result is still show the custom icon of the 1st file
    [[NSWorkspace sharedWorkspace] setIcon:image forFile:[filePath stringValue]  options:nil];
    It seems that Finder will has some cache to store file's custom icon. If use "Force Quit" to relaunch Finder, it become correct but how can I use program code to refresh it without "Force Quit"?

  • I need help. how to make vertical drop down menu

    I need help. I want on my site to make navigation as such on this site http://www.website24.eu/einstieg/. if you can help me and explain how?

    like this http://www.jqueryrain.com/?3khGEoMY

  • Help, how to make a program type in a command in command prompt?

    I've got a small code that only works if you type in something like this (assume that the .java file is smallcode.java):
    c:\>java smallcode filename.dcm
    on the other hand, in my main program I have a if else ladder that I want to fit in this code, when my file chooser choose the file type .dcm, I want it to execute the command above, how can I do it?

    1. Not sure if your file is an absolute path name,
    like "c:\files\file.dcm". If it's not, then it has to
    be in the same directory as where your running
    picviewer from. I always use the absolute path just
    to be safe.you know what, you just point out how stupid I am, the path is relative, it depends on where the user surf into, I get the directory like this:
    FileDialog fd = new FileDialog(this, "Select Directory", 0);
    String directory = fd.getDirectory();
    String fileName = fd.getfileName();
    >
    2. Your command string is wrong, try:
    String cmd = ("cmd /c d:\\java
    project\\picviewer\\test\\java DicomViewer " +
    "\""+file+"\"");You are missing a space between DicomViewer and the
    file name. Also, to make sure that it doesn't parse
    the file name, put it in quotes (like I have done
    above).I see, I'll modify the code and come back in couple minutes.
    thanks

  • Newbee help, how to make a outlook styled bar.

    Hi all,
    I'm a beginner in Java and i want to make a toolbar that's like the outlook bar feature in the left hand corner of the screen, where you have a series of buttons ( or button like components). By clicking on any of these buttons, the screen is split up and displays a menu of components according to the button that was clicked. The position of the buttons also changes when it is clicked.
    What i want to do is to open a frame (or something) when you click on one of the components in the menu.
    I want to implement such a functionality in java. Can some one out there give an idea as to which swing components could be used to implement the above, because i realy don't know how to do this. Or if any one has done a similar thing, your code sample would be of much use.
    Thanks in advance,
    fifnux.

    some one out there give an idea as to which swing
    components could be used to implement the above,
    because i realy don't know how to do this. Or if any
    one has done a similar thing, your code sample would
    be of much use.Use a JMenuBar or a JToolBar for the outlook style buttons. Use a JSplitPane for your divisions in your UI. Search the tutorials (see left) for details and app notes on each.

  • Help: How to make JDeveloper to connect to Oracle repository through CMAN?

    Hi folks,
    I have a very dummy problem.
    I have JDeveloper on Linux.
    I have on Oracle SCM Repository in a database, which is across WAN.
    The database is accessible through connection manager.
    BUT HOW DO I EXPLAIN TO JDEVELOPER , that there is a Connection Manager. It only allows me to enter host:port:sid. It doesn't allow me to enter custom JDBC URL.
    This is really missing functionality...
    Please help me,
    Regards,
    Mihail Daskalov

    The support for Oracle SCM in JDeveloper can only connect via thin JDBC. This always requires a host, port and SID. The limitation is due to underlying limitations in the libraries we use to connect to Oracle SCM.
    Is your database connection using OCI? We have an existing enhancement request for OCI support (2700757), but let me know if it's another connection type, and I'll add that to the ER.
    Thanks,
    Brian
    JDev Team

  • Animation Help - how to make an endless animation loop

    Hi All,
    I'm new to Director so bare with me.
    I want to animate a filmstrip graphic that moves left horizontally across the page and eventually repeats itself (reenters the stage from the right side) in an endless loop. Think of a piece of masking tape taped together in a circle, and then rotate the piece of tape in a circle as you look at it.
    What I am currently doing that doesn't work:
    I have created two filmstrip graphics that I have put on different sprites and animated them so that they look like a single piece sliding across the screen. The page loads with Sprite A lying across the screen and starts to animate towards the left. Sprite B follows the right hand side of Sprite A so that it appears as one single graphic. Each graphic is the exact width of the stage. The problem occurs when I get to the end of the 2nd sprite. I want the first sprite to follow the 2nd sprite creating an endless loop. If I code some lingo at the end of the Sprite B to jump back to the beginning of the Sprite A animation, it gives an awkward jump that replaces Sprite B with the Sprite A contents.
    Hopefully my description makes sense. Suggestions or pointers to a tutorial that explains how to do this? My lingo experience so far is VERY limited, and only covers a few pages of very basic commands covering animations, video playback, audio controls, and a few other minor descriptions provided by my instructor.
    I am working with Director 11.5 on a Mac at school (fully licensed version), and 11.5 trial version on a PC at home.
    Thanks,
    Brian H.

    Hi Brian,
    Are you looking at doing something like:
    1. http://kayingleside.com/metamorph.html
    or
    2. http://britton.disted.camosun.bc.ca/metamorphose.html
    The first one is using Shockwave 3D and making the image a map on a cylinder. The second one is a 2D image that loops, which is what I kind of understood yours as being.
    There is a Director tutorial that explains the idea at:
    http://www.director-online.com/buildArticle.php?id=467
    As you'll see at teh bottom of the above page, it was inspired by the work of Jim Collins, who created the first 2 URL I put in this message.
    There is another demo that does example 2 exactly. I thought it was on Director Online but can't seem to find it. I have a demo Director file if you'd like to see it.
    Dean
    Director Lecturer / Consultant / Director Enthusiast
    http://www.deansdirectortutorials.com/
    http://www.multimediacreative.com.au

  • HELP HOW TO MAKE IPOD SCREEN SHOW UP ON WINDOWS 7 LAPTOP!

    Please help I want to get myh ipod screen to show up on my laptop but I don't know how. HELP!!!!!

    I do not fully understand you question.  If you mean you want to watch the screen of your iPod on your computer the answer is no.  There are video-out connectors you can purchase for your iPod that will output VGA, composite and component signals.  If your laptop can accept such a signal you can see the TV output on your laptop.  However, the output does not mirror the iPOd screen and it only works with apps that support TV out.

  • Help: How to make the top level navigation into vertical at the left panel

    We have a need to change the top-level and 2nd-level navigation bars (horizontal)
    into the nodes on the left navigation panel (vertical).
    We find some way but it is a very extensive job.
    Is there any way to do it quickly?
    Thanks a lot! Points guaranteed.

    Hi,
    Try to develop your own menu by using Navigation Tag Libraries. Check this link :
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/42/f35146a7203255e10000000a1553f7/frameset.htm">Navigation Tag Library</a>
    There is also sample codes. You can start your project from this codes.
    Regards
    Abdul.

  • Need Help :  How to make particular Record  in Bold

    Hi Frnds,
    I am facing the problem to resolve the following issue....... Plz... help me out .........
    I am displaying the payslip information (Elements Information ) in a Table.
    In the table , i am showing the "DEDUCTIONS TOTAL"  , "EARNING TOTAL" and "NET PAY"
    Now, i have to display the DEDUCTIONS TOTAL, EARNINGS TOTAL  AND NET PAY in BOLD
    plz... help me out .........
    Regards,
    Jaya

    Hello
    did you try to use EL in the Attribute inlineStyle of the cell you want to style:
                              inlineStyle="#{row.Salary.value>200?'color: Red; background-color: Green; font-size: 30pt; font-weight: bolder;':''}"
    here is the full page script to display data from employees table in HR schema:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <f:view>
      <afh:html>
        <afh:head title="untitled1">
          <meta http-equiv="Content-Type"
                content="text/html; charset=windows-1252"/>
        </afh:head>
        <afh:body>
          <af:messages/>
          <h:form>
            <af:table value="#{bindings.EmployeesView1.collectionModel}" var="row"
                      rows="#{bindings.EmployeesView1.rangeSize}"
                      first="#{bindings.EmployeesView1.rangeStart}"
                      emptyText="#{bindings.EmployeesView1.viewable ? \'No rows yet.\' : \'Access Denied.\'}">
              <af:column sortProperty="EmployeeId" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.EmployeeId}">
                <af:inputText value="#{row.EmployeeId}"
                              required="#{bindings.EmployeesView1.attrDefs.EmployeeId.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.EmployeeId.displayWidth}">
                  <f:convertNumber groupingUsed="false"
                                   pattern="#{bindings.EmployeesView1.formats.EmployeeId}"/>
                </af:inputText>
              </af:column>
              <af:column sortProperty="FirstName" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.FirstName}">
                <af:inputText value="#{row.FirstName}" simple="true"
                              required="#{bindings.EmployeesView1.attrDefs.FirstName.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.FirstName.displayWidth}"/>
              </af:column>
              <af:column sortProperty="LastName" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.LastName}">
                <af:inputText value="#{row.LastName}" simple="true"
                              required="#{bindings.EmployeesView1.attrDefs.LastName.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.LastName.displayWidth}"/>
              </af:column>
              <af:column sortProperty="Email" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.Email}">
                <af:inputText value="#{row.Email}" simple="true"
                              required="#{bindings.EmployeesView1.attrDefs.Email.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.Email.displayWidth}"/>
              </af:column>
              <af:column sortProperty="PhoneNumber" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.PhoneNumber}">
                <af:inputText value="#{row.PhoneNumber}" simple="true"
                              required="#{bindings.EmployeesView1.attrDefs.PhoneNumber.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.PhoneNumber.displayWidth}"/>
              </af:column>
              <af:column sortProperty="HireDate" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.HireDate}">
                <af:inputText value="#{row.HireDate}"
                              required="#{bindings.EmployeesView1.attrDefs.HireDate.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.HireDate.displayWidth}">
                  <f:convertDateTime pattern="#{bindings.EmployeesView1.formats.HireDate}"/>
                </af:inputText>
              </af:column>
              <af:column sortProperty="JobId" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.JobId}">
                <af:inputText value="#{row.JobId}" simple="true"
                              required="#{bindings.EmployeesView1.attrDefs.JobId.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.JobId.displayWidth}"/>
              </af:column>
              <af:column sortProperty="Salary" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.Salary}">
                <af:inputText value="#{row.Salary}"
                              required="#{bindings.EmployeesView1.attrDefs.Salary.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.Salary.displayWidth}"
                              inlineStyle="#{row.Salary.value>200?'color: Red; background-color: Green; font-size: 30pt; font-weight: bolder;':''}">
                  <f:convertNumber groupingUsed="false"
                                   pattern="#{bindings.EmployeesView1.formats.Salary}"/>
                </af:inputText>
              </af:column>
              <af:column sortProperty="CommissionPct" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.CommissionPct}">
                <af:inputText value="#{row.CommissionPct}"
                              required="#{bindings.EmployeesView1.attrDefs.CommissionPct.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.CommissionPct.displayWidth}">
                  <f:convertNumber groupingUsed="false"
                                   pattern="#{bindings.EmployeesView1.formats.CommissionPct}"/>
                </af:inputText>
              </af:column>
              <af:column sortProperty="ManagerId" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.ManagerId}">
                <af:inputText value="#{row.ManagerId}"
                              required="#{bindings.EmployeesView1.attrDefs.ManagerId.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.ManagerId.displayWidth}">
                  <f:convertNumber groupingUsed="false"
                                   pattern="#{bindings.EmployeesView1.formats.ManagerId}"/>
                </af:inputText>
              </af:column>
              <af:column sortProperty="DepartmentId" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.DepartmentId}">
                <af:inputText value="#{row.DepartmentId}"
                              required="#{bindings.EmployeesView1.attrDefs.DepartmentId.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.DepartmentId.displayWidth}">
                  <f:convertNumber groupingUsed="false"
                                   pattern="#{bindings.EmployeesView1.formats.DepartmentId}"/>
                </af:inputText>
              </af:column>
              <af:column sortProperty="DeptName" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.DeptName}">
                <af:inputText value="#{row.DeptName}" simple="true"
                              required="#{bindings.EmployeesView1.attrDefs.DeptName.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.DeptName.displayWidth}"/>
              </af:column>
              <af:column sortProperty="EmpVideo" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.EmpVideo}">
                <af:inputText value="#{row.EmpVideo}" simple="true"
                              required="#{bindings.EmployeesView1.attrDefs.EmpVideo.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.EmpVideo.displayWidth}"/>
              </af:column>
              <af:column sortProperty="Nationality" sortable="false"
                         headerText="#{bindings.EmployeesView1.labels.Nationality}">
                <af:inputText value="#{row.Nationality}" simple="true"
                              required="#{bindings.EmployeesView1.attrDefs.Nationality.mandatory}"
                              columns="#{bindings.EmployeesView1.attrHints.Nationality.displayWidth}"/>
              </af:column>
            </af:table>
          </h:form>
        </afh:body>
      </afh:html>
    </f:view>
    Best Regards,
    Ahmad Al-Zamer

  • Need help: how to make a package into a jar file?

    I tried to make a package into a jar file by using:
    jar cf a.jar packagedirectory
    But when I import one class of this package in an other application, by using:
    javac -cp path\a.jar; app.java
    the compliler can not find the calss.
    The interesting thing is if I do not put the package into the jar file, it works well.
    Here is my sample code under path D:\b\b1
    package b1;
    public class Son
         int x = 10;
         public Son(){
         public int getX(){
              return x;
    and the application code under path d:\b
    import b1.Son;
    public class Father
         public Father(){
         public static void main(String[] args)
              Son son = new Son();
              System.out.println("Hello World!"+son.getX());
    Thanks for any advise.
    Xin Cheng

    You must make sure that you are in the right directory
    when you do your jar command to create the archive.
    [home/trejkaz/proj/test/classes]% jar -cf a.jar
    path/to/package/*.class
    Thank you very much.
    Yes, I did as what you said, but it does not work.
    Here is what I did:
    1. Edit Father.java in D:\b
    2. Edit Son.java in D:\b\b1
    3. Compile Son.java
    4. Complie Father.java
    5. Make the a.jar by
    command jar cf a.jar D:\b\b1\ (I cheked the content of the a.jar, it seems right.)
    a.jar is in directory D:\b
    6. Delete Son.class in D:\b\b1
    7. Run Father.class by
    command: java -classpath D:\b\a.jar; Father
    error message is: Exception in thread "main" java.lang.NoClassDefFoundError: b1/Son
    at Father.main(Father.java:11)
    What is the problem?
    Thanks again.

Maybe you are looking for

  • Can I trade my old MacBook Pro to MacBook Air OR iPad?

    Hello, I bought a MacBook Pro 13 inch last year around August, if I want to buy a MacBook Air 13 inch OR iPad, is there have any trade-in plan exist? Or I can sell the old one to Apple Store to trade some money? Thanks.

  • GPU Transitions in Premiere CS5

    What happened to GPU Transitions in CS5? - Removed in this version? - Removed from downloadable version? Why explaining Card Flip transition usage if it is not available in Pr CS5? http://help.adobe.com/en_US/premierepro/cs/using/WS82164649-8DCE-4cd5

  • Not able to connect to broadband on start up

    Each time I start up my laptop I have to re boot the router (type 4) It comes up as connected but with limited connectivity and the access says local only, I am in the same room about 5 ft away from the router. The up load and down load speeds are 25

  • Airport Extrem: Flashlight is green but always flashing

    Dear Colleagues I have just both a new Airport Extrem. I have connectid it it everything works fine. (internet, apple tv, wireless) The flashlight always flashes green. Should the the light not be on constant green? Thanks for your help

  • BW - Bex - ratio legend

    Hi When I have a ratio in the Bex, and that I choose 'text and key', can I have a different legend in the Excel for the text and the key, or I have to have the name of the ratio? thanks