11.2 Grid Infrastructure profile.xml file is out of sync

Currently running 11.2 grid infrastructure in a two node cluster. The profile.xml is out of sync on node 1 the profile.xml has a different clusterguid from node 2. I have opened a SAR and Oracle has confirmed this is a bug and is with development tier 2.
I just wanted to know if anyone else has seen this issue.

Using Linux 32 bit and 11gR2, on VMware.
During grid installation, i executed root.sh from root user and facing below issue:
*Failed to rmtcopy "/u01/app/11.2.0/grid/gpnp/rac1/profiles/peer/profile.xml" to "/u01/app/11.2.0/grid/gpnp/profiles/peer/profile.xml" for nodes {rac1,rac2}, rc=256*
rmtcopy aborted
Failed to promote local gpnp setup to other cluster nodes at /u01/app/11.2.0/grid/crs/install/crsconfig_lib.pm line 6803.
any ideas/suggestions, please...

Similar Messages

  • Ethercat 3rd Party Device Profile XML File not complete

    Hi all,
    I'm trying to use a Schneider LXM32 servo drive coupled to a NI cRIO 9074 Ethercat master.
    The problem is that my LabVIEW project is not showing me the full device profile.
    There are 4 available PDO for this device :
    1) Cyclic Synchronous Position
    2) Cyclic Synchronous Velocity
    3) Cyclic Synchronous Torque
    4) Free switching beetween 1) 2) or 3)
    BUT, I only see the firts PDO parameters after importing the xml file. If I open the xml file manually, I see that all the PDO are available.
    The xml file is available in this post.
    Of course, I need to operate in the 4) mode, not the 1)
    Help me, please....
    Sébastien MICHAUD
    CLD
    Attachments:
    Schneider_Electric_LXM32M_V114.zip ‏18 KB

    Hi,
    Thank you for your answer.
    I successfully modified the XML file of my Schneider drive :
    Now I have a lot of others problems (I have made a request on NI France, I supposed you are the one who phoned me today).
    1) The XML file of my LTi DRiVE (another drive of the test bench) is done like this (see attachment):
    1) I can't move the Sm tag because it's already everywhere
    2) I don't understand why 4 devices are exposed.
    Additionnaly, see below the LabVIEW project with this device :
    3) The I/O exposed for the 2 Devices (Schneider and Lti) are shared variables. But I want to poll these I/Os every 125µs. The scan engine can run at 1 ms. So, if a put a "percentage of each scan period" to 1% (the default value is 40%), will I be able to poll every 10 µs ?
    In this example :
    https://decibel.ni.com/content/docs/DOC-11191
    The scan period is 4 ms at the best, so with 40% of each scan period, it represents 1.6 ms.... am I correct ?
    4) Is it necessay to use NI SoftMotion (https://decibel.ni.com/content/docs/DOC-11191) to get/set data to a motor drive ? Is it much more easy with NI SoftMotion ?
    Thanks,
    Sébastien MICHAUD
    Attachments:
    LUST_22_SO.zip ‏2 KB

  • More than 100 mb xml file , giving out of memory error in BIP 10.1.3.4

    We are running outofmemory error, java heap space error, if we run a report which has more than 100mb xml, with two or more grouping in RTF template.
    How to configure it to work with better performance for bigger XML files ?
    Any particular setup , pointers are welcome.
    Thanks.

    Long time no see vet. Your problem sucks. I would go to sun site review there articles on JVM tunning. To solve this problem you will need to change the command line arguments to JVM to increase the heap space.
    java -Xms<initial heap size> -Xmx<maximum heap size>
    Defaults are usually: java -Xms32m -Xmx128m
    -Xm*s* - initial java heap size
    -Xm*x* - maximum java heap size
    -Xm*n* - the size of the heap for the young generation
    This is a good article: http://java.sun.com/developer/technicalArticles/Programming/turbo/
    Also, if this solves your problem please check it off so I can get some points. I've been out of the game for awhile.
    Ike Wiggins
    http://bipublisher.blogspot.com

  • How do I Ftp a XML file with out namespace attribute

    Hi All,
    How do I FTP an xml file that is validated against a schema on the ftp adapter with out the namespace attribute being added to the first and second element of the XML file.
    For example the xml looks like this when I transfer the file.
    <XML_Event xmlns="http://xmlns.oracle.com/PlannedEventSTORMRequestProcess/STORM">
    <Event_Begin xmlns="">
    <XML_File_Header>
    <Originating_System>xxx</Originating_System>
    <ID>387</ID>
    </XML_File_Header>
    </Event_Begin>
    </XML_Event>
    However I want it to be….
    <XML_Event>
    <Event_Begin>
    <XML_File_Header>
    <Originating_System>xxx</Originating_System>
    <ID>387</ID>
    </XML_File_Header>
    </Event_Begin>
    </XML_Event>
    How do i achieve this using the ftp adapter.
    Cheers

    Here is an example that will try to reach the given size in steps of 4 in quality.
    var saveFile = File(Folder.desktop + "/test");
    var fileSize = 70;
    try{
    tmpFile = File(saveFile+".jpg");
    for(var z =100;z>5;z -=4){
    SaveForWeb(tmpFile,z);
    var chkFile = File(saveFile+".jpg");
    //$.writeln(tmpFile + " qual = " + z + " Size = " +(chkFile.length/1024).toFixed(2) + "k" );
    if((chkFile.length/1024).toFixed(2) < (fileSize +1)) break;
    tmpFile.remove();
    if(!tmpFile.exists)  SaveForWeb(tmpFile,5);
    }catch(e){$.writeln(e + " - " + e.line);}
    function SaveForWeb(saveFile,jpegQuality) {
    var sfwOptions = new ExportOptionsSaveForWeb();
       sfwOptions.format = SaveDocumentType.JPEG;
       sfwOptions.includeProfile = false;
       sfwOptions.interlaced = 0;
       sfwOptions.optimized = true;
       sfwOptions.quality = Number(jpegQuality);
    activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);

  • How to generate Java objects from XML files with out  scema compilation

    Dear participants,
    My name is Raghavendra , i have a requirement of reading XML files Dynamically and parse them and create java types for manipulation . i will not be provided with sxd files (no schema compilation )coz no one knows how many types of structures are there. i want a generic solution. Please Help.
    Thanks ,
    Raghavendra Ach
    you can mail me to " [email protected]"

    georgemc wrote:
    You could also look at something like Apache Digester, which will parse your XML and populate Java objects with the data. A slightly steeper learning curve than the lower-level APIs such as JDOM, but that's outweighed by the lesser development effortdon't think that would work for the original problem, which seemed to indicate that the xml had an unknown structure.

  • MPEG-2 file has out of sync audio - PLEASE HELP

    We captured four mini-DV tapes into Final Cut Pro HD using my Canon mini DV camera and a firewire. After capture we put each tape on its own timeline, added chapter markers, and then compressed each one into MPEG-2 files using the QT codec. Once we had the compressed files we deleted the origional footage and burned DVDs with the MPEG-2s.
    After viewing the DVDs we realized that the audio was out of sync on each of them. It seems to get pregressively worse as the tape plays (the beginning is close to being in sync and at the end it's a few seconds off). Each tape is about 59 minutes long.
    We really need to fix this and do not have access to the orional/captured footage. Does anyone have any ideas?

    You deleted the original footage before you verified anything !
    Sorry, this is just <princess bride voice> inconceivable <pbv off>
    Use MPEG Streamclip or DVDxDV to extract a DV NTSC file from the VOB files.
    Drop that in the time line.
    export the audio as an AIFF file
    Open the file in Peak or similar application that change the length of the audio file without changing the pitch.
    reimport the file to FCP
    Re export the file as a m2v and burn a new disk.
    Swear on whatever is holy that you will NEVER delete source footage again if you do not have access to original tapes/media.
    x
    ps. Do not double post - we will get to you.

  • Synced audio in a file is out of sync in premiere/prelude

    I have a file from a documentary film I'm working on that happened to be shot on the iPod Touch. When playing back the original files, the audio is perfectly synced. In Premiere and Prelude, the audio is fast (or the video is slow, I can't tell.) so it gradually goes out of sync, and unfortunately most of the files are minutes long, one, an hour long. I naturally assumed it was the transcoding, but even when importing the straight file, with nothing done to it, not even a rename, and it's still out of sync. It makes no sense, and this is my university thesis, so some help would be appreciated. Thanks.

    gnash799 wrote:
    Is there a lower-tech solution for this? There's gotta be. I should be able to tell Action! to record using BKM and then for Premiere to edit and render it properly. Why all the hoops?
    I don't use Action as it's superfluous in my opinion.  I don't know how to tell it to do software-based encoding into a fixed frame rate.  It might not even be possible.  If it were, then you'd know it: your in-game FPS will drop quite a bit because your CPU load increases.  But again, I don't use Action, so I'm not sure.  That'll have to be an exercise left to the reader.
    The other solution is to install Handbrake and figure out how to convert the MP4 that way.
    Those are your choices.  Pr and Elements can't properly handle VFR files.  In almost every case, the audio and video will be out of sync.

  • Final outputed file is out of sync w/ audio

    the audio is in sync with the video on the timeline play thru....so then I output to H.2641080p 24 ...AAC audio out...but then the finished .mp4 is out of sync by a mili second or so...what can I do? thx.

    Is the Audio source muxed MPEG?
    I have encountered similar, and what makes it insidious is that when the Timeline is played, things seem to be in good sync. Export introduces some OOS.
    When I first encountered this, I tried timing the OOS in the Export, and then altering the sync in the Timeline. However, no matter how much I "adjusted" it, there always seemed to be OOS upon Export.
    The best that I ever found was to rip the Audio, and then do a Save_As to PCM/WAV, replacing the muxed Audio stream. In all but two instances (never did get those into perfect sync), that worked OK, though did require the additional steps.
    Good luck,
    Hunt
    PS - while it is only a theory, since there is a different block size with MPEG Audio vs MPEG Video, I suspect that might account for some of the issues. However, that does NOT explain why the Timeline seems good, but Export is not, other than a compounding of the block size differential. Also, with a muxed file, I would think that the differences in Encoding would NOT exist, as they would with separate Audio and Video streams. I have never heard a good theory on WHY PrPro has issues with muxed MPEG. Maybe Colin can come up with one? BTW - Encore has issues too.

  • MP4 video files have out of sync audio?

    When I import an MP4 video into Premiere Pro CS5.5, I noticed that while playing it the audio gradually becomes out of sync. I am unsure as to what causes this, but when I play the exact same video in an external player (like VLC) the audio is fine.
    I've tried using Audition to export the audio from the video as a WAV file, but upon importing that into PP CS5.5, I discovered that it becomes much worse.
    I'm not sure at this point if the audio is the issue or the video is the issue, but I'd really like an answer.
    Audio settings are at 48 kHz for the audio itself and the sequence in Premiere Pro.
    Thanks.

    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037
    Report back with the codec details of your file, use the programs below... a screen shot works well to SHOW people what you are doing
    For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/en
    For Mac http://mediainfo.massanti.com/
    http://blogs.adobe.com/premiereprotraining/2011/02/red-yellow-and-green-render-bars.html
    Once you know exactly what it is you are editing, report back with that information... and your project setting, and if there is a red line above the video in the timeline, which indicates a mismatch between video and project
    Also, See 2nd post for picture of NEW ITEM process http://forums.adobe.com/thread/872666

  • Wav file gets out of sync with sequence

    Hello,
    I have a 30min sequence that I sent the dialogue to an audio engineer for clean up as an OMF. He sent it back and it gets out of sync about the first 2 minutes or so. By the 30th minute the audio is out of sync about 47 frames.
    I've tried multiple things, couple of observations: the WAV file's waveforms in the timeline show that all audio is in sync, yet when I playback in the timeline audio its out of sync. I even opened up the wav file on Quicktime player and timecodes from quicktime player and my video timeline do match, its only when i place the wav file in the timeline that it appears out of sync.
    I've sent the whole sequence to Soundtrack Pro as a multitrack project. When I playback there it is in sync with the video!!! I export back and still same issue...
    Editing on a Macbook Pro OS X 10.8.4 2.6GHZ Intel Core i7 on FCP 6.0.6.
    The sequence settings: Apple ProRes HQ 25fps. Audio settings: 48 KHz, 16-bit, channel grouped.
    Wave file (sent by audio engineer): 16bit 48.000KHz. Data Rate: 1528.21 kbits/s
    Any help would be amazing!
    Thanks,

    One possibility
    You need to have your easy setup have a frame rate that exactly matches your sequence settings BEFORE you import the audio file.  Doesn't seem to always cause a problem, but it can happen.

  • Audio problem: large avi file / audio out of sync getting worse towards the end

    Hi,
    We have an 11 hours avi file (about 500GB) that plays fine in Windows Media Player and is in sync.
    When we import it into Premiere Pro CS6 audio and video tracks are of the same length. At the beginning of the video sound is fine and in sync as well. But at the end of the video the audio is out of sync by a couple of frames (but still the same length). We tried different things and the only thing that worked was setting the audio buffer size to maximum. Now the audio is in sync at the beginning, middle and end of video. But of course editing is impossible like this (if you hit pause the audio needs some time to stop).
    Any help or suggestions are welcome.
    Cheers

    AVI is a wrapper... what is inside YOUR wrapper?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download
    Also, When your project sequence is correct, you will not see a red line over your timeline at first import, before you do anything to the video
    http://blogs.adobe.com/premiereprotraining/2011/02/red-yellow-and-green-render-bars.html
    If you have a red line over the timeline after importing a video and before adding any effects... your project is wrong for your video
    The NEW ITEM process will ensure that your sequence matches your video file
    CS5-thru-CC PPro/Encore tutorial list http://forums.adobe.com/thread/1448923 has a link to learn about the NEW ITEM process
    Now that you have your video DETAILS available, check to see if you have a video file with a Variable FRAME Rate
    IF YES, you will most likely need to find a program to convert to a CONSTANT Frame Rate to edit in Premiere Elements

  • Trying to import FCP 7 (XML) but chanels out of sync

    Hi,
    I just exported a project from FCP to Premiere Pro CS6.  It looked like it worked and the sequences were there OK but when I play back I get problems with audio. The right chanel is in sync but the left is massivly out (over a second I think).
    I am using Premiere Pro CS6.
    Any ideas?
    Ben

    Well now that I look at all the clips in FCP more closely I see some clips from the same tape are in sync and others are out of sync.  And one section of tape which I captured twice was in sync on one clip and out of sync on the other.  So it can't be the tapes.
    Maybe the sync problem is caused by not coordinating the tape playing and FCP capturing properly every time! So I will try re-capturing the problem sections of tape.

  • Qt files audio out off sync in FCE 4

    Export from iM6HD-expert settings(DVCPRO) out of sync.
    Export from iM6HD-Full Quality and out of sync.
    Imported a high quality H.264 clip and audio in sync but needs to be rendered(FCE said 6 hrs for a 20 min clip. and not what I want to do anyway.
    Tried to open iM^HD project package and used "save as" in QT. Audio in sync but way to much to render. Also tried to export the audio as a seprate AIFF and no sync.
    Thank you kindly

    The MiniDisc comments are interesting.
    I was first made aware of the MiniDisc's potential when a few years ago a club member demonstrated how over a ten minute test it only drifted by 1 frame.
    Then a couple of years ago another chap demonstrated his Digital Voice Recorder which was perfect.
    Apart from being a fraction of the cost of a radio mike they have a number of advantages as there is no chance of reception problems and you also have the original audio from the camera as (poor quality) backup should the radio mike fail.
    Anyway my slight audio drift is no real problem apart from wasting those five seconds altering the speed in FCE !

  • Jdeveloper Data Source control and xml file

    Hi
    I was wundering if Jdeveloper can parse a xml file and and show the results in a grid for a xml file just like the webservice control.
    like here
    http://www.oracle.com/technology/obe/obe11jdev/11/wsdc/wsdc.htm
    regards

    If I'm understanding what you are aiming for then the URL Data Control can do this for XML files if you provide the XML Schema for them.
    See this sample:
    http://www.oracle.com/technology/products/jdev/howtos/urldatacontrol/urldatacontrol.html

  • Ikev2---- hostname and xml file

    Hi Everyone,
    Ikev2 anyconnect is working fine from PC.
    In PC under c\programs data\profile     xml file has hostname  say anyconnect_ikev2.
    Under ASDM---anyconnect  profile I changed the hostname to say xyz.com.
    Then from PC I tried to connect again and found that connection was established and hostname under xml profile of user PC is changed to xyz.com.
    Need to know how PC was able to connect even though hostname was changed?
    Regards
    MAhesh

    Mahesh,
    The client is connecting based on the HostAddress field of the profile.
    HostName is what is used to populate the drop down list and identify the connection in "plain language". While it is often the FQDN, it does not have to be.
    When a user established the connection one of the things that happens is that any changes in the profile on the ASA are pushed to the user's locally stored profile.

Maybe you are looking for

  • Double figure for Elimination

    Hi all, This is my detail explaination regarding this issue. When I run balance carryforward for period 1/2008, figure for posting level 20 will carryforward.(RM27,441.0). This is IU figure from period 16/2007. But after I run task IU Elimination, th

  • During Install Test of X Fails

    I'm following the beginner's install guide in the wiki. When I get to the section "Test X" and run the command "X -config /etc/X11/xorg.conf," the test fails. I just see a dark screen, but not the hollow X which is supposed to respond to the touchpad

  • QT Export Quality problems

    I am trying to export from LT to a QT self-contained Qt.mov. When I render the clip in LT it looks fine. When I export it using QT 7.2 Pro I have the quality set at BEST the size set to 720 x 486 which is what I need but when finished I have a very p

  • How to make Crytstal Report Viewer support with Khmer Unicode Font

    Dear all, I'm using Visual Studio 2010, and Crystal Report 13. I'm searching for 2 months about cannot render Khmer Unicode font on Crystal report, but I have no result. Please tell me the way to render Khmer Unicode font well. I'm looking for your r

  • Photoshop not working with Sharp 70" touchscreen?

    I have a customer with a 70" Sharp touchscreen with the Sharp PC attachment.  The touchscreen functions work perfectly for all other programs.  But when they pull up Photoshop none of the touchscreen functions work to control Photoshop.  I have conta