Sinlge master replication on localhost works not with IP

Hi there,
I'm a littlebit lost, as I don't get a two node BDB setup running. I'll try to give all the setup I use. First of all I only try to start up the first of the two nodes.
When I configure this node with nodeHostPort and helperHosts pointing to localhost, the webapp starting this BDB instance starts up.
When I set both to the IP-address of this very machine, the tomcat stalls in
RepNode. joinGroup(ReplicaConsistencyPolicy consistency, QuorumPolicy initialElectionPolicy):1136:
                 boolean done = getReadyLatch().awaitOrException((limitTime - System.currentTimeMillis()), TimeUnit.MILLISECONDS);actually it does not stall but it wait by default for 10 hours for - I don't know
Here my other settings as complete as possible:
environment setting:
allowCreate=true
cacheSize=0
txnNoSync=false
txnWriteNoSync=false
je.txn.durability=SYNC,SYNC,NONE
je.maxMemory=5242880
je.env.isLocking=true
je.env.isTransactional=true
je.env.isReadOnly=false
replica setting:
je.rep.helperHosts=10.90.7.239:5001
je.rep.groupName=CommandQueue
je.rep.nodeHostPort=10.90.7.239:5001
je.rep.nodeName=masterneedless to say, that the second node has the same behaviour.
More facts:
* When I try to start both nodes, I can see on the node named master a lot of connections in "TIME_WAIT" status with changing ports from the second machine, thus they seem to try something, but it is not "working".
* When I change the port to something else like 8001 it stalls as well HaareRauf
Any idea, what I'm doing wrong?
Maybe you can point me at first to the documentation "BDB Replication for Dummies"?
Edited by: kurellajunior on 28.03.2011 03:13

I'm not sure if I catch, what you mean. Here is what I understood and did:
I completely deleted the BDB database folder - thus it was created fresh and empty, unfortunately I could not start it up. it stalls exactly the same as described above.
Content of je.info.0:
110328 14:04:10:834 INFO [master] Started ServiceDispatcher. HostPort=beta-batch01.test.devbln.europe.nokia.com:5001
110328 14:04:11:007 INFO [master] Current group size: 0
110328 14:04:11:007 INFO [master] New node master(-1) unknown to rep groupOk, I found one mistkake: after deleting the database I also must use the same node for helper node as for hostport. then it starts up! hooray.
Second node want start up now
Edited by: kurellajunior on 28.03.2011 05:19

Similar Messages

  • Firefox works not with G Data CloudSecurity ?

    Firefox works not with G Data CloudSecurity ?

    > Is Internet Explorer browser only interpret the tag:
    <embed> ?
    IE does NOT process the (non-standard) <embed> tag ..
    its only for firefox,
    netscape etc.
    > Why IE has problem playing remote .FLV file and not
    Firefox?
    Your html is a bit of a mess there ..
    <object type="application/x-shockwave-flash"
    data="/wikiguitarist/extensions/flvplayer/FlowPlayer.swf"
    width="320"
    height="290" id="FlowPlayer"><param
    name="allowScriptAccess"
    value="sameDomain" /><param name="allowScriptAccess"
    value="always"><param
    name="movie"
    value="/wikiguitarist/extensions/flvplayer/FlowPlayer.swf"
    /><param name="quality" value="high" /><param
    name="flashvars"
    value="autoPlay=false" /><param name="flashvars"
    value="videoFile=/wikiguitarist/images/9/9a/CanonFuntwo.flv&amp;baseURL=http://www.wikigu itarist.com:80&amp;loop=false"
    /><embed allowScriptAccess="always"
    src="/wikiguitarist/extensions/flvplayer/FlowPlayer.swf"FlashVars=videoFile=/wikiguitaris t/images/9/9a/CanonFuntwo.flv&amp;baseURL=http://www.wikiguitarist.com:80&amp;loop=false"
    type="application/x-shockwave-flash"""
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"""
    width="320"
    height="290" /></embed></object>
    .. you've got multiple flashvars (I don't know if that is
    allowed) and your
    embed tag appear to be missing spaces between attributes (it
    sa wonder it
    works at all).
    Make your HTML cleaner without duplicate parms etc and it
    will probably
    work.
    IE the problem apepars to be your HTML, not IE or Firefox
    Jeckyl

  • Basic Multi Master Replication doesn't work!

    Hi all,
    <br><br>
    I am studying Oracle replication and I tried to apply multi master replication MMR between two databases: WinXp12 (master definition) and WinXp11.<br>
    After successfully doing all the steps in the code below to replicate table SCOTT.DEPT, I inserted a row in the table in WinXp12. But I didn't see the inserted row in the remote site WinXp11.<br><br>
    Where wrong was I? Anything missed?<br><br>
    By the way, deferror table contains no row and DBA_JOBS has no failures.<br><br>
    Thanks in advance.
    <br><br>
    CREATE USER REPADMIN IDENTIFIED BY REPADMIN;
    GRANT CONNECT, RESOURCE, CREATE DATABASE LINK TO REPADMIN;
    EXECUTE DBMS_REPCAT_ADMIN.GRANT_ADMIN_ANY_SCHEMA('REPADMIN');
    GRANT COMMENT ANY TABLE TO REPADMIN;
    GRANT LOCK ANY TABLE TO REPADMIN;
    EXECUTE DBMS_DEFER_SYS.REGISTER_PROPAGATOR('REPADMIN');
    CONN REPADMIN/REPADMIN
    CREATE DATABASE LINK WINXP11 CONNECT TO REPADMIN IDENTIFIED BY REPADMIN USING 'WINXP11';
    SELECT SYSDATE FROM DUAL@WINXP11 ;
    -- Add jobs to WINXP11
    CONNECT REPADMIN/REPADMIN@WINXP11
    BEGIN
      DBMS_DEFER_SYS.SCHEDULE_PUSH(
        DESTINATION => 'WINXP12',
        INTERVAL => 'SYSDATE + 1/(60*24)',
        NEXT_DATE => SYSDATE,
        STOP_ON_ERROR => FALSE,
        DELAY_SECONDS => 0,
        PARALLELISM => 1);
    END;
    BEGIN
    DBMS_DEFER_SYS.SCHEDULE_PURGE(
      NEXT_DATE => SYSDATE,
      INTERVAL => 'SYSDATE + 1/24',
      DELAY_SECONDS => 0,
      ROLLBACK_SEGMENT => '');
    END;
    -- ADD JOBS TO WinXP12
    CONNECT REPADMIN/REPADMIN@WINXP12
    BEGIN
      DBMS_DEFER_SYS.SCHEDULE_PUSH(
        DESTINATION => 'WINXP11',
        INTERVAL => 'SYSDATE + 1/(60*24)',
        NEXT_DATE => SYSDATE,
        STOP_ON_ERROR => FALSE,
        DELAY_SECONDS => 0,
        PARALLELISM => 1);
    END;
    BEGIN
    DBMS_DEFER_SYS.SCHEDULE_PURGE(
      NEXT_DATE => SYSDATE,
      INTERVAL => 'SYSDATE + 1/24',
      DELAY_SECONDS => 0,
      ROLLBACK_SEGMENT => '');
    END;
    BEGIN
       DBMS_REPCAT.CREATE_MASTER_REPGROUP(
         GNAME => '"MGROUP1"',
         QUALIFIER => '',
         GROUP_COMMENT => '');
    END;
    BEGIN
       DBMS_REPCAT.CREATE_MASTER_REPOBJECT(
         GNAME => '"MGROUP1"',
         TYPE => 'TABLE',
         ONAME => '"DEPT',
         SNAME => '"SCOTT"');
    END;
    -- Generate Replication Support
    BEGIN
       DBMS_REPCAT.GENERATE_REPLICATION_SUPPORT(
         SNAME => '"SCOTT"',
         ONAME => '"DEPT"',
         TYPE => 'TABLE',
         MIN_COMMUNICATION => TRUE,
         GENERATE_80_COMPATIBLE => FALSE);
    END;
    SELECT * FROM DBA_REPCATLOG ;
    -- NO ERROR
    BEGIN
    DBMS_REPCAT.RESUME_MASTER_ACTIVITY(
    GNAME => '"MGROUP1"');
    END;
    BEGIN
    DBMS_REPCAT.SUSPEND_MASTER_ACTIVITY(
    GNAME => '"MGROUP1"');
    END;
    BEGIN
    DBMS_REPCAT.ADD_MASTER_DATABASE(
    GNAME => '"MGROUP1"',
    MASTER => 'WINXP11');
    END;
    -- Restart replication support:
    BEGIN
    DBMS_REPCAT.RESUME_MASTER_ACTIVITY(
    GNAME => '"MGROUP1"');
    END;
    -- here I could see in WinXP11 the tables created in SCOTT schema with data
    -- in WinXP12 I successfully issued the command
    insert into dept values ( 44,'text',null);
    -- I don't see the data in WinXP11
    -- No rows in deferror
    -- dba_jobs shows that there is not broken job

    Hi!
    You will need to create a public db link and a private db link connecting to the public link.
    CONN / AS SYSDBA
    CREATE PUBLIC DATABASE LINK WINXP11 USING 'WINXP11';
    CONN REPADMIN/REPADMIN
    CREATE DATABASE LINK WINXP11 CONNECT TO REPADMIN IDENTIFIED BY REPADMIN;
    SELECT SYSDATE FROM DUAL@WINXP11;
    Regards,
    PP

  • Premiere cs4 works NOT with BMD DECKLINK EXTREME card

    hello,
    in opposite to the information at
    http://www.adobe.com/products/premiere/pdfs/prempro_cs4_formatguide.pdf
    no decklink or SDI presets appear while opening a new project.
    Since I work with SDI (DIGITAL BETACAM) I can not use PrCS4.
    Is there any trick there?
    regards
    vonthile

    I know that the last Blackmagic update was a month before CS4 came out and only then did really get it working correctly with CS3.
    Also keep in mind that that RED support has been on that list since October but was only released a month ago.
    Maybe someone else can answer this better but with CS3 I didn't get the presets from Blackmagic until I installed the update from them, which still hasn't happened.
    It's my understanding that Adobe didn't release an SDK until the 4.0.1 update. Meaning it'll be a few months for everyone to catch up.

  • New Adobe DC works not with fillable Documents (Drop Down Lists) in iOS

    Hi, the new Adobe DC for iOS (iPad) has a big Problem. When you have a fillable Form with some Drop Down Fields it only works with the first Drop Down. Any other Drop Down will not work since you manualy restart the Adobe in the Task Manager. Please Fix that quick! It's not usable for my Company anymore!!!

    Hi together,
    i received a temporary sollution from Adobe to fix that Drop-Down List issue. It works ;-)
    Adobe wrote:
    Hi Adrian,
    Your sample form exhibits a bug in the latest release of Mobile Acrobat/Reader.  The catalyst for this bug is a drop down setting called “Commit selected value immediately”.  Because this setting is rarely used for Mobile forms (it is generally used when connecting to a backend or when you want your selection to immediately toggle something else in the form), it may have been overlooked during final testing.  Nevertheless, we are holding this bug in highest priority to be fixed in the next release of Mobile Acrobat/Reader.
    In the meantime, it may be possible to keep your forms usable while you wait for the next release. Some of your drop down fields use the “Commit selected value immediately” setting and some do not.  Looking at your form, it does not appear that this setting is necessary for any form logic (for example, I do not see any javascript or Actions associated with the fields that would mandate this setting). If the drop down fields that have this setting were modified to be like the other drop down fields that do not have this setting, I believe your form will become usable again.  I have done this for the sample form you sent and have attached it to this message. 
    Let me know if this solves your immediate problem.  And as mentioned, the bug has been triaged and is being addressed with the highest priority level to be included in the next release of Mobile Acrobat/Reader.

  • [Solved] ssh works not with colon(":")

    Hello,
    i was trying to setup sparkleshare with my server and recognized that i cannot login via ssh when giving a path to a folder like e.g. this: ssh 192.168.0.1:/home/sentenza
    It works when i don't give a path adress (ssh 192.168.0.1)...
    What could that be?
    Thanks!
    Last edited by sentenza (2011-12-29 12:43:12)

    Did that ever work? I've never heard of ssh'ing into a specific directory, and couldn't find anything in the man page.
    Are you possibly mixing up ssh and the ability of scp to copy to a specific directory?
    Google'ing "ssh into directory" yields:
    ssh -t 192.168.0.1 'cd /home/sentenza; bash'

  • Camera connection kit works not with iPad 2, but still with iPad 1

    Since I have my iPad 2 i can't import my photos by the kit in the iPad 2, but still works on iPad 1.
    I don't know why, because no error messages are displayed or something else.
    In both cases I used the same accessories (SD-Card) and the iPads are the "big" versions incl. the 3G.
    Could anyone can help me?

    Try:
    1) To restart (reboot) Press and Hold the Home and Power buttons until the Apple Logo appears, about 10
      seconds.
    2) If that doesn't work, try a reset. To reset go to Settings, General, Reset, Reset.
    3) If it's still bad, you can try a restore from within itunes. (Sync first)

  • ODI-10150: Work repository with ID 7 is not bound to master

    Hi all,
    I am upgrading from 10g to 111.1.1.6 and getting the below error, can any say how to bound this work repository to the master repository.
    [2012-10-01T11:44:14.626-05:00] [eclipse] [NOTIFICATION] [org.eclipse.persistence.default] master-session logout successful
    [2012-10-01T11:44:14.897-05:00] [ODI] [INCIDENT_ERROR] [upgrade.ODI] [[--------- ODIPlugin.doUpgrade called]]
    [2012-10-01T11:44:14.897-05:00] [ODI] [INCIDENT_ERROR] [upgrade.ODI] [[
    oracle.odi.core.config.RepositoriesNotBoundException: ODI-10150: Work repository with ID 7 is not bound to master:
         Definition in master ID:800, Name:ODI_WORK_DEV, Timestamp:1321921754567
         Definition in work ID:1, Name:ODI_WORK, Timestamp:1181331962726.
         at oracle.odi.core.repository.support.RepositoryUtils.assertRepositoryBinding(RepositoryUtils.java:430)
         at oracle.odi.core.repository.Repository.getWorkRepository(Repository.java:228)
         at oracle.odi.core.OdiInstance.createWorkRepository(OdiInstance.java:504)
         at oracle.odi.core.OdiInstance.<init>(OdiInstance.java:581)
         at oracle.odi.core.OdiInstance.createInstance(OdiInstance.java:521)
         at oracle.ias.mrua.plugin.odi.ODIPlugin.doUpgrade(ODIPlugin.java:611)
         at oracle.ias.mrua.MRUA.executePlugins(MRUA.java:3576)
         at oracle.ias.mrua.MRUA.internal_driver(MRUA.java:2357)
         at oracle.ias.mrua.MRUA.driver(MRUA.java:1621)
         at oracle.ias.upgrade.gui.UAUpgradeThread.run(UAUpgradeThread.java:390)
    [2012-10-01T11:44:14.902-05:00] [ODI] [NOTIFICATION] [upgrade.ODI] --------- ODIPlugin.doUpgrade finished[[]]

    Hi,
    It should not really create any problem , if you create a two work repositories with differenct IDs. But, the error messae you gave suggests , it is something to do with repository IDs. Usually, we get this message , when we try to migrate ODI code within enviroments. However, it does not throw as an error message, it just gives as an information and asks us if we want to register the new work repository ID. We just need to say Yes and continue.
    I would suggest to redo everything, recreate repositories again. May be something went wrong while creating repositories.
    Regards,
    k

  • ODI-10150: Work repository with ID 1 is not bound to master

    Hello,
    ODI 11g (11.1.1) with database 11g r2
    I have created Master repository (odimrep) and
    work repository(odiwrep), created from Topology
    Before the next step, during this time I was able to login to connect to work repository and able to do all work
    Then I went on to created Execution repository (odierep) from topology, created successfully.
    After that I could not able to connect to work repository, as I am getting the following error message
    oracle.odi.core.config.RepositoriesNotBoundException: ODI-10150: Work repository with ID 1 is not bound to master:
         Definition in master ID:1, Name:ODIWREP, Timestamp:1337006142714
         Definition in work  ID:2, Name:ODIEREP, Timestamp:1337006565503.
    .....Could you please let me know what I am doing wrong to configure the Execution repository, do I need to drop everything and start re-create
    Any help would be greatly appreciated.
    Thanks,

    Hi,
    It should not really create any problem , if you create a two work repositories with differenct IDs. But, the error messae you gave suggests , it is something to do with repository IDs. Usually, we get this message , when we try to migrate ODI code within enviroments. However, it does not throw as an error message, it just gives as an information and asks us if we want to register the new work repository ID. We just need to say Yes and continue.
    I would suggest to redo everything, recreate repositories again. May be something went wrong while creating repositories.
    Regards,
    k

  • Sockets work on localhost but not remotely?

    hi there,
    I have created a simple multithreaded client / server program.
    The Server listens on port 2222 for clients. When a client connects - the client sends its ip address to the server and then disconects. More than 1 client can connect at the same time to the server and the server also listens continuasly. I have 2 problems with the program...
    a) the programs work on localhost but not on remote machines? (Well not over my LAN anyway).
    b) I am getting 2 lots of 'datain' when the server recieves an ip address from the client when the client should only send it once.
    The code is below - any help would be greatly appreciated.
    //TCPServer.java
    import java.io.*;
    import java.net.*;
    class TCPServer {
         public static void main (String args[]) throws IOException {
              ServerSocket serverSocket = null;
              boolean listening = true;
              try {
                   serverSocket = new ServerSocket(2222);
              } catch (IOException e) {
                   System.err.println("Could not listen on port: 2222");
                   System.exit(-1);
              System.out.println("Server Started...\n");
              while (listening)
              new TCPServerThread(serverSocket.accept()).start();
              serverSocket.close();
    //TCPServerThread.java
    import java.net.*;
    import java.io.*;
    public class TCPServerThread extends Thread {
        public Socket socket;
        public TCPServerThread(Socket socket) {
         super("TCPServerThread");
         this.socket = socket;
        public void run() {
                   try {
                   BufferedReader datain = new BufferedReader (new InputStreamReader
                        (socket.getInputStream()));
                        System.out.println("ip address recieved");
                        System.out.println (datain.readLine () + "\n");
                   } catch (IOException e) {
                        System.err.println("Cannot read in ip address\n");
                        e.printStackTrace(); // show the error
                        System.exit(-1);
         } //TCPClient.java
    import java.io.*;
    import java.net.*;
    class TCPClient {
         public static void main (String args[]) throws Exception
              String hostname;
              int portNumber;
              String portString;
              BufferedReader inFromUser =
                   new BufferedReader (new InputStreamReader(System.in));
                   System.out.println("What host would you like to connect to?");
                   hostname = inFromUser.readLine();
                   System.out.println("What port would you like to connect to?");
                   portString = inFromUser.readLine();
                   portNumber = Integer.parseInt(portString);
                   System.out.println("Connecting to port " + portNumber + " of " + hostname + "....\n");
                        Socket clientSocket = new Socket(hostname, portNumber);
                        Socket sock = new Socket (InetAddress.getLocalHost(), portNumber);
                        BufferedWriter dataout;
                        java.net.InetAddress i = java.net.InetAddress.getLocalHost();
                        System.out.println("Sending ip address...\n" + i.getHostAddress());
                             dataout = new BufferedWriter (new OutputStreamWriter (sock.getOutputStream()));
                                  dataout.write (i.getHostAddress());
                                  dataout.flush();
                                  sock.close();
                                       clientSocket.close();
                             }Oh, yeah - check out my site below, I am trying to write an audio streaming client / server in Java if anyone is interested in getting involved or just being nosey....
    http://www.projectg.dsl.pipex.com

    In your client you are creating two sockets (why?). One connected to localhost, the other connected to the host specified using readLine.
    If your client runs on the same machine you have started your server, you have two connects to your server instead of one.
    The ip adresse is sent using the socket connected to localhost. That is why it does not work on remote machines.
    Hope this helps.
    J&ouml;rg

  • Multi Master Replication - Only works for some tables?

    I have a multi master replication between a 9i and an 816 database.
    All the tables are in the same tablespace and have the same owner. The replication user has full privs on all the tables.
    When setting up the replication some tables create properly, but others fail with a "table not found" error.
    Ideas anyone ?
    Andrew

    You said that you have a 9i replicated with a 816.
    I try the same thing but with two 9i enterprise version databases, free downloaded from www.oracle.com.
    when i ran
    exec dbms_repcat.add_master_database(gname=>'groupname', master=>'replica_link')
    this error appears
    ERROR at line 1:
    ORA-23375: feature is incompatible with database version at replica_link
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REPCAT_MAS", line 2159
    ORA-06512: at "SYS.DBMS_REPCAT", line 146
    ORA-06512: at line 1
    please help me if u have any idea.

  • AJAX with PageMethods works in Application Pages but not with PageLayouts

    Hi All,
    I have created a class which contains public static method decorated with WebMethod and SciptMethod attributes
    Public class BasePage : Microsoft.SharePoint.Publishing.PublishingLayoutPage
            [WebMethod(EnableSession = true)]
            [ScriptMethod(ResponseFormat = ResponseFormat.Json, UseHttpGet = false)]
            public static string HelloWorld()
                return "Hello world is working!";
    Now I changed the <%Page ..> Tag of the PageLayout to inherit from the above class.
    There is a ScriptManager in the master page with EnablePageMethods = true
    I can see the Javascript methods are generated for HelloWorld(..) however the return result is "The Server Method HelloWorld failed." Error code is 500
    However the exact same code when I use with a application page (_layouts) and change the Page tag to inherit from the same base class above - it works OK.
    Both of them Page Layout and Application Page use the same master page - but one works and other does not.
    Additional Information:
    a) Am using Jquery and JqueryUI in the master page.
    b) Site use Publishing Template
    c) Variation is enabled on site
    d) Site has both Anonymous and Windows NT authentication
    The method Path for Application page shows as
    /_layouts/test.aspx/HelloWorld
    and for the page created using the Page layout is:
    /en-us/Company/Pages/Default.aspx/HelloWorld.
    Could anyone please advise what could be wrong where it does not work with Publishing Pages?
    Would please appreciate ideas / thoughts.
    Thanks,
    Mohan
    -- Mohan | My Blog

    Are you sure that you are getting HTTP 500 error ?. Usually HTTP 500 error denotes service unavailable at the server side or at the server end point. What is the exact fiddler trace you are getting ?
    If it is still HTTP 500, then one of the referenced components in the page layouts conflicts the ajax page methods call. Please let me know your findings
    Please mark the replies as answers if they help or unmark if not.

  • ABAP WebDynpro-Trial System in a LAN(not with localhost)

    Hello Basis experts,
    i have installed the WebDynpro ABAP Trial system(NW 2004s) successfully on my laptop.
    Now,I want to lauch the WebDynpro Aplications from an other Client in my private Network(not with http://localhost:8000...). When i try to access WebDynpro via IP-Adress i get the Web-Dynpro Error message that I need a full qualified domain with extension for Web-Dynpro for ABAP.Can i solve this on the Trial-system? Any ideas?
    PS: The other client is a Nintendo WII Game-Console.
    I have installed Opera for devices(http://www.opera.com/products/devices) on the WII and now i want to lauch a WebDynpro Test-Application with the movement of my hands via Nunchuk and WII-Remote;-)
    Frank

    Hello Frank,
    Usually you could add an entry to the 'hosts' file on the pc from where you call the server.
    For instance, if the application server bears the name "appserver" with ip 192.168.0.1 and the client is called "client" with ip 192.168.0.2, you have to add an entry to the 'hosts' file on the "client". This file can be found under Windows in %WINDIR%\System32\Drivers\etc
    The entry looks like:
    192.168.0.1      appserver.example.domain
    After this you can call the WebDynpro from the "client" by using appserver.example.domain as full qualified domain name.
    Not sure whether this works on your Nintendo WII (especially how to find your hosts file).
    Hope this helps anyway,
    Klaus

  • Using attribute uniqueness with multi-master replication?

    Hi,
    I'm trying to use attribute uniqueness in a iDS 5.1 multi-master replication env. I have created a plug-in instance for the attribute (memberID) on each directory instance (same installation on NT) and tested (if I try to create a duplicate value under the same instance I get a constraint error as expected). However if I create a entry under one instance and then create a second entry (different DN) with the same attribute value on the second instance, the entry is written with no complaints? If I create the entries with an identical DN, then the directory automatically adds nsuniqueID to the RDN of the second entry to maintain DN uniqueness but it doesn't seem to mind about duplicate values within the entry despite the plug-in?
    BTW I've tested MMR and it is working and I'm using a subtree to enforce uniqueness.
    Regards
    Simon

    Attribute uniqueness plugin only ensure uniqueness on a single master before the entry is added. It doesn't check replicated operation since they have already been accepted and a positive result was returned to the client. So in a multiMastered environment, it is still possible to add 2 identical attributes, if like you're saying you're adding the entries at the same time on both master servers.
    We're working on a solution to have Attribute Uniqueness working in a multiMastered environment. But we're worried about its impact on performances we may get with it.
    Regards,
    Ludovic.

  • Problem with Multi Master Replication

    Hello All,
    I've setup a multi-master replication with no consumers. i.e i'm having 2 suppliers which should update each other. The setup seems to be fine since the initialization of one supplier by other works very fine. But i couldn't get the synchronization btwn the suppliers get worked. I noticed in the error log that the syn-scan request arrived, but ignored. What are the possibilities of this error ?
    Please help me with this regard.
    Thanks in advance,
    Rajesh

    Hello All,
    Rich, you have been a support to most of us in the group(indeed much to my help)...Its splendid work....
    My problems disappeared after applying the Service pack ....the service pack in fact is mainly to sort out the replication issues.
    Advice from my experience - The patch may be more than enough for most of the replication issues.
    One observation - i had the replica busy error, but i didn't have to restart the replica as suggested by some of the previous threads. Seems the service pack did some fix for it.
    Thank you all,
    Best Regards,
    Rajesh

Maybe you are looking for

  • Installing 11i on Solaris and migrating 8.0.5 to new 8.1.6 database

    I've installed 11i (several times) on a new Sun solaris server. I also selected it to install a fresh database. On another server we have 11.0 and 8.0.5 database. We are using a new server to install 11i and we want to move our database over. I manag

  • Trying to find the cause for error ESSBASE0///Error(1051506)

    Hi, In brief - we backup essbase before nightly updates start for all the essbase apps. During backup our scheduled jobs do the following steps in sequence - 1. Shut down Hyperion Essbase - Execute shutdown.essbase script 2. Apply changes to the cfg

  • Margin Problems in IE

    Hello I have the follwoing code: <table cellpadding="0px" cellspacing="0px" width="100%"> <tr> <td width="60%"> <a class="main_heading_bold" style="margin-left:10%">Welcome</a><a class="main_heading"> Home</a> </td> <td width="40%"></td> </tr> </tabl

  • Can't Restore Exchange 2010 Mailbox DB from HP Data Protector backup

    I'm trying to implement Exchange 2010, but I won't feel comfortable moving many users to it until I've successfully restored a mail database from tape backup.  So far, this hasn't worked out so well.  I'm using HP Data Protector for my backup solutio

  • ITunes Plus Store Downloads Taking Ages to "Process"

    Hi, Upon upgrading to iTunes 8.0 I found that downloading iTunes plus content and processing took a long time circa 5 minutes per song! After upgrading to 8.1, the issue was resolved for a couple of downloads but now seems to have regressed! I am at