Error on Threads

Hi I have the following code which works perfectly well on the Simulator.

package com.ashmillers.fgg.PremiershipDivision;

import javax.microedition.location.Coordinates;

import net.rim.blackberry.api.browser.Browser;
import net.rim.blackberry.api.browser.BrowserSession;
import net.rim.blackberry.api.invoke.Invoke;
import net.rim.blackberry.api.invoke.PhoneArguments;
import net.rim.device.api.lbs.MapField;
import net.rim.device.api.system.Bitmap;
import net.rim.device.api.system.Display;
import net.rim.device.api.ui.Color;
import net.rim.device.api.ui.DrawStyle;
import net.rim.device.api.ui.Field;
import net.rim.device.api.ui.Font;
import net.rim.device.api.ui.Graphics;
import net.rim.device.api.ui.Manager;
import net.rim.device.api.ui.Ui;
import net.rim.device.api.ui.XYPoint;
import net.rim.device.api.ui.XYRect;
import net.rim.device.api.ui.component.BitmapField;
import net.rim.device.api.ui.component.Dialog;
import net.rim.device.api.ui.component.LabelField;
import net.rim.device.api.ui.container.GridFieldManager;
import net.rim.device.api.ui.container.HorizontalFieldManager;
import net.rim.device.api.ui.container.MainScreen;
import net.rim.device.api.ui.container.VerticalFieldManager;

public class Arsenal extends MainScreen {
    public Arsenal()
    {
        setBanner(new LabelField ("Premiership Team - Arsenal", DrawStyle.HCENTER|Manager.USE_ALL_WIDTH) {
            public void paint(Graphics graphics)
            {
                graphics.setBackgroundColor(Color.FORESTGREEN);
                graphics.clear();
                graphics.setColor(Color.WHITE);
                Font myFont = Font.getDefault().derive(Font.BOLD, 8, Ui.UNITS_pt);
                setFont(myFont);
                super.paint(graphics);
            }
        });

        setStatus(new LabelField ("Copyright Ashley Parker ©", DrawStyle.HCENTER|Manager.USE_ALL_WIDTH) {
            public void paint(Graphics graphics)
            {
                graphics.setBackgroundColor(Color.FORESTGREEN);
                graphics.clear();
                graphics.setColor(Color.WHITE);
                Font myFont = Font.getDefault().derive(Font.BOLD, 8, Ui.UNITS_pt);
                setFont(myFont);
                super.paint(graphics);
            }
        });

        final Manager gridFieldManager = new GridFieldManager(33, 1, Field.FIELD_HCENTER);

        VerticalFieldManager backgroundManager = new VerticalFieldManager(Manager.FIELD_HCENTER|USE_ALL_WIDTH|Manager.VERTICAL_SCROLL)
        {
            Bitmap logoBitmap = Bitmap.getBitmapResource("redandwhite.png");
            Bitmap logoBitmap1 = Bitmap.getBitmapResource("yellowandmaroon.png");

            int imgWidth = logoBitmap.getWidth();
            int imgHeight = logoBitmap.getHeight();
            int imgXPos = 5;
            int imgYPos = 17;
            int imgTop = 0, imgLeft = 0;

            public void paint(Graphics graphics)
            {
                graphics.setBackgroundColor(Color.PALEGREEN);
                graphics.clear();

                int size = 20;

                if(Display.getWidth() == 360 | Display.getWidth() == 320) {
                    size = 10;
                }

                graphics.setColor(Color.FORESTGREEN);

                int totalHeight = getVirtualHeight();
                graphics.fillRect(0,0, size, totalHeight); //left
                graphics.fillRect(Display.getWidth() - size, 0, size, totalHeight); //right

                if(Display.getWidth() == 480)
                {
                    imgXPos = 32;
                    imgYPos = 11;
                    graphics.drawBitmap(imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap, imgLeft, imgTop);
                    imgXPos = 377;
                    graphics.drawBitmap(imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap1, imgLeft, imgTop);
                }

                if(Display.getWidth() == 360)
                {
                    imgXPos = 29;
                    imgYPos = 18;
                    graphics.drawBitmap(imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap, imgLeft, imgTop);
                    imgXPos = 296;
                    graphics.drawBitmap(imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap1, imgLeft, imgTop);
                }

                if(Display.getWidth() == 320)
                {
                    imgXPos = 24;
                    imgYPos = 17;
                    graphics.drawBitmap(imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap, imgLeft, imgTop);
                    imgXPos = 262;
                    graphics.drawBitmap(imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap1, imgLeft, imgTop);
                }
                graphics.setColor(Color.BLACK);
                super.paint(graphics);
            }
        };

        LabelField myLabelField = new LabelField();

        backgroundManager.add(myLabelField =  new LabelField("ARSENAL FC", Field.FIELD_HCENTER|Field.FOCUSABLE)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }

            protected void paint(Graphics g) {
                int prevColor = g.getColor();
                g.setColor(Color.FORESTGREEN);
                super.paint(g);
                g.setColor(prevColor);
            }

        });

        Font myFont = Font.getDefault().derive(Font.EXTRA_BOLD | Font.ITALIC, 11, Ui.UNITS_pt);
        myLabelField.setFont(myFont);
        myLabelField.setMargin(20,0,0,0);

        Font myFont1 = Font.getDefault().derive(Font.BOLD, 7, Ui.UNITS_pt);
        Font myFont2 = Font.getDefault().derive(Font.PLAIN, 7, Ui.UNITS_pt);
        Font myFont3 = Font.getDefault().derive(Font.BOLD, 9, Ui.UNITS_pt);
        Font myFont4 = Font.getDefault().derive(Font.ITALIC|Font.BOLD, 11, Ui.UNITS_pt);

        HorizontalFieldManager hfm = new HorizontalFieldManager(Field.FIELD_HCENTER);

        LabelField lf = new LabelField("The Emirates Stadium", LabelField.FIELD_HCENTER|LabelField.FOCUSABLE)
        {
            protected void paint(Graphics g) {
                int prevColor = g.getColor();
                g.setColor(Color.FORESTGREEN);
                super.paint(g);
                g.setColor(prevColor);
            }
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setMargin(20,0,0,0);
        lf.setFont(myFont3);

        backgroundManager.add(lf);

        Bitmap bitmapImage = Bitmap.getBitmapResource("emirates.png");
        BitmapField bmf = new BitmapField(bitmapImage, FIELD_HCENTER|FOCUSABLE);
        bmf.setMargin(0,0,20,0);
        gridFieldManager.add(bmf);

        LabelField lf1 = new LabelField("CAPACITY: ", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf1.setFont(myFont1);
        gridFieldManager.add(lf1);

        lf = new LabelField("60,432", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };

        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        lf = new LabelField("ADDRESS: ", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont1);
        gridFieldManager.add(lf);

        lf = new LabelField("75 Drayton Park, London, N5 1BU", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        lf = new LabelField("TELEPHONE: ", LabelField.FOCUSABLE|Field.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont1);
        gridFieldManager.add(lf);

        lf = new LabelField("020 7619 5003", LabelField.FOCUSABLE|Field.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                g.setColor(Color.WHITE);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, on, rect.x, rect.y, rect.width, rect.height);
                super.paint(g);
            }
            public boolean navigationClick (int status , int time){
                String number = this.getText();
                int response = Dialog.ask(Dialog.D_YES_NO,"Are you sure you want to dial the number? \nCall charges will be applicable.",Dialog.YES);
                if(response == Dialog.YES)
                {
                    PhoneArguments phoneArgs = new PhoneArguments(PhoneArguments.ARG_CALL, number);
                    Invoke.invokeApplication(Invoke.APP_TYPE_PHONE, phoneArgs);
                }
                return true;
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        lf = new LabelField("TICKET LINE: ", LabelField.FOCUSABLE|Field.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont1);
        gridFieldManager.add(lf);

        lf = new LabelField("020 7619 5000", LabelField.FOCUSABLE|Field.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, true, rect.x, rect.y, rect.width, rect.height);
            }
            public boolean navigationClick (int status , int time){
                String number = this.getText();
                int response = Dialog.ask(Dialog.D_YES_NO,"Are you sure you want to dial the number? \nCall charges will be applicable.",Dialog.YES);
                if(response == Dialog.YES)
                {
                    PhoneArguments phoneArgs = new PhoneArguments(PhoneArguments.ARG_CALL, number);
                    Invoke.invokeApplication(Invoke.APP_TYPE_PHONE, phoneArgs);
                }
                return true;
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        if(Display.getWidth() == 480) {
            bitmapImage = Bitmap.getBitmapResource("border_480.png");
        }
        else if(Display.getWidth() == 360) {
            bitmapImage = Bitmap.getBitmapResource("border_360.png");
        }
        else if(Display.getWidth() == 320) {
            bitmapImage = Bitmap.getBitmapResource("border_320.png");
        }

        bmf = new BitmapField(bitmapImage, FIELD_HCENTER|FOCUSABLE);
        bmf.setMargin(15,0,15,0);
        gridFieldManager.add(bmf);

        final LabelField lf2 = new LabelField("www.arsenal.com", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            public void paint(Graphics graphics)
            {
                graphics.setColor(Color.BLUE);
                super.paint(graphics);
            }
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                g.setColor(Color.WHITE);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, on, rect.x, rect.y, rect.width, rect.height);
                super.paint(g);
            }
            public boolean navigationClick (int status , int time){

                int response = Dialog.ask(Dialog.D_YES_NO,"Are you sure you want to access the internet? \nData charges may be applicable if they are not included on your tariff.",Dialog.YES);
                if(response == Dialog.YES)
                {
                    BrowserSession bSession = Browser.getDefaultSession();
                    bSession.displayPage("http://www.arsenal.com");
                }
                return true;
            }
        };

        lf2.setFont(myFont4);

        gridFieldManager.setMargin(0,0,20,0);
        gridFieldManager.add(lf2);

        if(Display.getWidth() == 480) {
            bitmapImage = Bitmap.getBitmapResource("border_480.png");
        }
        else if(Display.getWidth() == 360) {
            bitmapImage = Bitmap.getBitmapResource("border_360.png");
        }
        else if(Display.getWidth() == 320) {
            bitmapImage = Bitmap.getBitmapResource("border_320.png");
        }

        bmf = new BitmapField(bitmapImage, FIELD_HCENTER|FOCUSABLE);
        bmf.setMargin(15,0,15,0);
        gridFieldManager.add(bmf);

        lf = new LabelField("STADIUM OPENED: ", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont1);
        gridFieldManager.add(lf);

        lf = new LabelField("2006", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        lf = new LabelField("AWAY STAND: ", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont1);
        gridFieldManager.add(lf);

        lf = new LabelField("South East Corner", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        lf = new LabelField("USUAL ALLOCATION: ", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont1);
        gridFieldManager.add(lf);

        lf = new LabelField("3000 Seats", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        if(Display.getWidth() == 480) {
            bitmapImage = Bitmap.getBitmapResource("border_480.png");
        }
        else if(Display.getWidth() == 360) {
            bitmapImage = Bitmap.getBitmapResource("border_360.png");
        }
        else if(Display.getWidth() == 320) {
            bitmapImage = Bitmap.getBitmapResource("border_320.png");
        }

        bmf = new BitmapField(bitmapImage, FIELD_HCENTER|FOCUSABLE);
        bmf.setMargin(15,0,15,0);
        gridFieldManager.add(bmf);

        lf = new LabelField("NEARBY PUBS (Walking): ", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont1);
        gridFieldManager.add(lf);

        lf = new LabelField("Twelve Pins (10 mins)", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        lf = new LabelField("Blackstock Pub (10 mins)", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        if(Display.getWidth() == 480) {
            bitmapImage = Bitmap.getBitmapResource("border_480.png");
        }
        else if(Display.getWidth() == 360) {
            bitmapImage = Bitmap.getBitmapResource("border_360.png");
        }
        else if(Display.getWidth() == 320) {
            bitmapImage = Bitmap.getBitmapResource("border_320.png");
        }

        bmf = new BitmapField(bitmapImage, FIELD_HCENTER|FOCUSABLE);
        bmf.setMargin(15,0,15,0);
        gridFieldManager.add(bmf);

        lf = new LabelField("TRAIN/TUBE STATIONS", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont1);
        gridFieldManager.add(lf);

        lf = new LabelField("Arsenal Tube Station", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        lf = new LabelField("Finsbury Park Tube Station", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        if(Display.getWidth() == 480) {
            bitmapImage = Bitmap.getBitmapResource("border_480.png");
        }
        else if(Display.getWidth() == 360) {
            bitmapImage = Bitmap.getBitmapResource("border_360.png");
        }
        else if(Display.getWidth() == 320) {
            bitmapImage = Bitmap.getBitmapResource("border_320.png");
        }

        bmf = new BitmapField(bitmapImage, FIELD_HCENTER|FOCUSABLE);
        bmf.setMargin(15,0,15,0);
        gridFieldManager.add(bmf);

        lf = new LabelField("CAR PARKING", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont1);
        gridFieldManager.add(lf);

        lf = new LabelField("No nearby parking. Easier", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        lf = new LabelField("to park at a tube station.", LabelField.FOCUSABLE|LabelField.FIELD_HCENTER)
        {
            protected void drawFocus(Graphics g, boolean on){
                XYRect rect = new XYRect();
                getFocusRect(rect);
                drawHighlightRegion(g, HIGHLIGHT_FOCUS, false, rect.x, rect.y, rect.width, rect.height);
            }
        };
        lf.setFont(myFont2);
        gridFieldManager.add(lf);

        hfm.add(gridFieldManager);
        backgroundManager.add(hfm);

        add(backgroundManager);
    }
}

However, when I add the following code to the screen I get an error message about too many threads

//      MapField myMap;
//
//      int myPrevZoom = 3;
//
//      Coordinates c = new Coordinates(51.554928, -0.108361, 0);
//      myMap = new MapField(Field.FOCUSABLE){
//          protected void paint(Graphics graphics) {
//              Bitmap myIcon = Bitmap.getBitmapResource("stadium_icon.png");;
//              XYRect myDest = null;
//              super.paint(graphics);
//              if (null != myIcon) {
//                  if (null == myDest) {
//                      XYPoint fieldOut = new XYPoint();
//                      convertWorldToField(getCoordinates(), fieldOut);
//                      int imgWidth = myIcon.getWidth();
//                      int imgHeight = myIcon.getHeight();
//                      myDest = new XYRect(fieldOut.x - imgWidth / 2,
//                              fieldOut.y - imgHeight, imgWidth, imgHeight);
//                  }
//                  graphics.drawBitmap(myDest, myIcon, 0, 0);
//              }
//          }
//      };
//
//      myMap.setPreferredSize(290,250);
//      myMap.moveTo(c);
//      myMap.setMargin(30,0,20,20);
//      myMap.setZoom(myPrevZoom);
//
//      backgroundManager.add(myMap);

What is the case and how to solve this?

Thank you

And which line in your code, you are in when this happens?

Also all the code you pasted is commented on isn't she.  If you added the comment lines?

I take that you actually remove all of this but it's confusing isn't.

But please do not copy and paste your code here.  We are not paid to wade through your code.  Rather try to prove too small a section of code as possible, that shows the problem.  This means not just modify the code you.  If you cannot debug your code and need help, then I think that too is that you benefit to help us. You can do this by reproducing the problem is an autonomous small section of the code.  Then it is easier for us to review and also possible for us to test.  Ok?

Finally, I think you make too much treatment in the paint.  Paint is often called and if you do as little as possible in there.  He shouldn't layout fields, get values, get the bitmaps and others.

Here's a simple example:

Replace this:

myMap = new MapField (Field.FOCUSABLE) {}
protected void paint (Graphics graphics) {}
Bitmap myIcon = Bitmap.getBitmapResource ("stadium_icon.png");

with this

myMap = new MapField (Field.FOCUSABLE) {}

Bitmap myIcon = Bitmap.getBitmapResource ("stadium_icon.png");
protected void paint (Graphics graphics) {}

and now you recharge a bitmap for each painting, do you this only once!

For even if you need paint the location later, when he changes you must reset the field with Bitmaps that you want (for example), and then invalidate the field so that it gets repainted.  So you do that once when the situation changes, not whenever you call paint.

I suspect that a change like this will solve your problem.

Tags: BlackBerry Developers

Similar Questions

  • While playing axis & allies game I get this error message "thread PRINCIPAL caught unhandled exception: Access Violation (C0000005) trapped in 1 B: B3FF94".

    I have an old axis & game cd-rom of the allies that gives me a fit. I get an error message and instructions on what to do, but there is no what to do. So, here is what the error looks like with bells and whistles of boxes/windows.

    Fatal error of initialization:

    thread HAND caught unhandled exception: Access Violation (C0000005) trapped in 1 B: B3FF94

    Then, he wants me to send log files that do not exist to "Atari." Heres so I know... This error is an access violation, which means that a certain part of the space no longer exists on my computor. Is there any help?

    Running win 7. must use compatibility to run cd rom.

    It allows to run fine with no probs.

    Thanks in advance for any advice.

    Original title: can not play my game development boo hoo...

    HI U.C.Newman,

    Thanks for the reply.

    Glad to know that you were able to solve the problem. Your efforts to solve this problem is appreciated. Feel free to post your request here on the Forums of Windows, we would be happy to help you.

    Thank you.

  • System Windows 8 Installation error unhandled thread exception

    Have tried to install windows 8 pro with the same result, still getting same error mentioned above. system becomes earlier installed windows 7.

    Ask for help

    I think that we solved the problem as shown in the blue screen.

    SYSTEM_THREAD_EXCEPTION_NOT_HANDLED (USB_Ethernet_Adaptor.sys)

    (1) the laptop BIOS has been updated.

    (2) the driver (USB_Ethernet_Adaptor.sys) has been updated.

  • Error in the new thread should terminate execution

    Hello

    I have a labview VI (continuous while loop), getting initialized in the subsequence of Initialize section of the main sequence and running in the new thread. An error in the execution of this loop will stop execution of VI, pass the error to Teststand and out the thread. I need to put an end to the execution of the main sequence, when the error event in the new thread (passing initialization). Is it possible to do? I'm getting the popup of error Standard Teststand, when the error event, but when I choose to cancel/Abort, the execution of the main sequence doesn't stop and continues. What is the right way to handle errors for threads running in parallel?

    Thank you best regards &,.

    Juvin Ronny

    Some approaches.

    1) wait on the new thread periodically with a wait with a timeout step zero and "timeout causes error" box unchecked. If the thread is finished and has an error, the step of waiting spread the main thread of the error.

    (2) call the Execution.Terminate () or Execution.Abort () of cleaning up your sequence newthread.

    Hope this helps,

    -Doug

  • Thread marshaling ActiveX error

    Hi all

    I tried to control several stages APT of Thorlabs, via its ActiveX interface in LabVIEW.

    In my program, I initialized the steps at the beginning and closed resources for them at the end. The program works without problem.

    After that, when I added some features of the software only for the program, I encountered this error on threads of triage (pls see "error_new_gui.png"). This occurs when

    (1) I ran my program VI for the first time,

    (2) is out of the VI

    (3) ran it again without closing the VI. It also happens even if I close the VI and then reopen it from the LabVIEW project.

    To avoid this, the only solution now is to close LabVIEW after each race.

    A that someone encountered this kind of error? What could be the possible reasons? I've searched around, but it doesn't seem to be much information about this type of errors.

    Thanks in advance...

    Best regards

    Victor

    Hi all

    I contacted Thorlabs - they suggested workaround has been to change the enforcement system preferred in the properties of the VI of "identical to the appellant" to "User Interface". That seems to work for me for now.

    Thanks for reading

    Victor

  • Critical error in CCLeaner

    Original title: catastrophic Danger! Help please?

    My computer unit has the following specifications:

    Microsoft Windows XP SP3
    Intel Pentium IV CPU 2.00 GHZ
    256 RAM
    Radeon 7000 / Radeon VE Family (Microsoft Corporation)

    ... Well, I know that the characteristics of the computer has already been ruled out by civilization, but good this device is MUCH, MUCH useful!

    There are three accounts on my computer.

    So, just like any other ordinary day, I started my computer to use, however, by logging into my account, I noticed that my skin slider had returned to the default skin. I wondered why but did not mind it. However, the next thing that happened really troubled me. The Avast! 6 Internet Security icon in the task bar appears, but there was a red 'X' marks on this subject. Disturbed, I clicked it, and it shows that my computer was not guaranteed. I clicked on the FIX NOW button but delayed enforcement and crashed. I tried to open MS Word 2010, but then he did not! I tried other applications as well, but it's the same thing! I was even more surprised when I clicked on my computer, it opened, but the hard drive list does not appear! I can not open any application or anything that is supposed to open when I click on it! However, I noticed that the application of CCleaner is the only work. I tried to clean my system to see if it really works but reaching 50% (or 47%) of the analysis of the system, a message appeared and told me that a critical error had occurred. It happened like this:

    "Critical error:
    "The thread tried to access a page that was not present and the system could not load the page. For example, the exception can occur if a network connection has been lost during the execution of a program on a network. »

    "CCleaner 2.34.00.
    Microsoft Windows XP SP3
    Intel Pentium IV CPU 2.00 GHZ
    256 RAM
    "Radeon 7000 / Radeon VE Family (Microsoft Corporation).

    Then, there was an option to restart the application or the OK button to close.

    I rebooted it, tried the second account, I was able to log on, but after a few minutes, the appliance has suddenly restarted.

    I tried the third account (that I just recently created), but it froze in the phase "APPLY YOUR PERSONAL SETTINGS.

    These are the system maintenance utilities currently installed on my computer:

    TuneUp Utilities 2011
    Advanced System Optimizer 3

    I tried to access the functions of the system of the people restore, but it could not open.

    Recent changes I made are:

    -Clean my registry using Advanced System Optimizer
    -Defragged my hard drives using Advanced System Optimizer
    -Fixed the user accounts Page Problem (User Accounts Page is BLANK) by registering
    regsvr32 jscript.dll compensating for it.
    -On request a scan of disc using Advanced System Optimizer that needed to be done at the next startup.

    I allowed the scan ends (which took 2 HOURS) to see if it can solve the problem but nothing happened. And every time I start the scan will be repeated.

    Can some help me? Links? Solutions? Measures?

    I'm really worried because this device of mine is really useful and reliable.

    Well, last night I it not stopped thinking computer repair solutions (including yours). I did a scan and no malware has been detected. I booted up a page in which I chose the last known Configuration Settings(My Most Recent Settings that worked) but nothing happened. The system has been blocked to the start screen. I repeated all for about three times, until miraculously, it WORKED! The automatically interrupted scheduled scan, Avast! has been shaped and all my apps were very good again! I created a restore point to ensure the format of my readers and it is now fixed!

    However, a new rose of the problem, anytime that I use my camera, the mouse cursor freezes (only the pointer of the mouse) while others are working properly. I checked if the mouse hardware was damaged, but it was perfectly fine. It happens every time I use my computer and noticed that a reboot of the force was the only solution and all the files that I am currently working on a was lost. I also noticed that I can't bring up the Task Manager and the keyboard commands also froze. The keyboard material is perfectly fine.

    Can you give some advice about this one instead? I am really grateful that you took your time to respond to my request.

    Thanks in ADVANCE!

    A little strange that the formatting of your extra disk solved the problem on your main drive.

    That's what I would try, unplug the extra drive and see if Windows does not start normally, if that does not resolve the problem perform a clean boot by following the instructions HERE. It is essentially a process of elimination to see if you can determine whether or not it is a software or a driver causing the problem.

    On another note, you really push the bare minimum with the amount of ram you have installed. While maybe that's not the problem, it certainly does not help.

  • Error during installation of the agent on the monitored host Manager

    Hi all

    All in SOLARCOSY a manager of the agent in the host control, we are faced with this problem. Please could someone help me on this ASAP.

    Please find the attached screenshot.

    Kind regards

    Shiva G

    Please check this article, he talks about a similar error start agents, the solution may be the same

    https://support.quest.com/SolutionDetail.aspx?ID=SOL116611&PR=Foglight

    • Title

      Cannot start agents on Windows FglAM: no memory buffer space available JVM_Bind
    • Description

      Agents installed on an Agent Manager of windows may not start. The following errors appear in the journal of FglAM:

      2013-11-22 14:16:17.270 ERROR [start Thread] com.quest.glue.core.Glue - cannot start
      java.net.SocketException: no available buffer space (maximum number of connections reached?): JVM_Bind

      2013-11-22 14:16:17.270 ERROR [start Thread] com.quest.glue.core.Glue - an unexpected error has occurred which may cause undesired behavior. You can contact Quest Software customer support if you see this error again: could not stop the native Launcher
      java.lang.NullPointerException

    • Cause

      The number of ephemeral TCP ports by default is 5000. Sometimes, this number can be less if the server has too many active client connections through which ephemeral TCP ports are all used to the top and in this case no more can be allocated to a new client connection request.

    • Resolution

      Resolution

      The solution is to open the registry editor and look for the registry subkey: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters and add a new entry, as shown below:

      Value name: MaxUserPort
      Value type: DWORD
      Value data: 65534

      Workaround

      Restart the Agent Manager Foglight

    • More information

      Ref: http://support.microsoft.com/kb/196271

  • Error trying to invoke BlackBerry native with the rental document map

    Hello

    I am trying to invoke a card native BlackBerry (using the Simulator), on the OS 5.0.  I also try to draw multiple markers location with a rental document.  My code runs successfully, except that I get the following error:

    Thread [net_rim_bb_lbs(182)id=256121856] (Suspended (exception NullPointerException))
        MapRect.intersects(short[]) line: 74
        MapRender.renderLayer(BaseDataSource, Graphics, Maplet, Layer, MapRect, int, int, XYRect, XYRect) line: 331
        MapRender.render(BaseDataSource, RenderListener, Graphics, MapRect, int, int, XYRect, XYRect) line: 483
        BaseMapRenderer.render(BaseDataSource, RenderListener, Graphics, MapRect, MapRect, int, int, int, int, XYRect, XYRect) line: 47
        BaseDataSource.render(RenderListener, Graphics, MapRect, MapRect, int, int, int, int, XYRect, XYRect, Transform) line: 247
        RenderThread.renderImpl(Graphics, MapRect, MapRect, int, int, int, int, XYRect, XYRect) line: 259
        RenderThread.run() line: 346
    

    Once I'm back after the error in debug mode, however, the map is shown correctly and the locations are not displayed correctly.  No one knows what might happen?  Here is my code:

    if (vector != null) {
    
        document = "";
    
        for (int i = 0; i < vector.size(); i++) {
    
            loc = (MyLocationClass) vector.elementAt(i);
    
            document += "";
        }
    
        document += "";
    
        Invoke.invokeApplication(Invoke.APP_TYPE_MAPS,
                new MapsArguments(MapsArguments.ARG_LOCATION_DOCUMENT,
                        document));
    }
    

    Any help would be appreciated. Thank you!

    The Simulator has a lot of questions make the cards properly (at least on my machine).

    It works fine on a real device.

  • "Restart your pc on a problem and needs. We are only collecting the error information, and then we'll restart for you / / error DRIVER IRQL NOT LESS or EQUAL (Smb driver.sys)

    I bought a Dell XPS 14 with Windows 8, less than a month ago, and I get a blue screen with the error message above several times in the past two weeks. I'm not all that computer, I'm looking for all possible assistance. I found the next with the same error message thread, I followed the advice and attached my minidump.zip file.

    Any help you can give me would be most appreciated - thanks in advance!

    Hi dajoip,

    It seems to be an older version of Kaspersky installed which can be a problem because it may not be entirely compatible with Windows 8.

    One thing I might suggest is to uninstall Kaspersky and see if the blue screen errors to solve.

    Consider the alternative security such as firewall and antivirus integrated Windows 8 (Windows Defender) software.

    You can also take advantage of the update or uninstall Daemon Tools.

    If the error persists try the synaptic generic drivers for following a link as the Smb_driver_Intel.sys seems to be a synaptic driver (create a system beforehand Restore Point):

    http://www.Synaptics.com/resources/drivers

  • Error (ORA-12547) while trying to create a database on AWS ec2

    Hello world

    I am trying to install Oracle 12 c DB on an Amazon ec2 'Machine' (RHEL 7.1).

    Start the Machine, unzip the files (12.1.0.2.0 for x 86-64 Linux download from OTN) and installation of the database to help. / runInstaller succeeded. But when I am trying to create a database now, it fails with the "ORA-12547: TNS: lost contact" error.

    That's what I entered:

    [data oracle@ip-123-45-6-789] $ dbca-silent - createDatabase.

    -templateName General_Purpose.dbc.

    gdbname-cdb1 sid cdb1 - responsefile NO_VALUE.

    -characterSet AL32UTF8------.

    -sysPassword OraPasswd1.

    -systemPassword OraPasswd1.

    true - createAsContainerDatabase.

    -numberOfPDBs 1.

    pdbName - pdb1------.

    -pdbAdminPassword OraPasswd1.

    databaseType - MULTIPURPOSE.

    false - automaticMemoryManagement.

    -storageType FS.

    -ignorePreReqs

    That's what the console showed:

    Cleaning of the steps failed

    DBCA_PROGRESS: 4%

    Copying database files

    DBCA_PROGRESS: 5%

    ORA-12547: TNS: lost contact

    DBCA_PROGRESS: 7%

    The cataloguing of backups RMAN error

    DBCA_PROGRESS: DBCA operation failed.

    Examine the log file ' / u01/app/oracle/cfgtoollogs/dbca/cdb1/cdb117.log ' for details.

    Here are the contents of cdb117.log:

    The database Configuration Wizard failed to detect options for the Installation of Oracle.

    ORA-12547: TNS: lost contact

    Because of this failure certain features of the database Configuration Wizard will be unavailable. Do you want to continue?

    Checking database unique identifier passed.

    / has enough space. Space required is 7665 MB, available space is 17768 MB.

    File of successful Validations.

    Cleaning of the steps failed

    DBCA_PROGRESS: 4%

    Copying database files

    DBCA_PROGRESS: 5%

    ORA-12547: TNS: lost contact

    DBCA_PROGRESS: 7%

    The cataloguing of backups RMAN error

    DBCA_PROGRESS: DBCA operation failed.

    And here is the content of the file trace.log:

    [main] [2015-11-11 04:04:19.802 EST] [Host. < init >: 1090]  Start tracing...

    [main] [2015-11-11 04:04:19.874 EST] [SilentHost.initialize:187]  SilentHost-> initialization: m_tempLogFile = /u01/app/oracle/cfgtoollogs/dbca/silent.log_2015-11-11_04-04-19-AM

    [main] [2015-11-11 04:04:19.877 EST] [Host.checkIfBigClusterAndHubNode:1710]  Not a cluster environment: out BigCluster Check

    [main] [2015-11-11 04:04:19.877 EST] [InventoryUtil.getOracleBase:149]  ORACLE_BASE to get inventory.

    [main] [2015-11-11 04:04:19.879 EST] Setting [InventoryUtil.getOUIInvSession:349] YES READ at ACCESSLEVEL_READ_LOCKLESS

    [main] [2015-11-11 04:04:19.879 EST] [InventoryUtil.getOracleBase:164]  The size of the inventory home = 1

    [main] [2015-11-11 04:04:19.901 EST] [InventoryUtil.getOracleBase:189]  ORACLE_BASE returned from inventory: = / u01/app/oracle

    [main] [2015-11-11 04:04:19.901 EST] [Host.displayOracleBaseWarning:1750] oracleBaseFromEnv null

    [main] [2015-11-11 04:04:19.902 EST] [Host.displayOracleBaseWarning:1756] oracle_base to oracle_base/u01/app/oracle YES env/u01/app/oracle

    [main] [2015-11-11 04:04:19.903 EST] Setting [InventoryUtil.getOUIInvSession:349] YES READ at ACCESSLEVEL_READ_LOCKLESS

    [main] [2015-11-11 04:04:19.903 EST] [InventoryUtil.isCRSHome:386]  HomeInfo /u01/app/oracle/product/12.1.0.2/db_1,1

    [main] [2015-11-11 04:04:20.135 EST] [Host.validateGridHome:3878]  Fake of validation

    [main] [2015-11-11 04:04:20.135 EST] [Host.startOperation:2395]  Source db null

    [main] [2015-11-11 04:04:20.135 EST] [Host.startOperation:2396]  Cdb1 name of GDB

    [main] [2015-11-11 04:04:20.152 EST] [Host.startOperation:2397]  Sid - MGMTDB MgmtDB

    [main] [2015-11-11 04:04:20.152 EST] [Host.startOperation:2398]  MgmtDB name _mgmtdb

    [main] [2015-11-11 04:04:20.152 EST] [HADatabaseUtils.isGridMgmtDB:2842]  Mgmt DBName srvm _mgmtdb

    [main] [2015-11-11 04:04:20.155 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: null

    [main] [2015-11-11 04:04:20.157 EST] Setting [InventoryUtil.getOUIInvSession:349] YES READ at ACCESSLEVEL_READ_LOCKLESS

    [main] [2015-11-11 04:04:20.157 EST] [OracleHome.getVersion:1010]  HomeInfo /u01/app/oracle/product/12.1.0.2/db_1,1

    [main] [2015-11-11 04:04:20.252 EST] [OracleHome.getVersion:1038]  OracleHome.server.getVersion Version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.252 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.252 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.252 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.252 EST] [CommonUtils.createPasswordFile:1243] orapwd new appeal for 11.1 or above

    [main] [2015-11-11 04:04:20.253 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.253 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.253 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.253 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.253 EST] [CommonUtils.getPasswordFileCreateCmd:1182] for new orapwd to 11.1 or above

    [main] [2015-11-11 04:04:20.255 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.256 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.256 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.256 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.256 EST] /U01/app/oracle/product/12.1.0.2/db_1/bin/orapwd [CommonUtils.getPasswordFileCreateCmd:1213]

    [main] [2015-11-11 04:04:20.256 EST] File=/U01/app/Oracle/product/12.1.0.2/Db_1/DBS/orapwDBUA0420152 [CommonUtils.getPasswordFileCreateCmd:1213]

    [main] [2015-11-11 04:04:20.256 EST] Force [CommonUtils.getPasswordFileCreateCmd:1213] = y

    [main] [2015-11-11 04:04:20.256 EST] [CommonUtils.getPasswordFileCreateCmd:1213] format = 12

    [main] [2015-11-11 04:04:20.257 EST] [OsUtilsBase.execProg:2123] start execProg with the input array.

    [main] [2015-11-11 04:04:20.272 EST] [OsUtilsBase.execProg:2160] done execProg with the input array. Status: 0

    [main] [2015-11-11 04:04:20.272 EST] [OracleHome.initOptionsStopOnError:1356]  Initialization of the database Options with dummy sid = DBUA0420152 using initfile=/u01/app/oracle/product/12.1.0.2/db_1/dbs/initDBUA0420152.ora using pwdfile=/u01/app/oracle/product/12.1.0.2/db_1/dbs/orapwDBUA0420152

    [main] [2015-11-11 04:04:20.274 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.274 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.274 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.275 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.275 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.275 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.275 EST] [SQLPlusEngine.getCmmdParams:225] m_home 12.1.0.2.0

    [main] [2015-11-11 04:04:20.275 EST] True for 112 > version [SQLPlusEngine.getCmmdParams:226]

    [main] [2015-11-11 04:04:20.276 EST] [SQLEngine.getEnvParams:602]  By default the NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [main] [2015-11-11 04:04:20.276 EST] [SQLEngine.getEnvParams:612]  NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [main] [2015-11-11 04:04:20.277 EST] [SQLEngine.initialize:358]  SQLPLUS/OPEN process execing...

    [main] [2015-11-11 04:04:20.288 EST] M_bReaderStarted [SQLEngine.initialize:395]: false

    [main] [2015-11-11 04:04:20.288 EST] [SQLEngine.initialize:399]  From the wire drive...

    [main] [2015-11-11 04:04:20.302 EST] [SQLEngine.done:2278]  Called

    [main] [2015-11-11 04:04:20.302 EST] [OracleHome.initOptionsStopOnError:1409]  ORA-12547: TNS: lost contact

    [main] [2015-11-11 04:04:20.303 EST] [OracleHome.initOptionsStopOnError:1410]  ORA-12547: TNS: lost contact

    oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1739)

    oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:987)

    oracle.sysman.assistants.util.OracleHome.initOptionsStopOnError(OracleHome.java:1362)

    oracle.sysman.assistants.dbca.backend.Host.startOperation(Host.java:2411)

    oracle.sysman.assistants.dbca.Dbca.execute(Dbca.java:153)

    oracle.sysman.assistants.dbca.Dbca.main (Dbca.java:226)

    [main] [2015-11-11 04:04:20.303 EST] [OracleHome.initOptionsStopOnError:1419] closing dummy instance

    [main] [2015-11-11 04:04:20.303 EST] [SQLEngine.reInitialize:785]  The SQLEngine reset...

    [main] [2015-11-11 04:04:20.303 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.303 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.303 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.304 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.304 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.304 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:20.304 EST] [SQLPlusEngine.getCmmdParams:225] m_home 12.1.0.2.0

    [main] [2015-11-11 04:04:20.304 EST] True for 112 > version [SQLPlusEngine.getCmmdParams:226]

    [main] [2015-11-11 04:04:20.305 EST] [SQLEngine.getEnvParams:602]  By default the NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [main] [2015-11-11 04:04:20.305 EST] [SQLEngine.getEnvParams:612]  NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [main] [2015-11-11 04:04:20.305 EST] [SQLEngine.initialize:358]  SQLPLUS/OPEN process execing...

    [main] [2015-11-11 04:04:20.316 EST] M_bReaderStarted [SQLEngine.initialize:395]: false

    [main] [2015-11-11 04:04:20.316 EST] [SQLEngine.initialize:399]  From the wire drive...

    [main] [2015-11-11 04:04:20.317 EST] [SQLEngine.initialize:448]  Waiting for m_bReaderStarted to be true

    [main] [2015-11-11 04:04:20.336 EST] [SQLEngine.done:2278]  Called

    [main] [2015-11-11 04:04:20.336 EST] [OracleHome.initOptionsStopOnError:1426] fake closing instance failed

    [main] [2015-11-11 04:04:20.336 EST] [OracleHome.initOptionsStopOnError:1458]  Data bases query options: 0

    [main] [2015-11-11 04:04:20.337 EST] [Host.checkOPS:2082]  Domestic CheckOPS

    [main] [2015-11-11 04:04:20.337 EST] [Host.checkOPS:2094]  Try to check the existence of cluster

    [main] [2015-11-11 04:04:20.337 EST] [Host.checkOPS:2099] cluster existence: false

    [main] [2015-11-11 04:04:20.337 EST] [Host.checkOPS:2108]  Fake installed cluster

    [main] [2015-11-11 04:04:20.337 EST] [Host.checkOPS:2124]  Cluster installed = false

    [main] [2015-11-11 04:04:20.455 EST] [TemplateManager.validateTemplate:636]  Validation of the model's success

    [main] [2015-11-11 04:04:20.458 EST] [HADatabaseUtils.isGridMgmtDB:2842]  Mgmt DBName srvm _mgmtdb

    [main] [2015-11-11 04:04:20.458 EST] [HAUtils.getCurrentOracleHome:593]  Home of the Oracle system property: /u01/app/oracle/product/12.1.0.2/db_1

    [main] [2015-11-11 04:04:20.458 EST] [HAUtils.getConfiguredGridHome:1343] - HOUSE of CRS.

    [main] [2015-11-11 04:04:20.458 EST] [UnixSystem.getCRSHome:2878] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.458 EST] [HAUtils.getHASHome:1500]  Could not get at home.

    PRCI-1144: Impossible to retrieve the path home Oracle Grid Infrastructure

    PRKC-1144: File ' / etc/oracle/olr.loc ' not found.

    [main] [2015-11-11 04:04:20.459 EST] [StepContext.setListenersToUpdate:946] needLocalListener = false

    [main] [2015-11-11 04:04:20.462 EST] [OracleHome.hasEELicense:247]  Running script to determine licensing: /u01/app/oracle/product/12.1.0.2/db_1/bin/bndlchk

    [main] [2015-11-11 04:04:20.489 EST] Home=/U01/app/Oracle/product/12.1.0.2/Db_1 [OracleHome.hasEELicense:258] has EE licenses

    [main] [2015-11-11 04:04:20.490 EST] [OracleHome.isDatabaseOptionOn:1251]  Audit database option: space

    [main] [2015-11-11 04:04:20.490 EST] [OracleHome.isDatabaseOptionOn:1308]  Spatial database option is false

    [main] [2015-11-11 04:04:20.496 EST] [OracleHome.isDatabaseOptionOn:1251]  Option to check database: OLAP

    [main] [2015-11-11 04:04:20.496 EST] [OracleHome.isDatabaseOptionOn:1308]  Database OLAP Option is false

    [main] [2015-11-11 04:04:20.497 EST] [OracleHome.hasEELicense:247]  Running script to determine licensing: /u01/app/oracle/product/12.1.0.2/db_1/bin/bndlchk

    [main] [2015-11-11 04:04:20.507 EST] Home=/U01/app/Oracle/product/12.1.0.2/Db_1 [OracleHome.hasEELicense:258] has EE licenses

    [main] [2015-11-11 04:04:20.509 EST] [InitParamHandler.endElement:547]  CustomSGA flag: false

    [main] [2015-11-11 04:04:20.509 EST] [InitParamHandler.endElement:548]  Database Type: MULTIFUNCTION

    [main] [2015-11-11 04:04:20.509 EST] [InitParamHandler.endElement:549]  Percentage of MEM: 40

    [main] [2015-11-11 04:04:20.520 EST] [OsUtilsBase.getTotalPhysicalMemory:411]  Total physical memory in MB: 992

    [main] [2015-11-11 04:04:20.520 EST] [InitParamHandler.endElement:582]  MB of total memory: 396

    [main] [2015-11-11 04:04:20.520 EST] [InitParamHandler.endElement:583]  MB physical memory: 992

    [main] [2015-11-11 04:04:20.521 EST] [OsUtilsBase.is64Bit:395] architecture is 64-bit: true

    [main] [2015-11-11 04:04:20.521 EST] [MemoryCalculator. < clinit >: 103] minimum setting memory for 64-bit

    [main] [2015-11-11 04:04:20.525 EST] [MemoryCalculator.isUnifiedMemoryFeasible:381]  Volume: /.

    [main] [2015-11-11 04:04:20.525 EST] [MemoryCalculator.isUnifiedMemoryFeasible:381]  Volume: / proc

    [main] [2015-11-11 04:04:20.525 EST] [MemoryCalculator.isUnifiedMemoryFeasible:381]  Volume: / sys

    [main] [2015-11-11 04:04:20.525 EST] [MemoryCalculator.isUnifiedMemoryFeasible:381]  Volume: / dev

    [main] [2015-11-11 04:04:20.525 EST] [MemoryCalculator.isUnifiedMemoryFeasible:381]  Volume: / sys/kernel/security

    [main] [2015-11-11 04:04:20.525 EST] [MemoryCalculator.isUnifiedMemoryFeasible:381]  Volume: / dev/shm

    [main] [2015-11-11 04:04:20.526 EST] [MemoryCalculator.isUnifiedMemoryFeasible:388] / dev/shm feasible: true

    [main] [2015-11-11 04:04:20.526 EST] [InitParamHandler.endElement:600] / dev/shm size in MB: 496

    [main] [2015-11-11 04:04:20.526 EST] True bUseUnified [InitParamHandler.endElement:608]

    [main] [2015-11-11 04:04:20.527 EST] [DatafileCloneHandler.startElement:209] atts name CBD

    [main] [2015-11-11 04:04:20.527 EST] Value true length atts [DatafileCloneHandler.startElement:211]

    [main] [2015-11-11 04:04:20.532 EST] [DatabaseStorageAttributes.addRedoLogGroup:331]  This thread doesnot exist in a thread in the group mapping

    [main] [2015-11-11 04:04:20.532 EST] [DatabaseStorageAttributes.addRedoLogGroup:269]  ThreadID = 1 course

    [main] [2015-11-11 04:04:20.532 EST] [DatabaseStorageAttributes.addRedoLogGroup:270] newThread threadID = 1

    [main] [2015-11-11 04:04:20.532 EST] RedoGroups.length [DatabaseStorageAttributes.addRedoLogGroup:303] 1

    [main] [2015-11-11 04:04:20.533 EST] [DatabaseStorageAttributes.addRedoLogGroup:305] new id redoGroup 2

    [main] [2015-11-11 04:04:20.533 EST] RedoGroups [DatabaseStorageAttributes.addRedoLogGroup:310] 1

    [main] [2015-11-11 04:04:20.533 EST] [DatabaseStorageAttributes.addRedoLogGroup:321] arRedoGroups: [1, 2] addition of the thread id 1

    [main] [2015-11-11 04:04:20.534 EST] [DatabaseStorageAttributes.addRedoLogGroup:269]  ThreadID = 1 course

    [main] [2015-11-11 04:04:20.534 EST] [DatabaseStorageAttributes.addRedoLogGroup:270] newThread threadID = 1

    [main] [2015-11-11 04:04:20.534 EST] RedoGroups.length [DatabaseStorageAttributes.addRedoLogGroup:303] 2

    [main] [2015-11-11 04:04:20.534 EST] [DatabaseStorageAttributes.addRedoLogGroup:305] new id redoGroup 3

    [main] [2015-11-11 04:04:20.535 EST] RedoGroups [DatabaseStorageAttributes.addRedoLogGroup:310] 1

    [main] [2015-11-11 04:04:20.535 EST] RedoGroups [DatabaseStorageAttributes.addRedoLogGroup:310] 2

    [main] [2015-11-11 04:04:20.535 EST] [DatabaseStorageAttributes.addRedoLogGroup:321] arRedoGroups: [1, 2, 3] addition of the thread id 1

    [main] [2015-11-11 04:04:20.535 EST] [TemplateManager.getParsedAttributes:1710] is the model a false CBD

    [main] [2015-11-11 04:04:20.536 EST] [Check .getDatabaseSize: 2543]  DataFile Clone: sysaux01.dbf size: 560,0

    [main] [2015-11-11 04:04:20.536 EST] [Check .getDatabaseSize: 2543]  DataFile Clone: system01.dbf size: 780,0

    [main] [2015-11-11 04:04:20.536 EST] [Check .getDatabaseSize: 2543]  DataFile Clone: undotbs01.dbf size: 25.0

    [main] [2015-11-11 04:04:20.536 EST] [Check .getDatabaseSize: 2543]  DataFile Clone: users01.dbf size: 5.0

    [main] [2015-11-11 04:04:20.536 EST] [Check .getControlfFileSizes: 2868]  Control files lol: = 2

    [main] [2015-11-11 04:04:20.536 EST] [Check .getDatabaseSize: 2595] dbSize: redoLogSize 1402880: ctrlFileSize 153600: 40

    [main] [2015-11-11 04:04:20.537 EST] [TemplateManager.getParsedAttributes:1772]  DB_RECOVERY_FILE_SIZE layout to the default size: 4560

    [main] [2015-11-11 04:04:20.537 EST] [TemplateManager.getParsedAttributes:1778]  Real dynamics of FRA

    [main] [2015-11-11 04:04:20.537 EST] [TemplateManager.parseCloneTemplate:1353]  See for portable data files in TemplateManager...

    [main] [2015-11-11 04:04:20.538 EST] SetupOIDCommandlineParameters [Host.setupOIDCommandlineParameters:9418]:

    [main] [2015-11-11 04:04:20.538 EST] M_regWithdirService [Host.setupOIDCommandlineParameters:9419]: false

    [main] [2015-11-11 04:04:20.538 EST] M_unregWithdirService [Host.setupOIDCommandlineParameters:9420]: false

    [main] [2015-11-11 04:04:20.538 EST] M_updateDirService [Host.setupOIDCommandlineParameters:9421]: false

    [main] [2015-11-11 04:04:20.538 EST] SetDataBaseType [Host.startOperation:2789]

    [main] [2015-11-11 04:04:20.538 EST] [Host.startOperation:2872] is false model CBD

    [main] [2015-11-11 04:04:20.539 EST] [TemplateManager.isInstallTemplate:2348]  Selected by the user of the model: = general purpose

    [main] [2015-11-11 04:04:20.539 EST] [TemplateManager.isInstallTemplate:2355]  The Message to search for Id: = GENERAL_PURPOSE

    [main] [2015-11-11 04:04:20.540 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.540 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.541 EST] [Host.startOperation:2990]  Adding user tablesapce for pdb1

    [main] [2015-11-11 04:04:20.543 EST] [PluggableDatabaseUtils.populateDefaultUserTablespaceAttr:1018]  Creating user datafile=/u01/app/oracle/oradata/cdb1/{PDB_NAME}/{PDB_NAME}_users01.dbf

    [main] [2015-11-11 04:04:20.544 EST] [HAUtils.getCurrentOracleHome:593]  Home of the Oracle system property: /u01/app/oracle/product/12.1.0.2/db_1

    [main] [2015-11-11 04:04:20.544 EST] [HAUtils.getConfiguredGridHome:1343] - HOUSE of CRS.

    [main] [2015-11-11 04:04:20.544 EST] [UnixSystem.getCRSHome:2878] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.544 EST] [HAUtils.getHASHome:1500]  Could not get at home.

    PRCI-1144: Impossible to retrieve the path home Oracle Grid Infrastructure

    PRKC-1144: File ' / etc/oracle/olr.loc ' not found.

    [main] [2015-11-11 04:04:20.544 EST] [HADatabaseUtils.isGridMgmtDB:2842]  Mgmt DBName srvm _mgmtdb

    [main] [2015-11-11 04:04:20.545 EST] [Check .processRawConfigFile: 2991]  StorageType == 0

    [main] [2015-11-11 04:04:20.545 EST] [SilentHost.performOperation:458] processRawConfigFile = true

    [main] [2015-11-11 04:04:20.546 EST] [Host.initializeValidationContext:1255] sid, uniquenname, domain defined in validationcontextcdb1 cdb1, cdb1,.

    [main] [2015-11-11 04:04:20.546 EST] [Check .getStorageDataForValidation: 4935]  Enter getStorageDataForValidation

    [main] [2015-11-11 04:04:20.550 EST] [HAUtils.getCurrentOracleHome:593]  Home of the Oracle system property: /u01/app/oracle/product/12.1.0.2/db_1

    [main] [2015-11-11 04:04:20.550 EST] [HAUtils.getConfiguredGridHome:1343] - HOUSE of CRS.

    [main] [2015-11-11 04:04:20.550 EST] [UnixSystem.getCRSHome:2878] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.550 EST] [HAUtils.getHASHome:1500]  Could not get at home.

    PRCI-1144: Impossible to retrieve the path home Oracle Grid Infrastructure

    PRKC-1144: File ' / etc/oracle/olr.loc ' not found.

    [main] [2015-11-11 04:04:20.550 EST] [ASMUtils.initialize:247]  ASMHome: null

    [main] [2015-11-11 04:04:20.556 EST] [KfodUtil.kfodOutput:361] null/rdbms/bin/kfod

    [main] [2015-11-11 04:04:20.556 EST] [KfodUtil.kfodOutput:361] nohdr = TRUE

    [main] [2015-11-11 04:04:20.556 EST] [KfodUtil.kfodOutput:361]  OP = GROUPS

    [main] [2015-11-11 04:04:20.556 EST] Status [KfodUtil.kfodOutput:361] = true

    [main] [2015-11-11 04:04:20.556 EST] [KfodUtil.kfodOutput:361] asmcompatibility = true dbcompatibility = true

    [main] [2015-11-11 04:04:20.557 EST] [KfodUtil.kfodOutput:368]  Can not run the program "null/rdbms/bin/kfod": java.io.IOException: error = 2, no such file or directory

    [main] [2015-11-11 04:04:20.557 EST] [KfodUtil.kfodOutput:369]  Can not run the program "null/rdbms/bin/kfod": java.io.IOException: error = 2, no such file or directory

    java.lang.ProcessBuilder.processException(ProcessBuilder.java:478)

    java.lang.ProcessBuilder.start(ProcessBuilder.java:457)

    java.lang.Runtime.exec(Runtime.java:593)

    java.lang.Runtime.exec(Runtime.java:466)

    oracle.sysman.assistants.util.OsUtilsBase.execProg(OsUtilsBase.java:2300)

    oracle.sysman.assistants.util.OsUtilsBase.execProgNReturnOutput(OsUtilsBase.java:2448)

    oracle.sysman.assistants.util.KfodUtil.kfodOutput(KfodUtil.java:364)

    oracle.sysman.assistants.util.KfodUtil.kfodOutput(KfodUtil.java:254)

    oracle.sysman.assistants.util.KfodUtil.getDiskgroupsWithCompatibilityValues(KfodUtil.java:569)

    oracle.sysman.assistants.util.asm.ASMUtils.loadDiskGroups(ASMUtils.java:1040)

    oracle.sysman.assistants.util.asm.ASMUtils.initialize(ASMUtils.java:277)

    oracle.sysman.assistants.util.asm.ASMUtils.getASMUtils(ASMUtils.java:192)

    oracle.sysman.assistants.dbca.backend.Verifier.initASMDGSpace(Verifier.java:3572)

    oracle.sysman.assistants.dbca.backend.Verifier.initialiseStorageValidationData(Verifier.java:3560)

    oracle.sysman.assistants.dbca.backend.Verifier.getStorageDataForValidation(Verifier.java:4936)

    oracle.sysman.assistants.dbca.backend.Host.initializeValidationContext(Host.java:1402)

    oracle.sysman.assistants.dbca.backend.SilentHost.performOperation(SilentHost.java:460)

    oracle.sysman.assistants.dbca.backend.Host.startOperation(Host.java:3804)

    oracle.sysman.assistants.dbca.Dbca.execute(Dbca.java:153)

    oracle.sysman.assistants.dbca.Dbca.main (Dbca.java:226)

    java.lang.ProcessBuilder.processException(ProcessBuilder.java:478)

    java.lang.ProcessBuilder.start(ProcessBuilder.java:457)

    java.lang.Runtime.exec(Runtime.java:593)

    java.lang.Runtime.exec(Runtime.java:466)

    oracle.sysman.assistants.util.OsUtilsBase.execProg(OsUtilsBase.java:2300)

    oracle.sysman.assistants.util.OsUtilsBase.execProgNReturnOutput(OsUtilsBase.java:2448)

    oracle.sysman.assistants.util.KfodUtil.kfodOutput(KfodUtil.java:364)

    oracle.sysman.assistants.util.KfodUtil.kfodOutput(KfodUtil.java:254)

    oracle.sysman.assistants.util.KfodUtil.getDiskgroupsWithCompatibilityValues(KfodUtil.java:569)

    oracle.sysman.assistants.util.asm.ASMUtils.loadDiskGroups(ASMUtils.java:1040)

    oracle.sysman.assistants.util.asm.ASMUtils.initialize(ASMUtils.java:277)

    oracle.sysman.assistants.util.asm.ASMUtils.getASMUtils(ASMUtils.java:192)

    oracle.sysman.assistants.dbca.backend.Verifier.initASMDGSpace(Verifier.java:3572)

    oracle.sysman.assistants.dbca.backend.Verifier.initialiseStorageValidationData(Verifier.java:3560)

    oracle.sysman.assistants.dbca.backend.Verifier.getStorageDataForValidation(Verifier.java:4936)

    oracle.sysman.assistants.dbca.backend.Host.initializeValidationContext(Host.java:1402)

    oracle.sysman.assistants.dbca.backend.SilentHost.performOperation(SilentHost.java:460)

    oracle.sysman.assistants.dbca.backend.Host.startOperation(Host.java:3804)

    oracle.sysman.assistants.dbca.Dbca.execute(Dbca.java:153)

    oracle.sysman.assistants.dbca.Dbca.main (Dbca.java:226)

    [main] [2015-11-11 04:04:20.558 EST] [KfodUtil.kfodOutput:372]  KFOD null result

    [main] [2015-11-11 04:04:20.558 EST] [Check .initASMDGSpace: 3578] omfLocation = null

    [main] [2015-11-11 04:04:20.558 EST] [Check .initASMDGSpace: 3591]  ControlFile name {ORACLE_BASE} /oradata/ {DB_UNIQUE_NAME} /.

    [main] [2015-11-11 04:04:20.558 EST] [Check .initASMDGSpace: 3591]  ControlFile name {ORACLE_BASE} /fast_recovery_area/ {DB_UNIQUE_NAME} /.

    [main] [2015-11-11 04:04:20.559 EST] [Check .initASMDGSpace: 3612] datafile name {ORACLE_BASE} /oradata/ {DB_UNIQUE_NAME} /.

    [main] [2015-11-11 04:04:20.560 EST] [Check .initASMDGSpace: 3612] datafile name {ORACLE_BASE} /oradata/ {DB_UNIQUE_NAME} /.

    [main] [2015-11-11 04:04:20.560 EST] [Check .initASMDGSpace: 3612] datafile name {ORACLE_BASE} /oradata/ {DB_UNIQUE_NAME} /.

    [main] [2015-11-11 04:04:20.561 EST] [Check .initASMDGSpace: 3612] datafile name {ORACLE_BASE} /oradata/ {DB_UNIQUE_NAME} /.

    [main] [2015-11-11 04:04:20.561 EST] [Check .initASMDGSpace: 3622]  Adding an extra 80 for cancellation of TBS

    [main] [2015-11-11 04:04:20.561 EST] [Check .initASMDGSpace: 3781]  Skip this redolog as its not on ASM

    [main] [2015-11-11 04:04:20.561 EST] [Check .initASMDGSpace: 3781]  Skip this redolog as its not on ASM

    [main] [2015-11-11 04:04:20.561 EST] [Check .initASMDGSpace: 3781]  Skip this redolog as its not on ASM

    [main] [2015-11-11 04:04:20.561 EST] [HADatabaseUtils.isGridMgmtDB:2842]  Mgmt DBName srvm _mgmtdb

    [main] [2015-11-11 04:04:20.562 EST] [Check .initASMDGSpace: 3823]  Passwowd compatible file check for MGMTDB/sidb jump

    [main] [2015-11-11 04:04:20.562 EST] [Check .initASMDGSpace: 3878] dbRecAreaSize0 vertrue {ORACLE_BASE} / fast_recovery_area

    [main] [2015-11-11 04:04:20.562 EST] DbRecAreaSizever4560 [check .initASMDGSpace: 3884]

    [main] [2015-11-11 04:04:20.562 EST] [Check .initASMDGSpace: 3938]  Output getStorageDataForValidation

    [main] [2015-11-11 04:04:20.562 EST] [Check .initFSSpace: 4421] omfLocation = null

    [main] [2015-11-11 04:04:20.563 EST] [Check .initFSSpace: 4442]  Enter newCalculateCloneDatafilePathsAndSizes

    [main] [2015-11-11 04:04:20.563 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.563 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.563 EST] [Check .initFSSpace: 4483] clone /u01/app/oracle/oradata/cdb1/sysaux01.dbf 573440

    [main] [2015-11-11 04:04:20.563 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.564 EST] [Check .updateSizeMap: 4918]  Addition of the size required for/u01/app/oracle/oradata/cdb1/to 560

    [main] [2015-11-11 04:04:20.564 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.564 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.564 EST] [Check .initFSSpace: 4483] clone /u01/app/oracle/oradata/cdb1/system01.dbf 798720

    [main] [2015-11-11 04:04:20.564 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.565 EST] [Check .updateSizeMap: 4911]  Update of the size required for/u01/app/oracle/oradata/cdb1/to 1340

    [main] [2015-11-11 04:04:20.565 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.565 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.565 EST] [Check .initFSSpace: 4483] clone /u01/app/oracle/oradata/cdb1/undotbs01.dbf 25600

    [main] [2015-11-11 04:04:20.565 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.565 EST] [Check .updateSizeMap: 4911]  Update of the size required for/u01/app/oracle/oradata/cdb1/to 1365

    [main] [2015-11-11 04:04:20.566 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.566 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.566 EST] [Check .initFSSpace: 4483] clone /u01/app/oracle/oradata/cdb1/users01.dbf 5120

    [main] [2015-11-11 04:04:20.566 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.566 EST] [Check .updateSizeMap: 4911]  Update of the size required for/u01/app/oracle/oradata/cdb1/to 1370

    [main] [2015-11-11 04:04:20.566 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.567 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.567 EST] [Check .initFSSpace: 4483] clone /u01/app/oracle/oradata/cdb1/temp01.dbf 61440

    [main] [2015-11-11 04:04:20.567 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.567 EST] [Check .updateSizeMap: 4911]  Update of the size required for/u01/app/oracle/oradata/cdb1/to 1430

    [main] [2015-11-11 04:04:20.567 EST] [Check .initFSSpace: 4488]  Adding an extra 80 for cancellation of TBS

    [main] [2015-11-11 04:04:20.567 EST] [Check .updateSizeMap: 4923]  Invalid filepath = {ORACLE_BASE} /oradata/ {DB_UNIQUE_NAME} /.

    [main] [2015-11-11 04:04:20.568 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.572 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.572 EST] [Check .initFSSpace: 4659] redo/u01/app/oracle/oradata/cdb1/51200

    [main] [2015-11-11 04:04:20.573 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.573 EST] [Check .updateSizeMap: 4911]  Update of the size required for/u01/app/oracle/oradata/cdb1/to 1480

    [main] [2015-11-11 04:04:20.573 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.573 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.573 EST] [Check .initFSSpace: 4659] redo/u01/app/oracle/oradata/cdb1/51200

    [main] [2015-11-11 04:04:20.573 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.573 EST] [Check .updateSizeMap: 4911]  Update of the size required for/u01/app/oracle/oradata/cdb1/to 1530

    [main] [2015-11-11 04:04:20.574 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.574 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.574 EST] [Check .initFSSpace: 4659] redo/u01/app/oracle/oradata/cdb1/51200

    [main] [2015-11-11 04:04:20.574 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.574 EST] [Check .updateSizeMap: 4911]  Update of the size required for/u01/app/oracle/oradata/cdb1/to 1580

    [main] [2015-11-11 04:04:20.574 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.575 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.575 EST] [Check .initFSSpace: 4691] contrl and buffer/u01/app/oracle/oradata/cdb1/120

    [main] [2015-11-11 04:04:20.575 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.575 EST] [Check .updateSizeMap: 4911]  Update of the size required for/u01/app/oracle/oradata/cdb1/to 1580

    [main] [2015-11-11 04:04:20.575 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.575 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.575 EST] [Check .initFSSpace: 4691] contrl and buffer/u01/app/oracle/fast_recovery_area/cdb1/120

    [main] [2015-11-11 04:04:20.576 EST] [Check .updateSizeMap: 4905] canonicalPath = / u01/app/oracle/fast_recovery_area/cdb1 /.

    [main] [2015-11-11 04:04:20.576 EST] [Check .updateSizeMap: 4918]  Addition of the size required for/u01/app/oracle/fast_recovery_area/cdb1/0

    [main] [2015-11-11 04:04:20.576 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.576 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.576 EST] [Check .initFSSpace: 4707]  Path of file to default data for CBD = / u01/app/oracle/oradata/cdb1

    [main] [2015-11-11 04:04:20.582 EST] AttributeList.size ([TarUtil.loadMetaDataInfo:452]) 3

    [main] [2015-11-11 04:04:20.583 EST] [Check .initFSSpace: 4726] APB datafile: /oradata/seeddata/pdbseed/system01.dbf size: 250

    [main] [2015-11-11 04:04:20.589 EST] [Check .initFSSpace: 4726] APB datafile: /oradata/seeddata/pdbseed/sysaux01.dbf size: 490

    [main] [2015-11-11 04:04:20.589 EST] [Check .initFSSpace: 4726] APB datafile: /oradata/seeddata/pdbseed/temp01.dbf size: 20

    [main] [2015-11-11 04:04:20.589 EST] [Check .initFSSpace: 4736]  Total size of all data calculated from the pdbseed xml files is: 760

    [main] [2015-11-11 04:04:20.590 EST] [Check .initFSSpace: 4753]  The total size of PDB update for: 1525

    [main] [2015-11-11 04:04:20.590 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.590 EST] [Check .initFSSpace: 4828] canonicalPathForFra = / u01/app/oracle/fast_recovery_area /.

    [main] [2015-11-11 04:04:20.590 EST] [Check .initFSSpace: 4859]  Adding path: /u01/app/oracle/oradata/cdb1/sysaux01.dbf for the file existence check

    [main] [2015-11-11 04:04:20.590 EST] [Check .initFSSpace: 4859]  Adding path: /u01/app/oracle/oradata/cdb1/system01.dbf for the file existence check

    [main] [2015-11-11 04:04:20.591 EST] [Check .initFSSpace: 4859]  Adding path: /u01/app/oracle/oradata/cdb1/undotbs01.dbf for the file existence check

    [main] [2015-11-11 04:04:20.591 EST] [Check .initFSSpace: 4859]  Adding path: /u01/app/oracle/oradata/cdb1/users01.dbf for the file existence check

    [main] [2015-11-11 04:04:20.591 EST] [Check .initFSSpace: 4859]  Adding path: /u01/app/oracle/oradata/cdb1/temp01.dbf for the file existence check

    [main] [2015-11-11 04:04:20.591 EST] [Check .initFSSpace: 4862]  Output getStorageDataForValidation

    [main] [2015-11-11 04:04:20.591 EST] [SilentHost.performOperation:461] after initialization to silent mode validation context

    [main] [2015-11-11 04:04:20.648 EST] [ClusterVerification.getInstance:396]  The method entry

    [main] [2015-11-11 04:04:20.653 EST] [ParamManager. < init >: 668] m_paramInstantiated set to TRUE

    [main] [2015-11-11 04:04:20.653 EST] [VerificationUtil.getLocalHost:1312]  Hostname retrieved: ip-172-31-22-120.us-west-2.compute.internal returned: ip-172-31-22-120

    [main] [2015-11-11 04:04:20.654 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 10 main

    [main] [2015-11-11 04:04:20.654 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.654 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 10 main

    [main] [2015-11-11 04:04:20.655 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.655 EST] [VerificationUtil.isCRSConfigured:4209] crsConfigured = false

    [main] [2015-11-11 04:04:20.655 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 10 main

    [main] [2015-11-11 04:04:20.655 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.655 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 10 main

    [main] [2015-11-11 04:04:20.655 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.656 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 11 main

    [main] [2015-11-11 04:04:20.656 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.656 EST] [Version.isPre:642] version to be checked 12.1.0.2.0 version to check against 11 minor version to check against 2 main

    [main] [2015-11-11 04:04:20.656 EST] [Version.isPre:651] isPre: return FALSE for major version control

    [main] [2015-11-11 04:04:20.656 EST] [UnixSystem.isHAConfigured:2788] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.656 EST] [VerificationUtil.isHAConfigured:4181] haConfigured = false

    [main] [2015-11-11 04:04:20.674 EST] [Check .validateMemory: 1219]  Audit exception: the default location for home is not available. It must be specified

    [main] [2015-11-11 04:04:20.674 EST] [ClusterVerification.getInstance:396]  The method entry

    [main] [2015-11-11 04:04:20.675 EST] [VerificationUtil.getLocalHost:1312]  Hostname retrieved: ip-172-31-22-120.us-west-2.compute.internal returned: ip-172-31-22-120

    [main] [2015-11-11 04:04:20.675 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 10 main

    [main] [2015-11-11 04:04:20.675 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.675 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 10 main

    [main] [2015-11-11 04:04:20.675 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.675 EST] [VerificationUtil.isCRSConfigured:4209] crsConfigured = false

    [main] [2015-11-11 04:04:20.676 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 10 main

    [main] [2015-11-11 04:04:20.676 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.676 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 10 main

    [main] [2015-11-11 04:04:20.676 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.676 EST] [Version.isPre:610] version to be checked 12.1.0.2.0 version to check against 11 main

    [main] [2015-11-11 04:04:20.676 EST] IsPre.java [Version.isPre:621]: return FALSE

    [main] [2015-11-11 04:04:20.677 EST] [Version.isPre:642] version to be checked 12.1.0.2.0 version to check against 11 minor version to check against 2 main

    [main] [2015-11-11 04:04:20.677 EST] [Version.isPre:651] isPre: return FALSE for major version control

    [main] [2015-11-11 04:04:20.677 EST] [UnixSystem.isHAConfigured:2788] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.677 EST] [VerificationUtil.isHAConfigured:4181] haConfigured = false

    [main] [2015-11-11 04:04:20.677 EST] [Check .validateSGA: 1248]  Audit exception: the default location for home is not available. It must be specified

    [main] [2015-11-11 04:04:20.677 EST] True checkUnified [check .validateSharedPoolSize: 1273]

    [main] [2015-11-11 04:04:20.678 EST] [Check .validateSharedPoolSize: 1274] checkUnified 415236096

    [main] [2015-11-11 04:04:20.678 EST] [HAUtils.getCurrentOracleHome:593]  Home of the Oracle system property: /u01/app/oracle/product/12.1.0.2/db_1

    [main] [2015-11-11 04:04:20.678 EST] [HAUtils.getConfiguredGridHome:1343] - HOUSE of CRS.

    [main] [2015-11-11 04:04:20.678 EST] [UnixSystem.getCRSHome:2878] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.678 EST] [HAUtils.getHASHome:1500]  Could not get at home.

    PRCI-1144: Impossible to retrieve the path home Oracle Grid Infrastructure

    PRKC-1144: File ' / etc/oracle/olr.loc ' not found.

    [main] [2015-11-11 04:04:20.679 EST] Call validatebackend [Host.validate:5345]

    [main] [2015-11-11 04:04:20.679 EST] ValidateBackend departure [check .validateBackend: 1026]

    [main] [2015-11-11 04:04:20.680 EST] [DBCAValidator.loadCreateDBValidationGroups:400] run TR db validations

    [main] [2015-11-11 04:04:20.681 EST] [Host.noEntryinOratab:7194]  Check for oratab arg passed...

    [main] [2015-11-11 04:04:20.681 EST] [DBCAValidator.loadCreateDBValidationGroups:403] jump dbid validatoin for if

    [main] [2015-11-11 04:04:20.681 EST] False isCluster [DBCAValidator.loadCreateDBValidationGroups:415]

    [main] [2015-11-11 04:04:20.681 EST] False isHARegnReq [DBCAValidator.loadCreateDBValidationGroups:416]

    [main] [2015-11-11 04:04:20.685 EST] Iscdb1 gdbname [DBIdentificationHelper.getDbNameError:224]

    [main] [2015-11-11 04:04:20.711 EST] [Check .validateBackend: 1033]  The result of the validation:

    Checking database unique identifier passed.

    [main] [2015-11-11 04:04:20.711 EST] [Check .validateBackend: 1058] writing true trace result

    [main] [2015-11-11 04:04:20.713 EST] [StorageSpaceCheck.validate:97]  Get volumes of spatial maps 3, 1

    [main] [2015-11-11 04:04:20.713 EST] [StorageSpaceCheck.getConsolidatedMap:312] locationString processed: / u01/app/oracle/oradata/cdb1 original String: / u01/app/oracle/oradata/cdb1 /.

    [main] [2015-11-11 04:04:20.713 EST] [HAUtils.getCurrentOracleHome:593]  Home of the Oracle system property: /u01/app/oracle/product/12.1.0.2/db_1

    [main] [2015-11-11 04:04:20.713 EST] [HAUtils.getConfiguredGridHome:1343] - HOUSE of CRS.

    [main] [2015-11-11 04:04:20.713 EST] [UnixSystem.getCRSHome:2878] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.714 EST] [HAUtils.getHASHome:1500]  Could not get at home.

    PRCI-1144: Impossible to retrieve the path home Oracle Grid Infrastructure

    PRKC-1144: File ' / etc/oracle/olr.loc ' not found.

    [main] [2015-11-11 04:04:20.714 EST] IsPathOnACFS [HAUtils.isPathOnACFS:3995]: false

    [main] [2015-11-11 04:04:20.832 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/security /.

    [main] [2015-11-11 04:04:20.833 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/debug /.

    [main] [2015-11-11 04:04:20.833 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/config /.

    [main] [2015-11-11 04:04:20.834 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/selinux /.

    [main] [2015-11-11 04:04:20.835 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/pstore.

    [main] [2015-11-11 04:04:20.835 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/systemd.

    [main] [2015-11-11 04:04:20.835 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/perf_event.

    [main] [2015-11-11 04:04:20.835 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/net_cls /.

    [main] [2015-11-11 04:04:20.835 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/memory.

    [main] [2015-11-11 04:04:20.835 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/hugetlb.

    [main] [2015-11-11 04:04:20.836 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/freezer.

    [main] [2015-11-11 04:04:20.836 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/devices /.

    [main] [2015-11-11 04:04:20.836 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/cpuset.

    [main] [2015-11-11 04:04:20.836 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/cpu, cpuacct.

    [main] [2015-11-11 04:04:20.836 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/blkio /.

    [main] [2015-11-11 04:04:20.836 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup /.

    [main] [2015-11-11 04:04:20.836 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked /sys/

    [main] [2015-11-11 04:04:20.837 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked /run/

    [main] [2015-11-11 04:04:20.837 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc/sys/fs/binfmt_misc /.

    [main] [2015-11-11 04:04:20.837 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc/sys/fs/binfmt_misc /.

    [main] [2015-11-11 04:04:20.837 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc /.

    [main] [2015-11-11 04:04:20.837 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/shm /.

    [main] [2015-11-11 04:04:20.837 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/pts /.

    [main] [2015-11-11 04:04:20.837 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/mqueue /.

    [main] [2015-11-11 04:04:20.838 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/hugepages.

    [main] [2015-11-11 04:04:20.838 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev /.

    [main] [2015-11-11 04:04:20.838 EST] [OsUtilsBase.getMountPoint:2822] mount at check point.

    [main] [2015-11-11 04:04:20.838 EST] [StorageSpaceCheck.getConsolidatedMap:341]  Point/u01/app/oracle/oradata/cdb1 of editing/is /.

    [main] [2015-11-11 04:04:20.838 EST] [StorageSpaceCheck.getConsolidatedMap:312] locationString processed: / u01/app/oracle/oradata/cdb1 original String: / u01/app/oracle/oradata/cdb1

    [main] [2015-11-11 04:04:20.838 EST] [HAUtils.getCurrentOracleHome:593]  Home of the Oracle system property: /u01/app/oracle/product/12.1.0.2/db_1

    [main] [2015-11-11 04:04:20.838 EST] [HAUtils.getConfiguredGridHome:1343] - HOUSE of CRS.

    [main] [2015-11-11 04:04:20.839 EST] [UnixSystem.getCRSHome:2878] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.839 EST] [HAUtils.getHASHome:1500]  Could not get at home.

    PRCI-1144: Impossible to retrieve the path home Oracle Grid Infrastructure

    PRKC-1144: File ' / etc/oracle/olr.loc ' not found.

    [main] [2015-11-11 04:04:20.839 EST] IsPathOnACFS [HAUtils.isPathOnACFS:3995]: false

    [main] [2015-11-11 04:04:20.853 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/security /.

    [main] [2015-11-11 04:04:20.853 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/debug /.

    [main] [2015-11-11 04:04:20.853 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/config /.

    [main] [2015-11-11 04:04:20.853 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/selinux /.

    [main] [2015-11-11 04:04:20.853 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/pstore.

    [main] [2015-11-11 04:04:20.853 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/systemd.

    [main] [2015-11-11 04:04:20.853 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/perf_event.

    [main] [2015-11-11 04:04:20.854 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/net_cls /.

    [main] [2015-11-11 04:04:20.854 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/memory.

    [main] [2015-11-11 04:04:20.854 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/hugetlb.

    [main] [2015-11-11 04:04:20.854 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/freezer.

    [main] [2015-11-11 04:04:20.854 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/devices /.

    [main] [2015-11-11 04:04:20.854 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/cpuset.

    [main] [2015-11-11 04:04:20.855 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/cpu, cpuacct.

    [main] [2015-11-11 04:04:20.855 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/blkio /.

    [main] [2015-11-11 04:04:20.855 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup /.

    [main] [2015-11-11 04:04:20.855 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked /sys/

    [main] [2015-11-11 04:04:20.855 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked /run/

    [main] [2015-11-11 04:04:20.855 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc/sys/fs/binfmt_misc /.

    [main] [2015-11-11 04:04:20.855 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc/sys/fs/binfmt_misc /.

    [main] [2015-11-11 04:04:20.855 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc /.

    [main] [2015-11-11 04:04:20.856 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/shm /.

    [main] [2015-11-11 04:04:20.856 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/pts /.

    [main] [2015-11-11 04:04:20.856 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/mqueue /.

    [main] [2015-11-11 04:04:20.856 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/hugepages.

    [main] [2015-11-11 04:04:20.856 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev /.

    [main] [2015-11-11 04:04:20.856 EST] [OsUtilsBase.getMountPoint:2822] mount at check point.

    [main] [2015-11-11 04:04:20.856 EST] [StorageSpaceCheck.getConsolidatedMap:341]  / U01/app/oracle/oradata/cdb1 mount point is /.

    [main] [2015-11-11 04:04:20.857 EST] [StorageSpaceCheck.getConsolidatedMap:312] locationString processed: / u01/app/oracle/fast_recovery_area/cdb1 original String: / u01/app/oracle/fast_recovery_area/cdb1 /.

    [main] [2015-11-11 04:04:20.857 EST] [HAUtils.getCurrentOracleHome:593]  Home of the Oracle system property: /u01/app/oracle/product/12.1.0.2/db_1

    [main] [2015-11-11 04:04:20.857 EST] [HAUtils.getConfiguredGridHome:1343] - HOUSE of CRS.

    [main] [2015-11-11 04:04:20.857 EST] [UnixSystem.getCRSHome:2878] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.857 EST] [HAUtils.getHASHome:1500]  Could not get at home.

    PRCI-1144: Impossible to retrieve the path home Oracle Grid Infrastructure

    PRKC-1144: File ' / etc/oracle/olr.loc ' not found.

    [main] [2015-11-11 04:04:20.858 EST] IsPathOnACFS [HAUtils.isPathOnACFS:3995]: false

    [main] [2015-11-11 04:04:20.863 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/security /.

    [main] [2015-11-11 04:04:20.863 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/debug /.

    [main] [2015-11-11 04:04:20.864 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/config /.

    [main] [2015-11-11 04:04:20.864 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/selinux /.

    [main] [2015-11-11 04:04:20.864 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/pstore.

    [main] [2015-11-11 04:04:20.864 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/systemd.

    [main] [2015-11-11 04:04:20.864 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/perf_event.

    [main] [2015-11-11 04:04:20.864 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/net_cls /.

    [main] [2015-11-11 04:04:20.864 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/memory.

    [main] [2015-11-11 04:04:20.865 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/hugetlb.

    [main] [2015-11-11 04:04:20.865 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/freezer.

    [main] [2015-11-11 04:04:20.865 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/devices /.

    [main] [2015-11-11 04:04:20.865 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/cpuset.

    [main] [2015-11-11 04:04:20.865 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/cpu, cpuacct.

    [main] [2015-11-11 04:04:20.865 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/blkio /.

    [main] [2015-11-11 04:04:20.865 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup /.

    [main] [2015-11-11 04:04:20.866 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked /sys/

    [main] [2015-11-11 04:04:20.866 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked /run/

    [main] [2015-11-11 04:04:20.866 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc/sys/fs/binfmt_misc /.

    [main] [2015-11-11 04:04:20.866 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc/sys/fs/binfmt_misc /.

    [main] [2015-11-11 04:04:20.866 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc /.

    [main] [2015-11-11 04:04:20.866 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/shm /.

    [main] [2015-11-11 04:04:20.867 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/pts /.

    [main] [2015-11-11 04:04:20.867 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/mqueue /.

    [main] [2015-11-11 04:04:20.867 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/hugepages.

    [main] [2015-11-11 04:04:20.867 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev /.

    [main] [2015-11-11 04:04:20.867 EST] [OsUtilsBase.getMountPoint:2822] mount at check point.

    [main] [2015-11-11 04:04:20.867 EST] [StorageSpaceCheck.getConsolidatedMap:341]  Point/u01/app/oracle/fast_recovery_area/cdb1 of editing/is /.

    [main] [2015-11-11 04:04:20.867 EST] [StorageSpaceCheck.getConsolidatedMap:312] locationString processed: / u01/app/oracle/fast_recovery_area original String: / u01/app/oracle/fast_recovery_area

    [main] [2015-11-11 04:04:20.868 EST] [HAUtils.getCurrentOracleHome:593]  Home of the Oracle system property: /u01/app/oracle/product/12.1.0.2/db_1

    [main] [2015-11-11 04:04:20.868 EST] [HAUtils.getConfiguredGridHome:1343] - HOUSE of CRS.

    [main] [2015-11-11 04:04:20.868 EST] [UnixSystem.getCRSHome:2878] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.868 EST] [HAUtils.getHASHome:1500]  Could not get at home.

    PRCI-1144: Impossible to retrieve the path home Oracle Grid Infrastructure

    PRKC-1144: File ' / etc/oracle/olr.loc ' not found.

    [main] [2015-11-11 04:04:20.868 EST] IsPathOnACFS [HAUtils.isPathOnACFS:3995]: false

    [main] [2015-11-11 04:04:20.872 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/security /.

    [main] [2015-11-11 04:04:20.872 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/debug /.

    [main] [2015-11-11 04:04:20.872 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/kernel/config /.

    [main] [2015-11-11 04:04:20.872 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/selinux /.

    [main] [2015-11-11 04:04:20.872 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/pstore.

    [main] [2015-11-11 04:04:20.872 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/systemd.

    [main] [2015-11-11 04:04:20.873 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/perf_event.

    [main] [2015-11-11 04:04:20.873 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/net_cls /.

    [main] [2015-11-11 04:04:20.873 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/memory.

    [main] [2015-11-11 04:04:20.873 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/hugetlb.

    [main] [2015-11-11 04:04:20.873 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/freezer.

    [main] [2015-11-11 04:04:20.873 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/devices /.

    [main] [2015-11-11 04:04:20.873 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/cpuset.

    [main] [2015-11-11 04:04:20.874 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/cpu, cpuacct.

    [main] [2015-11-11 04:04:20.874 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup/blkio /.

    [main] [2015-11-11 04:04:20.874 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/sys/fs/cgroup /.

    [main] [2015-11-11 04:04:20.874 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked /sys/

    [main] [2015-11-11 04:04:20.874 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked /run/

    [main] [2015-11-11 04:04:20.874 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc/sys/fs/binfmt_misc /.

    [main] [2015-11-11 04:04:20.874 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc/sys/fs/binfmt_misc /.

    [main] [2015-11-11 04:04:20.875 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/proc /.

    [main] [2015-11-11 04:04:20.875 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/shm /.

    [main] [2015-11-11 04:04:20.875 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/pts /.

    [main] [2015-11-11 04:04:20.875 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/mqueue /.

    [main] [2015-11-11 04:04:20.875 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev/hugepages.

    [main] [2015-11-11 04:04:20.875 EST] [OsUtilsBase.getMountPoint:2822] mount point to be checked/dev /.

    [main] [2015-11-11 04:04:20.875 EST] [OsUtilsBase.getMountPoint:2822] mount at check point.

    [main] [2015-11-11 04:04:20.876 EST] [StorageSpaceCheck.getConsolidatedMap:341]  / U01/app/oracle/fast_recovery_area mount point is /.

    [main] [2015-11-11 04:04:20.876 EST] [StorageSpaceCheck.validate:136]  Archive storage.

    [main] [2015-11-11 04:04:20.876 EST] [HAUtils.getCurrentOracleHome:593]  Home of the Oracle system property: /u01/app/oracle/product/12.1.0.2/db_1

    [main] [2015-11-11 04:04:20.876 EST] [HAUtils.getConfiguredGridHome:1343] - HOUSE of CRS.

    [main] [2015-11-11 04:04:20.876 EST] [UnixSystem.getCRSHome:2878] olrFileName = /etc/oracle/olr.loc

    [main] [2015-11-11 04:04:20.877 EST] [HAUtils.getHASHome:1500]  Could not get at home.

    PRCI-1144: Impossible to retrieve the path home Oracle Grid Infrastructure

    PRKC-1144: File ' / etc/oracle/olr.loc ' not found.

    [main] [2015-11-11 04:04:20.877 EST] IsPathOnACFS [HAUtils.isPathOnACFS:3995]: false

    [main] [2015-11-11 04:04:20.877 EST] [StorageSpaceCheck.validate:165] / isACFSMountPoint: false

    [main] [2015-11-11 04:04:20.877 EST] [StorageSpaceCheck.parseSpaceResult:385] real: 17768 location: / mandatorySpace: optionalSpace 3105: 4560

    [main] [2015-11-11 04:04:20.879 EST] [Check .validateBackend: 1033]  The result of the validation:

    / has enough space. Space required is 7665 MB, available space is 17768 MB.

    File of successful Validations.

    [main] [2015-11-11 04:04:20.879 EST] [Check .validateBackend: 1058] writing true trace result

    [main] [2015-11-11 04:04:20.879 EST] [CommonAttributes.replaceVariables:1402] /u01/app/oracle/product/12.1.0.2/db_1 var2

    [main] [2015-11-11 04:04:20.879 EST] [CommonAttributes.replaceVariables:1402] /u01/app/oracle/product/12.1.0.2/db_1 var2

    [main] [2015-11-11 04:04:20.879 EST] [Host.checkCloneJarExists:5160] /U01/app/oracle/product/12.1.0.2/db_1/assistants/dbca/templates/Seed_Database.dfb backup piece is

    [main] [2015-11-11 04:04:20.880 EST] [Host.executeSteps:5975]  Stages of execution...

    [main] [2015-11-11 04:04:20.880 EST] [HADatabaseUtils.isGridMgmtDB:2842]  Mgmt DBName srvm _mgmtdb

    [main] [2015-11-11 04:04:20.880 EST] SetUpForOperation [Host.setUpForOperation:4003]: Mode = 128

    [main] [2015-11-11 04:04:20.880 EST] [OsUtilsBase.copyFile:1505]  OsUtilsBase.copyFile:

    [main] [2015-11-11 04:04:20.882 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.882 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.882 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.882 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.882 EST] [Host.getAuditNextGen:9054] / U01/app/oracle/audit audit of NextGen

    [main] [2015-11-11 04:04:20.883 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.883 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.883 EST] [Host.getFolders:10740] add path to DB_RECOVERY_FILE_DETS/u01/app/oracle/fast_recovery_area

    [main] [2015-11-11 04:04:20.883 EST] [Host.getFolders:10750]  RedoLogDestName db_create_online_log_dest_1

    [main] [2015-11-11 04:04:20.883 EST] [Host.getFolders:10750]  RedoLogDestName db_create_online_log_dest_2

    [main] [2015-11-11 04:04:20.883 EST] [Host.getFolders:10750]  RedoLogDestName db_create_online_log_dest_3

    [main] [2015-11-11 04:04:20.884 EST] [Host.getFolders:10750]  RedoLogDestName db_create_online_log_dest_4

    [main] [2015-11-11 04:04:20.884 EST] [Host.getFolders:10750]  RedoLogDestName db_create_online_log_dest_5

    [main] [2015-11-11 04:04:20.884 EST] [CommonAttributes.replaceVariables:1402] /u01/app/oracle/product/12.1.0.2/db_1 var2

    [main] [2015-11-11 04:04:20.884 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.884 EST] [CommonAttributes.replaceVariables:1402] /u01/app/oracle/product/12.1.0.2/db_1 var2

    [main] [2015-11-11 04:04:20.884 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.884 EST] [Host.getFolders:10786] add path to /u01/app/oracle/product/12.1.0.2/db_1/dbs

    [main] [2015-11-11 04:04:20.885 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.885 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.885 EST] [Host.getFolders:10838] add path/u01/app/oracle/oradata/cdb1

    [main] [2015-11-11 04:04:20.885 EST] [Host.getFolders:10841] m_enableDBConsolidation: true

    [main] [2015-11-11 04:04:20.885 EST] [InitParamAttributes.needPdbSeedConvert:5220]  OMF Mode: false usePdbFileNameConvert: false

    [main] [2015-11-11 04:04:20.886 EST] [Host.getFolders:10849] add path/u01/app/oracle/oradata/cdb1/pdbseed

    [main] [2015-11-11 04:04:20.886 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.886 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.886 EST] [Host.getFolders:10841] m_enableDBConsolidation: true

    [main] [2015-11-11 04:04:20.886 EST] [InitParamAttributes.needPdbSeedConvert:5220]  OMF Mode: false usePdbFileNameConvert: false

    [main] [2015-11-11 04:04:20.886 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.886 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.887 EST] [Host.getFolders:10841] m_enableDBConsolidation: true

    [main] [2015-11-11 04:04:20.887 EST] [InitParamAttributes.needPdbSeedConvert:5220]  OMF Mode: false usePdbFileNameConvert: false

    [main] [2015-11-11 04:04:20.887 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.887 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.887 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.887 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.887 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.888 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.888 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.888 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.888 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.888 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.888 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.888 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.889 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [main] [2015-11-11 04:04:20.889 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [main] [2015-11-11 04:04:20.892 EST] [Host.setUpForOperation:4253]  File [0] = / u01/app/oracle

    [main] [2015-11-11 04:04:20.892 EST] [Host.setUpForOperation:4253]  [1] file = / u01/app/oracle/admin/cdb1/adump

    [main] [2015-11-11 04:04:20.892 EST] [Host.setUpForOperation:4253]  Folder [2] = / u01/app/oracle/admin/cdb1/dpdump

    [main] [2015-11-11 04:04:20.892 EST] [Host.setUpForOperation:4253]  [3] file = / u01/app/oracle/admin/cdb1/pfile

    [main] [2015-11-11 04:04:20.892 EST] [Host.setUpForOperation:4253]  [4] file = / u01/app/oracle/audit

    [main] [2015-11-11 04:04:20.893 EST] [Host.setUpForOperation:4253]  [5] file = / u01/app/oracle/cfgtoollogs/dbca/cdb1

    [main] [2015-11-11 04:04:20.893 EST] [Host.setUpForOperation:4253]  [6] file = / u01/app/oracle/fast_recovery_area

    [main] [2015-11-11 04:04:20.893 EST] [Host.setUpForOperation:4253]  [7] folder = / u01/app/oracle/fast_recovery_area/cdb1

    [main] [2015-11-11 04:04:20.893 EST] [Host.setUpForOperation:4253]  [8] file = / u01/app/oracle/oradata/cdb1

    [main] [2015-11-11 04:04:20.893 EST] [Host.setUpForOperation:4253]  [9] file = / u01/app/oracle/oradata/cdb1/pdbseed

    [main] [2015-11-11 04:04:20.893 EST] [Host.setUpForOperation:4253]  Folder[10]=/U01/app/Oracle/product/12.1.0.2/Db_1/DBS

    [main] [2015-11-11 04:04:20.893 EST] [Host.executeSteps:6091] setupForOperation returned: true

    [main] [2015-11-11 04:04:20.894 EST] [Host.createStepSQLInterface:8605] sid = cdb1

    [main] [2015-11-11 04:04:20.894 EST] Cdb1 sidOrConnectString [Host.createStepSQLInterface:8606]

    [main] [2015-11-11 04:04:20.894 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: null

    [main] [2015-11-11 04:04:20.895 EST] Setting [InventoryUtil.getOUIInvSession:349] YES READ at ACCESSLEVEL_READ_LOCKLESS

    [main] [2015-11-11 04:04:20.896 EST] [OracleHome.getVersion:1010]  HomeInfo /u01/app/oracle/product/12.1.0.2/db_1,1

    [main] [2015-11-11 04:04:21.043 EST] [OracleHome.getVersion:1038]  OracleHome.server.getVersion Version: 12.1.0.2.0

    [main] [2015-11-11 04:04:21.043 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:21.043 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:21.043 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:21.044 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [main] [2015-11-11 04:04:21.044 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [main] [2015-11-11 04:04:21.044 EST] [SQLPlusEngine.getCmmdParams:225] m_home 12.1.0.2.0

    [main] [2015-11-11 04:04:21.044 EST] True for 112 > version [SQLPlusEngine.getCmmdParams:226]

    [main] [2015-11-11 04:04:21.044 EST] [SQLEngine.getEnvParams:602]  By default the NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [main] [2015-11-11 04:04:21.044 EST] [SQLEngine.getEnvParams:612]  NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [main] [2015-11-11 04:04:21.045 EST] [SQLEngine.initialize:358]  SQLPLUS/OPEN process execing...

    [main] [2015-11-11 04:04:21.056 EST] M_bReaderStarted [SQLEngine.initialize:395]: false

    [main] [2015-11-11 04:04:21.056 EST] [SQLEngine.initialize:399]  From the wire drive...

    [Thread-18] [2015-11-11 04:04:21.060 EST] Setting [InventoryUtil.getOUIInvSession:349] YES READ at ACCESSLEVEL_READ_LOCKLESS

    [Thread-18] [2015-11-11 04:04:21.060 EST] [InventoryUtil.getHomeName:113] homeName = OraDB12Home1

    [Thread-18] [2015-11-11 04:04:21.061 EST] [StepManager.getSteps:275] record defined folder: / u01/app/oracle/cfgtoollogs/dbca/cdb1

    [Thread-18] [2015-11-11 04:04:21.062 EST] [StepManager.getSteps:295] ckFileName /u01/app/oracle/cfgtoollogs/dbca/cdb1/OraDB12Home1_cdb1_creation_checkpoint.xml ckContext oracle.sysman.assistants.util.CheckpointContext@54c9f997

    [Thread-18] [2015-11-11 04:04:21.081 EST] FailedChkFiles [CheckpointContext.isCleanupNeeded:140] {/ u01/app/oracle/cfgtoollogs/dbca/cdb1/OraDB12Home1_cdb1_creation_checkpoint.xml=null}

    [Thread-18] [2015-11-11 04:04:21.081 EST] [CheckpointContext.isCleanupNeeded:149]  Could not verify the files java.util.HashMap$KeyIterator@612e4cd iterator

    [Thread-18] [2015-11-11 04:04:21.081 EST] [CheckpointContext.isCleanupNeeded:155] failed chjeckpoint file /u01/app/oracle/cfgtoollogs/dbca/cdb1/OraDB12Home1_cdb1_creation_checkpoint.xml

    [Thread-18] [2015-11-11 04:04:21.081 EST] [CheckpointContext.isCleanupNeeded:160] get all the list of control point

    [Thread-18] [2015-11-11 04:04:21.082 EST] [CheckpointContext.getAllCheckPoints:224] get all the list of control point

    [Thread-18] [2015-11-11 04:04:21.082 EST] [CheckpointContext.getAllCheckPoints:226] return all list of control point

    [Thread-18] [2015-11-11 04:04:21.082 EST] [CheckpointContext.isCleanupNeeded:163] all the checkpoint size 1 list

    [Thread-18] [2015-11-11 04:04:21.082 EST] [CheckpointContext.isCleanupNeeded:189] adding cleanup step because this is a retry operation.

    [Thread-18] [2015-11-11 04:04:21.082 EST] Old file deleted [CheckpointContext.isCleanupNeeded:196] control point: true

    [Thread-18] [2015-11-11 04:04:21.083 EST] [CheckpointContext.retrieveCheckPoint:338] check point db_cdb1 is from the oracle.sysman.oic.oics.OicsCheckPoint@59a02097 file

    [Thread-18] [2015-11-11 04:04:21.083 EST] [CommandLineArguments.getCmdLineWithoutPasswords:7686] Remove password for exploitation forest-SYSPASSWORD

    [Thread-18] [2015-11-11 04:04:21.083 EST] [CommandLineArguments.getCmdLineWithoutPasswords:7686] Remove password for exploitation forest-SYSTEMPASSWORD

    [Thread-18] [2015-11-11 04:04:21.084 EST] [CommandLineArguments.getCmdLineWithoutPasswords:7686] Remove password for exploitation forest-PDBADMINPASSWORD

    [Thread-18] [2015-11-11 04:04:21.084 EST] Checkpoint [StepManager.getSteps:326] oracle.sysman.oic.oics.OicsCheckPoint@59a02097 file

    [Thread-18] [2015-11-11 04:04:21.084 EST] [StepManager.getSteps:332] adding point of session control

    [Thread-18] [2015-11-11 04:04:21.084 EST] [StepManager.getSteps:334] recorded the new session of control point for the creation of the DB

    [Thread-18] [2015-11-11 04:04:21.084 EST] [StepManager.getSteps:430]  StepManager isHARegistrationRequired: false

    [Thread-18] [2015-11-11 04:04:21.101 EST] [StepContext$ ModeRunner.run:2873]-progress necessary: = true

    [Thread-18] [2015-11-11 04:04:21.101 EST] [BasicStep.execute:250]  Execution stage: CLEANING

    [Thread-18] [2015-11-11 04:04:21.102 EST] [BasicStep.configureSettings:353] updated messageHandler = null

    [Thread-18] [2015-11-11 04:04:21.103 EST] Setting [InventoryUtil.getOUIInvSession:349] YES READ at ACCESSLEVEL_READ_LOCKLESS

    [Thread-18] [2015-11-11 04:04:21.103 EST] [InventoryUtil.getHomeName:113] homeName = OraDB12Home1

    [Thread-18] [2015-11-11 04:04:21.103 EST] [BasicStep.configureSettings:353] messageHandler being set=oracle.sysman.assistants.util.SilentMessageHandler@7080ed90

    [Thread-18] [2015-11-11 04:04:21.104 EST] [StepContext$ ModeRunner.run:2873]-progress necessary: = true

    [Thread-18] [2015-11-11 04:04:21.104 EST] [BasicStep.execute:250]  Execution stage: CLONE_DB_CREATION_RMAN_RESTORE

    [Thread-18] [2015-11-11 04:04:21.126 EST] Parameter [StepErrorHandler.setFatalErrors:323] Fatal Error: ORA-01092

    [Thread-18] [2015-11-11 04:04:21.126 EST] Parameter [StepErrorHandler.setFatalErrors:323] Fatal Error: ORA-01034

    [Thread-18] [2015-11-11 04:04:21.126 EST] Parameter [StepErrorHandler.setFatalErrors:323] Fatal Error: ORA-03114

    [Thread-18] [2015-11-11 04:04:21.127 EST] Parameter [StepErrorHandler.setFatalErrors:323] Fatal Error: ORA-12560

    [Thread-18] [2015-11-11 04:04:21.127 EST] Parameter [StepErrorHandler.setIgnorableErrors:251] error can be ignored: ORA-01109

    [Thread-18] [2015-11-11 04:04:21.127 EST] [BasicStep.configureSettings:353] updated messageHandler = null

    [Thread-18] [2015-11-11 04:04:21.127 EST] [Host.getRMANConnectionInfo:1171]  To connect to the cdb1 Instance

    [Thread-18] [2015-11-11 04:04:21.129 EST] [BasicStep.execute:250]  Execution stage: INSTANCE_CREATION

    [Thread-18] [2015-11-11 04:04:21.129 EST] [BasicStep.configureSettings:353] updated messageHandler = null

    [Thread-18] [2015-11-11 04:04:21.129 EST] [InitParamAttributes.setPluggableDatabase:5115] setPluggableDatabase: bInclude = true

    [Thread-18] [2015-11-11 04:04:21.131 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.131 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.132 EST] [InitParamAttributes.sortParams:3916] m_sortOn: sortOn:4 - 1

    [Thread-18] [2015-11-11 04:04:21.154 EST] [InitParamAttributes.createInitFile:1811]  Init param db_block_size treatment

    [Thread-18] [2015-11-11 04:04:21.154 EST] [InitParamAttributes.createInitFile:1816]  The value is 8192

    [Thread-18] [2015-11-11 04:04:21.154 EST] [InitParamAttributes.createInitFile:1811]  Treatment open_cursors init param

    [Thread-18] [2015-11-11 04:04:21.155 EST] [InitParamAttributes.createInitFile:1816]  The value is 300

    [Thread-18] [2015-11-11 04:04:21.155 EST] [InitParamAttributes.createInitFile:1811]  Db_domain init param treatment

    [Thread-18] [2015-11-11 04:04:21.155 EST] [InitParamAttributes.createInitFile:1816]  The value is «»

    [Thread-18] [2015-11-11 04:04:21.155 EST] [InitParamAttributes.createInitFile:1811]  Treatment init param db_name

    [Thread-18] [2015-11-11 04:04:21.155 EST] [InitParamAttributes.createInitFile:1816]  The value is "cdb1".

    [Thread-18] [2015-11-11 04:04:21.155 EST] [InitParamAttributes.createInitFile:1811]  Control_files treatment init param

    [Thread-18] [2015-11-11 04:04:21.155 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.156 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.156 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.156 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.156 EST] [InitParamAttributes.createInitFile:1816]  The value is ("" / u01/app/oracle/oradata/cdb1/control01.ctl "," / u01/app/oracle/fast_recovery_area/cdb1/control02.ctl "")

    [Thread-18] [2015-11-11 04:04:21.156 EST] [InitParamAttributes.createInitFile:1811]  Treatment db_recovery_file_dest init param

    [Thread-18] [2015-11-11 04:04:21.156 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.157 EST] [InitParamAttributes.createInitFile:1816]  The value is ' / u01/app/oracle/fast_recovery_area.

    [Thread-18] [2015-11-11 04:04:21.157 EST] [InitParamAttributes.createInitFile:1811]  Treatment db_recovery_file_dest_size init param

    [Thread-18] [2015-11-11 04:04:21.157 EST] [InitParamAttributes.createInitFile:1816]  The value is 4560 m

    [Thread-18] [2015-11-11 04:04:21.157 EST] [InitParamAttributes.createInitFile:1811]  Compatible init param treatment

    [Thread-18] [2015-11-11 04:04:21.157 EST] [InitParamAttributes.createInitFile:1816]  The value is 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.157 EST] [InitParamAttributes.createInitFile:1811]  Treatment diagnostic_dest init param

    [Thread-18] [2015-11-11 04:04:21.157 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.158 EST] [InitParamAttributes.createInitFile:1816]  The value is/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.158 EST] [InitParamAttributes.createInitFile:1811]  Treatment enable_pluggable_database init param

    [Thread-18] [2015-11-11 04:04:21.158 EST] [InitParamAttributes.createInitFile:1816]  The value is true

    [Thread-18] [2015-11-11 04:04:21.158 EST] [InitParamAttributes.createInitFile:1811]  Treatment memory_target init param

    [Thread-18] [2015-11-11 04:04:21.158 EST] [InitParamAttributes.createInitFile:1816]  The value is 396 m

    [Thread-18] [2015-11-11 04:04:21.158 EST] [InitParamAttributes.createInitFile:1811]  Treatment of the process init param

    [Thread-18] [2015-11-11 04:04:21.158 EST] [InitParamAttributes.createInitFile:1816]  The value is 300

    [Thread-18] [2015-11-11 04:04:21.159 EST] [InitParamAttributes.createInitFile:1811]  Treatment audit_file_dest init param

    [Thread-18] [2015-11-11 04:04:21.159 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.159 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.159 EST] [InitParamAttributes.createInitFile:1816]  The value is ' / u01/app/oracle/admin/cdb1/adump.

    [Thread-18] [2015-11-11 04:04:21.159 EST] [InitParamAttributes.createInitFile:1811]  Audit_trail init param treatment

    [Thread-18] [2015-11-11 04:04:21.159 EST] [InitParamAttributes.createInitFile:1816]  The value is db

    [Thread-18] [2015-11-11 04:04:21.159 EST] [InitParamAttributes.createInitFile:1811]  Treatment remote_login_passwordfile init param

    [Thread-18] [2015-11-11 04:04:21.160 EST] [InitParamAttributes.createInitFile:1816]  The value is EXCLUSIVE

    [Thread-18] [2015-11-11 04:04:21.160 EST] [InitParamAttributes.createInitFile:1811]  Treatment of init param dispatchers

    [Thread-18] [2015-11-11 04:04:21.160 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.160 EST] [InitParamAttributes.createInitFile:1816]  The value is "(PROTOCOL=TCP) (SERVICE = cdb1XDB)" "

    [Thread-18] [2015-11-11 04:04:21.160 EST] [InitParamAttributes.createInitFile:1811]  Treatment undo_tablespace init param

    [Thread-18] [2015-11-11 04:04:21.160 EST] [InitParamAttributes.createInitFile:1816]  The value is UNDOTBS1

    [Thread-18] [2015-11-11 04:04:21.162 EST] [HADatabaseUtils.isGridMgmtDB:2842]  Mgmt DBName srvm _mgmtdb

    [Thread-18] [2015-11-11 04:04:21.162 EST] [InstanceStep.executeImpl:280]  Check the registry with HA listener

    [Thread-18] [2015-11-11 04:04:21.162 EST] [Host.noEntryinOratab:7194]  Check for oratab arg passed...

    [Thread-18] [2015-11-11 04:04:21.163 EST] [Oratab.getTempFile:805]  Oratab Temp: / tmp/oratab

    [Thread-18] [2015-11-11 04:04:21.180 EST] [InstanceStep.executeImpl:331]  Location of the password before parsing /u01/app/oracle/product/12.1.0.2/db_1/dbs/orapwcdb1 file

    [Thread-18] [2015-11-11 04:04:21.180 EST] [InstanceStep.executeImpl:333]  Location of the password before parsing /u01/app/oracle/product/12.1.0.2/db_1/dbs/orapwcdb1 file

    [Thread-18] [2015-11-11 04:04:21.181 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.181 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.181 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.181 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.181 EST] [CommonUtils.createPasswordFile:1243] orapwd new appeal for 11.1 or above

    [Thread-18] [2015-11-11 04:04:21.181 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.182 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.182 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.182 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.182 EST] [CommonUtils.getPasswordFileCreateCmd:1182] for new orapwd to 11.1 or above

    [Thread-18] [2015-11-11 04:04:21.184 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.184 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.184 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.184 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.184 EST] /U01/app/oracle/product/12.1.0.2/db_1/bin/orapwd [CommonUtils.getPasswordFileCreateCmd:1213]

    [Thread-18] [2015-11-11 04:04:21.185 EST] File=/U01/app/Oracle/product/12.1.0.2/Db_1/DBS/orapwcdb1 [CommonUtils.getPasswordFileCreateCmd:1213]

    [Thread-18] [2015-11-11 04:04:21.185 EST] Force [CommonUtils.getPasswordFileCreateCmd:1213] = y

    [Thread-18] [2015-11-11 04:04:21.185 EST] [CommonUtils.getPasswordFileCreateCmd:1213] format = 12

    [Thread-18] [2015-11-11 04:04:21.185 EST] [OsUtilsBase.execProg:2123] start execProg with the input array.

    [Thread-18] [2015-11-11 04:04:21.229 EST] [OsUtilsBase.execProg:2160] done execProg with the input array. Status: 0

    [Thread-18] [2015-11-11 04:04:21.229 EST] [InstanceStep.setASMAdminGID:373] is: wrong Type of storage: 0

    [Thread-18] [2015-11-11 04:04:21.229 EST] [BasicStep.configureSettings:353] messageHandler being set=oracle.sysman.assistants.util.SilentMessageHandler@7080ed90

    [Thread-18] [2015-11-11 04:04:21.229 EST] [CloneRmanRestoreStep.executeImpl:270]  The Forum went well...

    [Thread-18] [2015-11-11 04:04:21.230 EST] [CloneRmanRestoreStep.executeImpl:277] db_recovery_file_dest = ' / u01/app/oracle/fast_recovery_area.

    [Thread-18] [2015-11-11 04:04:21.230 EST] [CloneRmanRestoreStep.executeImpl:280] db_recovery_file_dest_size = 4560 m

    [Thread-18] [2015-11-11 04:04:21.230 EST] [InitParameterFile.getLongValue:687]  Perhaps the unit. Stripping device and try with 4560

    [Thread-18] [2015-11-11 04:04:21.230 EST] [CloneRmanRestoreStep.executeImpl:297]  Setting NLS_LANG to AMERICA. AL32UTF8

    [Thread-18] [2015-11-11 04:04:21.230 EST] [SQLEngine.done:2278]  Called

    [Thread-18] [2015-11-11 04:04:21.232 EST] [SQLEngine.reInitialize:785]  The SQLEngine reset...

    [Thread-18] [2015-11-11 04:04:21.232 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.232 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.232 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.232 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.233 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.233 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.233 EST] [SQLPlusEngine.getCmmdParams:225] m_home 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.233 EST] True for 112 > version [SQLPlusEngine.getCmmdParams:226]

    [Thread-18] [2015-11-11 04:04:21.233 EST] [SQLEngine.getEnvParams:612]  NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [Thread-18] [2015-11-11 04:04:21.234 EST] [SQLEngine.initialize:358]  SQLPLUS/OPEN process execing...

    [Thread-18] [2015-11-11 04:04:21.243 EST] M_bReaderStarted [SQLEngine.initialize:395]: false

    [Thread-18] [2015-11-11 04:04:21.243 EST] [SQLEngine.initialize:399]  From the wire drive...

    [Thread-18] [2015-11-11 04:04:21.244 EST] [SQLEngine.initialize:448]  Waiting for m_bReaderStarted to be true

    [Thread-21] [2015-11-11 04:04:21.263 EST] Oracle.sysman.assistants.util.SilentMessageHandler@7080ed90:messageHandler [BasicStep.handleNonIgnorableError:479]

    [Thread-21] [2015-11-11 04:04:21.263 EST] [BasicStep.handleNonIgnorableError:480]  ORA-12547: TNS: lost contact

    : msg

    [Thread-18] [2015-11-11 04:04:21.263 EST] [SQLEngine.setSpool:2056] old coil = null

    [Thread-18] [2015-11-11 04:04:21.264 EST] [SQLEngine.setSpool:2057]  Layout = /u01/app/oracle/cfgtoollogs/dbca/cdb1/CloneRmanRestore.log coil

    [Thread-18] [2015-11-11 04:04:21.264 EST] [SQLEngine.setSpool:2058]  Coil is editable? -> true

    [Thread-18] [2015-11-11 04:04:21.264 EST] [CloneRmanRestoreStep.executeImpl:323] _diag_hm_rc_enabled false

    [Thread-18] [2015-11-11 04:04:21.264 EST] [CommonAttributes.replaceVariables:1402] /u01/app/oracle/product/12.1.0.2/db_1 var2

    [Thread-18] [2015-11-11 04:04:21.264 EST] [CloneRmanRestoreStep.executeImpl:358]  The control file using: /u01/app/oracle/product/12.1.0.2/db_1/assistants/dbca/templates/Seed_Database.ctl. sourceDBName: seeddata

    [Thread-18] [2015-11-11 04:04:21.265 EST] [OsUtilsBase.copyFile:1505]  OsUtilsBase.copyFile:

    [Thread-18] [2015-11-11 04:04:21.286 EST] [OsUtilsBase.copyFile:1553] * write files to complete destination...

    [Thread-18] [2015-11-11 04:04:21.289 EST] [OsUtilsBase.copyFile:1588] * copy of the file status: = true

    [Thread-18] [2015-11-11 04:04:21.291 EST] Journal of db [CloneRmanRestoreStep.executeImpl:399] update file alerts

    [Thread-18] [2015-11-11 04:04:21.291 EST] [CloneRmanRestoreStep.executeImpl:402]  Deletion of entries from v$ datafile_copy

    [Thread-18] [2015-11-11 04:04:21.292 EST] [CloneRmanRestoreStep.executeImpl:404]  Delete all entries from backup

    [Thread-18] [2015-11-11 04:04:21.292 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.294 EST] [CloneRmanRestoreStep.executeImpl:457]  Get the data file ID card and the names for the restoration

    [Thread-18] [2015-11-11 04:04:21.294 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.294 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.294 EST] [CloneRmanRestoreStep.getDatafileIdNameMapping:591] newname for datafile /u01/app/oracle/oradata/cdb1/sysaux01.dbf

    [Thread-18] [2015-11-11 04:04:21.294 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.294 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.295 EST] [CloneRmanRestoreStep.getDatafileIdNameMapping:591] newname for datafile /u01/app/oracle/oradata/cdb1/system01.dbf

    [Thread-18] [2015-11-11 04:04:21.295 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.295 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.295 EST] [CloneRmanRestoreStep.getDatafileIdNameMapping:591] newname for datafile /u01/app/oracle/oradata/cdb1/undotbs01.dbf

    [Thread-18] [2015-11-11 04:04:21.295 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.295 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.295 EST] [CloneRmanRestoreStep.getDatafileIdNameMapping:591] newname for datafile /u01/app/oracle/oradata/cdb1/users01.dbf

    [Thread-18] [2015-11-11 04:04:21.298 EST] [RMANUtil.getRMANUtil:147] creating new instance util

    [Thread-18] [2015-11-11 04:04:21.298 EST] [RMANUtil.getRMANUtil:148] target sid cdb1

    [Thread-18] [2015-11-11 04:04:21.298 EST] [CommonAttributes.replaceVariables:1402] /u01/app/oracle/product/12.1.0.2/db_1 var2

    [Thread-18] [2015-11-11 04:04:21.301 EST] [RMANEngine.getCmmdParams:343] with /u01/app/oracle/product/12.1.0.2/db_1/bin/rman rman

    [Thread-18] [2015-11-11 04:04:21.301 EST] [RMANEngine.getEnvParams:436]  NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [Thread-18] [2015-11-11 04:04:21.302 EST] [RMANEngine.initialize:195]  RMAN execing to initialize process...

    [Thread-18] [2015-11-11 04:04:21.313 EST] [RMANEngine.initialize:221]  RMAN created initialization process...

    [Thread-18] [2015-11-11 04:04:21.313 EST] [RMANEngine.initialize:235]  From the wire drive...

    [Thread-18] [2015-11-11 04:04:21.324 EST] [RMANEngine.initialize:239]  Player started thread for RMAN initialization process...

    [Thread-18] [2015-11-11 04:04:21.348 EST] [RMANEngine.initialize:247]  Error starting thread for RMAN initialization process...

    [Thread-18] [2015-11-11 04:04:21.348 EST] [RMANEngine.initialize:252]  Output writer created for the RMAN of initialization process...

    [Thread-18] [2015-11-11 04:04:21.348 EST] [RMANEngine.initialize:290]  Created Log writer for RMAN to initialize process...

    [Thread-18] [2015-11-11 04:04:21.349 EST] [RMANEngine.initialize:295]  M_bReaderStarted to initialize value = false

    [Thread-18] [2015-11-11 04:04:21.349 EST] [RMANEngine.initialize:299]  Waiting for m_bReaderStarted to be true

    [Thread-24] [2015-11-11 04:04:21.349 EST] [RMANEngine.run:803]  Player started thread for RMAN initialization process...

    [Thread-24] [2015-11-11 04:04:21.349 EST] [RMANEngine.run:807]  M_bReaderStarted set to true to initialize...

    [Thread-18] [2015-11-11 04:04:21.360 EST] [RMANEngine.initialize:310]  Fact certain player started for the process of RMAN to initialize...

    [Thread-18] [2015-11-11 04:04:21.360 EST] [RMANEngine.connect:775]  Don't use DO NOT OS auth to connect

    [Thread-18] [2015-11-11 04:04:21.360 EST] [RMANEngine.executeImpl:1186] m_bExecQuery = false

    [Thread-18] [2015-11-11 04:04:21.360 EST] [RMANEngine.executeImpl:1194]  Command rman process writing = connection target SYS / *.

    [Thread-18] [2015-11-11 04:04:21.361 EST] [RMANEngine.executeImpl:1222]  Advise the reader to start reading

    [Thread-24] [2015-11-11 04:04:21.361 EST] [RMANEngine.readSqlOutput:889]  Log RMAN output =

    [Thread-24] [2015-11-11 04:04:21.361 EST] [RMANEngine.readSqlOutput:889]  Connect the output RMAN = Recovery Manager: release 12.1.0.2.0 - Production Wed Nov 11 04:04:21 2015

    [Thread-24] [2015-11-11 04:04:21.361 EST] [RMANEngine.readSqlOutput:889]  Log RMAN output =

    [Thread-24] [2015-11-11 04:04:21.362 EST] [RMANEngine.readSqlOutput:889]  Connect the output RMAN = Copyright (c) 1982, 2014, Oracle and/or its affiliates.  All rights reserved.

    [Thread-24] [2015-11-11 04:04:21.402 EST] [RMANEngine.readSqlOutput:889]  Log RMAN output =

    [Thread-24] [2015-11-11 04:04:21.406 EST] [RMANEngine.readSqlOutput:889]  Connect the output = RMAN RMAN >

    [Thread-24] [2015-11-11 04:04:21.413 EST] [RMANEngine.readSqlOutput:889]  Connect the RMAN RMAN-00571 = out: =.

    [Thread-24] [2015-11-11 04:04:21.413 EST] [RMANEngine.readSqlOutput:889]  Connect the RMAN RMAN-00569 = out: = ERROR MESSAGE STACK FOLLOWS =.

    [Thread-24] [2015-11-11 04:04:21.413 EST] [RMANEngine.readSqlOutput:889]  Connect the RMAN RMAN-00571 = out: =.

    [Thread-24] [2015-11-11 04:04:21.414 EST] [RMANEngine.readSqlOutput:889]  Connect the output RMAN = ORA-12547: TNS: lost contact

    [Thread-24] [2015-11-11 04:04:21.414 EST] [RMANEngine.readSqlOutput:889]  Log RMAN output =

    [Thread-24] [2015-11-11 04:04:21.414 EST] [RMANEngine.readSqlOutput:889]  Connect the output = RMAN RMAN >

    [Thread-24] [2015-11-11 04:04:21.414 EST] [RMANEngine.readSqlOutput:889]  Connect the RMAN = game of echo output on

    [Thread-24] [2015-11-11 04:04:21.414 EST] [RMANEngine.readSqlOutput:889]  Connect the RMAN set echo off = output;

    [Thread-24] [2015-11-11 04:04:21.414 EST] [RMANEngine.readSqlOutput:932] hasError is true

    [Thread-24] [2015-11-11 04:04:21.414 EST] [RMANEngine.readSqlOutput:938]  TRACK OF THE DETECTED ERROR

    [Thread-24] [2015-11-11 04:04:21.415 EST] [RMANEngine.readSqlOutput:945] m_errHdlr = null

    [Thread-24] [2015-11-11 04:04:21.415 EST] [RMANEngine.readSqlOutput:969]  DETECTED FATAL ERROR

    [Thread-24] [2015-11-11 04:04:21.415 EST] [RMANEngine.readSqlOutput:1033]  Writer notifying to proceed because m_bInterrupted = falsebNotify = truem_bReaderDone = truem_bFatalErrorOccured = true

    [Thread-24] [2015-11-11 04:04:21.415 EST] [RMANEngine.run:817]  Return value of readSqlOutput = null

    [Thread-18] [2015-11-11 04:04:21.415 EST] [RMANEngine.executeImpl:1234]  Filled with expectation of the reader

    [Thread-18] [2015-11-11 04:04:21.415 EST] [RMANEngine.executeImpl:1249]  Appeal is as had exception

    [Thread-18] [2015-11-11 04:04:21.415 EST] [RMANEngine.done:1554]  Called

    [Thread-18] [2015-11-11 04:04:21.416 EST] [RMANEngine.executeImpl:1276]  Received the FATAL error = Recovery Manager: release 12.1.0.2.0 - Production Wed Nov 11 04:04:21 2015

    Copyright (c) 1982, 2014, Oracle and/or its affiliates.  All rights reserved.

    RMAN >

    RMAN-00571: ===========================================================

    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

    RMAN-00571: ===========================================================

    ORA-12547: TNS: lost contact

    RMAN >

    echo on

    [Thread-18] [2015-11-11 04:04:21.416 EST] [RMANUtil.catalogBackup:487]  The cataloguing of backups RMAN error: could not get RMANUtil

    [Thread-18] [2015-11-11 04:04:21.416 EST] Exception [CloneRmanRestoreStep.executeImpl:491] rename files of data oracle.sysman.assistants.util.rmanEngine.RMANFatalErrorException: cataloguing of backups RMAN error

    [Thread-18] [2015-11-11 04:04:21.416 EST] [BasicStep.configureSettings:353] messageHandler being set=oracle.sysman.assistants.util.SilentMessageHandler@7080ed90

    [Thread-18] [2015-11-11 04:04:21.416 EST] [StepContext$ ModeRunner.run:2899]  The cataloguing of backups RMAN error

    oracle.sysman.assistants.dbca.backend.CloneRmanRestoreStep.executeImpl(CloneRmanRestoreStep.java:492)

    oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:259)

    oracle.sysman.assistants.util.step.Step.execute(Step.java:135)

    oracle.sysman.assistants.util.step.StepContext$ ModeRunner.run (StepContext.java:2883)

    java.lang.Thread.run(Thread.java:682)

    [Thread-18] [2015-11-11 04:04:21.417 EST] [SQLEngine.done:2278]  Called

    [Thread-18] [2015-11-11 04:04:21.417 EST] [SQLEngine.spoolOff:2124]  Setting off coil = /u01/app/oracle/cfgtoollogs/dbca/cdb1/CloneRmanRestore.log

    [Thread-18] [2015-11-11 04:04:21.418 EST] [Host.createStepSQLInterface:8605] sid = cdb1

    [Thread-18] [2015-11-11 04:04:21.418 EST] Cdb1 sidOrConnectString [Host.createStepSQLInterface:8606]

    [Thread-18] [2015-11-11 04:04:21.418 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: null

    [Thread-18] [2015-11-11 04:04:21.420 EST] Setting [InventoryUtil.getOUIInvSession:349] YES READ at ACCESSLEVEL_READ_LOCKLESS

    [Thread-18] [2015-11-11 04:04:21.420 EST] [OracleHome.getVersion:1010]  HomeInfo /u01/app/oracle/product/12.1.0.2/db_1,1

    [Thread-18] [2015-11-11 04:04:21.525 EST] [OracleHome.getVersion:1038]  OracleHome.server.getVersion Version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.525 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.525 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.525 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.526 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.526 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.526 EST] [SQLPlusEngine.getCmmdParams:225] m_home 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.526 EST] True for 112 > version [SQLPlusEngine.getCmmdParams:226]

    [Thread-18] [2015-11-11 04:04:21.526 EST] [SQLEngine.getEnvParams:612]  NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [Thread-18] [2015-11-11 04:04:21.527 EST] [SQLEngine.initialize:358]  SQLPLUS/OPEN process execing...

    [Thread-18] [2015-11-11 04:04:21.539 EST] M_bReaderStarted [SQLEngine.initialize:395]: false

    [Thread-18] [2015-11-11 04:04:21.539 EST] [SQLEngine.initialize:399]  From the wire drive...

    [Thread-18] [2015-11-11 04:04:21.541 EST] [CloneRmanRestoreStep.cancel:722]  Partially failed cleanup of the extracted files

    [Thread-18] [2015-11-11 04:04:21.549 EST] [SQLEngine.done:2278]  Called

    [Thread-18] [2015-11-11 04:04:21.549 EST] [CloneRmanRestoreStep.cancel:737]  RMAN Cleanup failed

    [Thread-18] [2015-11-11 04:04:21.549 EST] [CloneRmanRestoreStep.cancel:738]  ORA-12547: TNS: lost contact

    oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1739)

    oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:987)

    oracle.sysman.assistants.dbca.backend.CloneRmanRestoreStep.cancel(CloneRmanRestoreStep.java:725)

    oracle.sysman.assistants.util.step.StepContext$ ModeRunner.cancel (StepContext.java:2979)

    oracle.sysman.assistants.util.step.StepContext$ ModeRunner.run (StepContext.java:2940)

    java.lang.Thread.run(Thread.java:682)

    [Thread-18] [2015-11-11 04:04:21.550 EST] [CloneDBCreationStep.cancel:1178]  CloneDBCreationStep.cancel (): nodeList = null

    [Thread-18] [2015-11-11 04:04:21.550 EST] [SQLEngine.reInitialize:785]  The SQLEngine reset...

    [Thread-18] [2015-11-11 04:04:21.550 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.550 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.550 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.550 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.550 EST] [OracleHome.getVersion:991]  Called OracleHome.getVersion.  Current version: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.551 EST] [OracleHome.getVersion:1059]  The current Version of the inventory: 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.551 EST] [SQLPlusEngine.getCmmdParams:225] m_home 12.1.0.2.0

    [Thread-18] [2015-11-11 04:04:21.551 EST] True for 112 > version [SQLPlusEngine.getCmmdParams:226]

    [Thread-18] [2015-11-11 04:04:21.551 EST] [SQLEngine.getEnvParams:612]  NLS_LANG: AMERICAN_AMERICA. AL32UTF8

    [Thread-18] [2015-11-11 04:04:21.551 EST] [SQLEngine.initialize:358]  SQLPLUS/OPEN process execing...

    [Thread-18] [2015-11-11 04:04:21.565 EST] M_bReaderStarted [SQLEngine.initialize:395]: false

    [Thread-18] [2015-11-11 04:04:21.565 EST] [SQLEngine.initialize:399]  From the wire drive...

    [Thread-18] [2015-11-11 04:04:21.566 EST] [SQLEngine.initialize:448]  Waiting for m_bReaderStarted to be true

    [Thread-18] [2015-11-11 04:04:21.585 EST] [SQLEngine.done:2278]  Called

    [Thread-18] [2015-11-11 04:04:21.585 EST] [Oratab.getTempFile:805]  Oratab Temp: / tmp/oratab

    [Thread-18] [2015-11-11 04:04:21.586 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/product/12.1.0.2/db_1/dbs/orapwcdb1

    [Thread-18] [2015-11-11 04:04:21.586 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/product/12.1.0.2/db_1/dbs/initcdb1.ora

    [Thread-18] [2015-11-11 04:04:21.586 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/admin/cdb1/pfile/init.ora

    [Thread-18] [2015-11-11 04:04:21.588 EST] [CloneDBCreationStep.cancel:1225]  CloneDBCreationStep.cancel (): Jaqueline = false

    [Thread-18] [2015-11-11 04:04:21.588 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.588 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.588 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/oradata/cdb1/sysaux01.dbf

    [Thread-18] [2015-11-11 04:04:21.588 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.589 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.589 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/oradata/cdb1/system01.dbf

    [Thread-18] [2015-11-11 04:04:21.589 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.589 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.589 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/oradata/cdb1/undotbs01.dbf

    [Thread-18] [2015-11-11 04:04:21.589 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.589 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.589 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/oradata/cdb1/users01.dbf

    [Thread-18] [2015-11-11 04:04:21.590 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.590 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.590 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/oradata/cdb1/redo01.log

    [Thread-18] [2015-11-11 04:04:21.590 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.590 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.590 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/oradata/cdb1/redo02.log

    [Thread-18] [2015-11-11 04:04:21.590 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.591 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.591 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/oradata/cdb1/redo03.log

    [Thread-18] [2015-11-11 04:04:21.591 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.591 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.591 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/oradata/cdb1/control01.ctl

    [Thread-18] [2015-11-11 04:04:21.591 EST] [CommonAttributes.replaceVariables:1402] var2/u01/app/oracle

    [Thread-18] [2015-11-11 04:04:21.591 EST] [CommonAttributes.replaceVariables:1402] cdb1 var2

    [Thread-18] [2015-11-11 04:04:21.592 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/fast_recovery_area/cdb1/control02.ctl

    [Thread-18] [2015-11-11 04:04:21.612 EST] [SQLEngine.done:2278]  Called

    [main] [2015-11-11 04:04:21.613 EST] [SQLEngine.done:2278]  Called

    [main] [2015-11-11 04:04:21.613 EST] [Host.cleanup:3928]  Exit DBCA status is: 1

    [main] [2015-11-11 04:04:21.613 EST] [Host.cleanup:3931] checkpoint context oracle.sysman.assistants.util.CheckpointContext@54c9f997

    [main] [2015-11-11 04:04:21.614 EST] Setting [InventoryUtil.getOUIInvSession:349] YES READ at ACCESSLEVEL_READ_LOCKLESS

    [main] [2015-11-11 04:04:21.615 EST] [InventoryUtil.getHomeName:113] homeName = OraDB12Home1

    [main] [2015-11-11 04:04:21.615 EST] [Host.cleanup:3957] check point oracle.sysman.oic.oics.OicsCheckPoint@59a02097

    [main] [2015-11-11 04:04:21.639 EST] [OsUtilsBase.copyFile:1505]  OsUtilsBase.copyFile:

    [main] [2015-11-11 04:04:21.640 EST] [OsUtilsBase.copyFile:1553] * write files to complete destination...

    [main] [2015-11-11 04:04:21.640 EST] [OsUtilsBase.copyFile:1588] * copy of the file status: = true

    [main] [2015-11-11 04:04:21.640 EST] [OsUtilsBase.deleteFile:1803]  OsUtilsBase.deleteFile: /u01/app/oracle/cfgtoollogs/dbca/silent.log_2015-11-11_04-04-19-AM

    [Thread-3] [2015-11-11 04:04:21.644 EST] [DbcaCleanupHook.run:44]  Cleanup began

    [Thread-3] [2015-11-11 04:04:21.645 EST] [OracleHome.cleanupDBOptionsIntance:1671]  Dummy sid = null instance DB options

    [Thread-3] [2015-11-11 04:04:21.645 EST] [DbcaCleanupHook.run:49]  Cleanup

    Thanks for your tip, but in the meantime, I managed to create a database

    What I can say is that I have not touched the "/ etc/oracle/olr.loc" file. I completely uninstalled the software Oracle of this machine and started from the beginning again. It's the addidtional steps I did:

    1. I downloaded Xming to use the GUI Installation process (it helped me a lot, but I'm sure that this step is not necessary)

    Preliminary tests have shown something.  I did then:

    2. lack of space Swap--> so I created a swap file

    3 compat-libcap1 was absent. I tried to install it, but that has not worked.

    4. that's why I had to download the RPG - GPG - KEY Oracle, install it and remane RPM-GPG-KEY-oracle-ol7 to TR/MIN-GPG-KEY-oracle. Then I could install compat-libcap1

    5. the latest (and in my opinion the most important) step is to configure the file/etc/hosts. Firstly I had no entry for Oracle there (does not), then I used the private DNS provided by Amazon (also did not work) and then I used the private IP address, as shown in the AWS management console (which worked).

    After these steps, I was able to create a database.

  • Error when trying to use EUSM with OUD 11 g R2 PS3

    I'm trying to install had with oud 11.1.2.3 using a pluggable 12 c database.

    initial Setup works very well, including the registration of database with oud, but later I realized that express em12c had more them management, so I decided to use eusm cli, but so far I'm stuck with following error message.

    example command using eusm

    EUSM listDomains ldap_host = IAM.mydomain.com ldap_port = 1389 ldap_user_dn = "cn = Directory Manager' ldap_user_password eu1 = "

    == > Oud access log < ==

    [19/May / 2015:21:20:21-0300] CONNECT conn = 47 from = 192.168.56.102:26338 = 192.168.56.102:1389 = LDAP protocol

    [19/May / 2015:21:20:21-0300] Conn LINK REQ = op 47 = 0 msgID = 1 type = = dn = DIGEST-MD5 SASL mechanism "" version = 3 "

    [19/May / 2015:21:20:21-0300] Conn LINK RES = op 47 = 0 msgID = 1 result = 14 etime = 0

    [19/May / 2015:21:20:21-0300] Conn LINK REQ = op 47 = 1, msgID = type 2 = = dn = DIGEST-MD5 SASL mechanism "" version = 3 "

    [19/May / 2015:21:20:21-0300] "" "Op de RESEARCH REQ conn =-3 = 202 msgID = 203 base ="cn = OracleContext"scope = sub filter =" (uid = cn = Directory Manager) "uploading =" * +,

    [19/May / 2015:21:20:21-0300] SEARCH RES conn = - 3 op = 202 msgID = 203 result = 0 = 0 =-1432081221870 etime nentries

    [19/May / 2015:21:20:21-0300] "" "Op de RESEARCH REQ conn =-3 = 203 msgID = 204 base ="cn = OracleSchemaVersion"scope = sub filter =" (uid = cn = Directory Manager) "uploading =" * +,

    [19/May / 2015:21:20:21-0300] SEARCH RES conn = - 3 op = 203 msgID = 204 result = 0 = 0 =-1432081221871 etime nentries

    [19/May / 2015:21:20:21-0300] "" "Op de RESEARCH REQ conn =-3 = 204 msgID = 205 base ="cn = schema"scope = sub filter =" (uid = cn = Directory Manager) "uploading =" * +,

    [19/May / 2015:21:20:21-0300] SEARCH RES conn = - 3 op = 204 msgID = 205 result = 0 = 0 =-1432081221872 etime nentries

    [19/May / 2015:21:20:21-0300] "" "Op de RESEARCH REQ conn =-3 = 205 = 206 basis msgID ="cn = subschemasubentry"scope = sub filter =" (uid = cn = Directory Manager) "uploading =" * +,

    [19/May / 2015:21:20:21-0300] SEARCH RES conn = - 3 op = 205 msgID = 206 result = 0 = 0 =-1432081221873 etime nentries

    [19/May / 2015:21:20:21-0300] "" "Op de RESEARCH REQ conn =-3 = 206 msgID = 207 base ="dc = mydomain, dc = com"scope = sub filter =" (uid = cn = Directory Manager) "uploading =" * +,

    [19/May / 2015:21:20:21-0300] SEARCH RES conn = - 3 op = 206 msgID = 207 result = 0 = 0 =-1432081221874 etime nentries

    [19/May / 2015:21:20:21-0300] "" "Op de RESEARCH REQ conn =-1 = 207 msgID = 208 base ="cn = config"scope = sub filter =" (uid = cn = Directory Manager) "uploading =" * +,

    [19/May / 2015:21:20:21-0300] SEARCH RES conn = - 1 op = 207 msgID = 208 result = 0 = 0 =-1432081221875 etime nentries

    [19/May / 2015:21:20:21-0300] Conn LINK RES = op 47 = 1, msgID = result 2 = 49 authFailureID = authFailureReason 1245385 = "" the server was not able to find all the user input for the username provided by cn = Directory Manager ' etime = 8 "

    == > Journal of debugging oud < ==

    [19/May / 2015:21:20:21-0300] 21 thread caught error = {Worker Thread 16 (148)} threadDetail = {parentThread = (1) hand isDaemon = false ClientConnection = operation 192.168.56.102:1389 192.168.56.102:26338 LDAP client connection = BindOperation (connID = 47, opID = 1, Protocol = "LDAP 3, dn =, authType = SASL")} method = {evaluateFinalStage(SASLContext.java:1089)} caught={javax.security.sasl.SaslException: DIGEST-MD5: ne peut pas acquérir le mot de passe pour le cn = Directory Manager dans le Royaume) {: iam.mydomain.com}

    Stack trace:

    at com.sun.security.sasl.digest.DigestMD5Server.validateClientResponse(DigestMD5Server.java:599)

    at com.sun.security.sasl.digest.DigestMD5Server.evaluateResponse(DigestMD5Server.java:244)

    at org.opends.server.extensions.SASLContext.evaluateResponse(SASLContext.java:324)

    at org.opends.server.extensions.SASLContext.evaluateFinalStage(SASLContext.java:1059)

    at org.opends.server.extensions.DigestMD5SASLMechanismHandler.processSASLBind(DigestMD5SASLMechanismHandler.java:210)

    to org.opends.server.extensions.SASLBindOperation$ LocalSASLBindOperation.processSASLBind (SASLBindOperation.java:294)

    to org.opends.server.extensions.SASLBindOperation$ LocalSASLBindOperation.processLocalBind (SASLBindOperation.java:195)

    to org.opends.server.extensions.SASLBindOperation$ LocalSASLBindOperation.access$ 000 (SASLBindOperation.java:162)

    at org.opends.server.extensions.SASLBindOperation.execute(SASLBindOperation.java:138)

    at org.opends.server.core.BindOperationBasis.run(BindOperationBasis.java:1003)

    at org.opends.server.extensions.TraditionalWorkerThread.run(TraditionalWorkerThread.java:166)

    == > access < ==

    [19/May / 2015:21:20:21-0300] DISCONNECT conn = 47 reason = 'disconnect a customer. "

    This is a known bug. There is a patch for oud 11.1.2.2.x, but so far a patch were not delivered for oud 11.1.2.3.x

    in order to get the work of the Ma, I had to deploy the solution described in the

    Oracle Support Document 2001851.1 (Oracle 12 c Cloud control EM SASL connection to OUD 11 G Instance) is located at: https://support.oracle.com/epmos/faces/DocumentDisplay?id=2001851.1

  • 'Invalid Thread access' - WSDL in OSB consumption

    Hello

    Creating a business service I'm trying to define the type of service using WSDL. I get the error "Access thread not valid" with no further details.

    The URI is available in my browser and works when I import it in jdeveloper. through soapUI, I can able to test this service.

    The interesting point here is that I am not able to ping the server. (cmd-> name of ping service). My doubt is here (as to invoke third-party service) should they open any port for us or not.

    Please me tips

    Thank you

    http://wiki.Eclipse.org/FAQ_Where_can_I_find_that_elusive_.Log_file%3F

  • Plugin causing errors

    I am writing a plugin that Hyperic can auto detect some Citrix services are running on my servers.  Here is the error message that I do not get in the Agent log.  I have also attached my plugin.  Can someone help me on where I was wrong?  This is my first attempt at writing a plugin.

    2009-01-15 02:51:10, 393 INFO [Thread-0] [ProductPluginManager] loading plugin: citrixpresentationserver - plugin.xml
    2009-01-15 02:51:10, ERROR 408 [Thread-0] [AgentDaemon] plugins initialization error
    org.hyperic.hq.product.PluginException: missing attribute of class plugin
    at org.hyperic.hq.product.pluginxml.PluginParser.parse(PluginParser.java:88)
    at org.hyperic.hq.product.pluginxml.PluginData.getInstance(PluginData.java:317)
    at org.hyperic.hq.product.ProductPluginManager.registerPluginJar(ProductPluginManager.java:847)
    at org.hyperic.hq.product.ProductPluginManager.registerPluginJar(ProductPluginManager.java:659)
    at org.hyperic.hq.product.ProductPluginManager.registerPlugins(ProductPluginManager.java:747)
    at org.hyperic.hq.agent.server.AgentDaemon.startPluginManagers(AgentDaemon.java:587)
    at org.hyperic.hq.agent.server.AgentDaemon.start(AgentDaemon.java:700)
    to org.hyperic.hq.agent.server.AgentDaemon$ RunnableAgent.run (AgentDaemon.java:769)
    at java.lang.Thread.run (unknown Source)

    > Here's a question tho... Yes Presentation Server
    > itself does not work on a service windows only.
    > It is a grouping of services. So, if I use
    > that you kindly written I don't know what to
    > enter to replace YourCitrixPresentationServiceName
    > part.

    MM, you should only specify a single service. Autodiscovering software and audit services are two different tasks. Then, choose a service from the list and replace the property.
    You can specify more than one service.



    value="PID.service.EQ=${service_name},PID.service.EQ=${service2_name}"/ >

    For more details, please see:
    http://support.Hyperic.com/display/Sigar/PTQL

    See you soon,.
    Mirko

  • unexpected end of the subtree of the log file errors

    I upgraded HQ 4.0.0 to 4.0.2 and now I'm getting a lot of these messages in the server.log:
    2009-01-03 09:57:32, 074 WARN [Thread-19] [org.hyperic.hq.measurement.server.session.AvailabilityManag
    measure erEJBImpl@656] Avail came within 31 days of late, dropping: timestamp = measId 1228302000000 = 4833
    2 the value = 1
    2009-01-03 09:57:32, ERROR 096 [Thread-19] [org.hibernate.hql.PARSER@33] < AST >: 0:0: unexpected end of subtree
    2009-01-03 09:57:32, ERROR 098 [Thread-19] [org.hyperic.hq.measurement.server.session.AvailabilityManag
    erEJBImpl@581] unexpected end of subtree [from org.hyperic.hq.measurement.server.session.AvailabilityD
    [ELA ataRLE WHERE rle.availabilityDataId.measurement () AND rle.endtime > =: endtime]
    org.hibernate.hql.ast.QuerySyntaxException: unexpected end of subtree [from org.hyperic.hq.measurement
    . server.session.AvailabilityDataRLE ELA WHERE rle.availabilityDataId.measurement () AND rle.endtime
    [> =: endtime]
    Then follows the exception stack trace.
    It seems that there is a problem with the database, but I don't know where to look.
    I use CentoOS 5.2 and Postgresql 8.1
    The system has been running out of space before upgrade and postgresql does not shut down cleanly.
    Please notify.
    VR

    Yes, it's definitely a bug.  It will be fixed so that it is handled more gracefully in the next version.  Just to clarify if the bug is cosmetic where he fills the newspapers.  You do not loose the data that would not really expect in this case.

    What about 150 agents, you're probably starting to push the max of the version of the org.  The EA version manages many agents much more efficiently, but be that as it may, you are better off with HQ 4.0 compared to 3.2.  If you don't care the measuring points then remove spools and go from there.  It should be fine after that.

  • HHQ-1835 is so-called correction of the error recover system information: DRUNK

    On my system to sparc solaris 9 customers seems to start upwards well answer all questions (3.2.1), but im getting the same error messages in this disorder HHQ-1835 ticklet which, according to my interpretation, seems to have fixed beem. I run a patch or something?
    I asked a question in the forum bug saw this. So I concluded that sigar forum.

    Please get give clues to what I can do to solve this problem.

    On a number of my Sun Microsystems sun4u systems, I have installed the 3.2.1 client and the answers start all worked and customer starts, but does NOT autoinventory on the server to send anything.

    What is happening on sparc Solaris 5.9 (os) systems.

    2008-08-04 15:29:22, 764 [main] [AutoinventoryCommandsServer] Autoinventory controls server INFO has started
    2008-08-04 15:29:22, ERROR 942 [Thread-0] [scan] overall error during the inventory scan: org.hyperic.hq.autoinventory.AutoinventoryExc
    Reconstructed: Error retrieving information system: no such file or directory
    org.hyperic.hq.autoinventory.AutoinventoryException: Error retrieving information system: no such file or directory
    at org.hyperic.hq.autoinventory.Scanner.detectPlatform(Scanner.java:120)
    at org.hyperic.hq.autoinventory.Scanner.start(Scanner.java:154)
    at org.hyperic.hq.autoinventory.ScanManager.mainRunLoop(ScanManager.java:141)
    to org.hyperic.hq.autoinventory.ScanManager.access$ 000 (ScanManager.java:41)
    to org.hyperic.hq.autoinventory.ScanManager$ 1.run(ScanManager.java:107)
    Caused by: org.hyperic.hq.product.PluginException: Error retrieving information system: no such file or directory
    at org.hyperic.hq.plugin.system.SigarPlatformDetector.getPlatformResource(SigarPlatformDetector.java:306)
    2008-08-04 15:29:22, 961 WARN [Thread-0] [AutoinventoryCommandsServer] AICommandsServer: analysis is complete, but we could not even detec
    t the platform, so nothing will be posted on the server. Here is some information about the error that has occurred:
    Severe failure: org.hyperic.hq.autoinventory.AutoinventoryException: Error retrieving information system: no such file or directory
    org.hyperic.hq.autoinventory.AutoinventoryException: Error retrieving information system: no such file or directory

    In addition, I see this:
    2008-08-01 16:12:53, 228 INFO [hand] [AgentConnection] 127.0.0.1--> bizapp:getCAMServer
    2008-08-01 16:12:53, ERROR 256 [Thread-0] [AutoinventoryCommandsServer] cannot send data autoinventory server platform, sleepin
    g for 33 seconds before trying again. Error: null
    2008-08-01 16:12:53, 257 INFO [Thread-3] [ConfigPopulateThread] from config fill the thread
    2008-08-01 16:13:27, ERROR 009 [Thread-0] [AutoinventoryCommandsServer] cannot send data autoinventory server platform, sleepin
    g for 50 seconds before trying again. Error: null
    2008-08-01 16:14:17, ERROR 639 [Thread-0] [AutoinventoryCommandsServer] cannot send data autoinventory server platform, sleepin
    g for 75 seconds before trying again. Error: null
    2008-08-01 16:15:33, ERROR 589 [Thread-0] [AutoinventoryCommandsServer] cannot send data autoinventory server platform, sleepin
    g to 113 seconds before trying again. Error: null

    More information:

    2008-08-01 16:19:30, 117 [main] INFO [TrackerThread] event report the size of batch the value 100
    2008-08-01 16:19:30, 175 [main] [MeasurementCommandsServer] measure orders INFO server has started
    2008-08-01 16:19:30, INFO 175 [Thread-1] [ConfigPopulateThread] from config fill the thread
    2008-08-01 16:19:30, 179 WARN [Thread-0] [AutoinventoryCommandsServer] AICommandsServer: analysis is complete, but we could not even detec
    t the platform, so nothing will be posted on the server. Here is some information about the error that has occurred:
    Severe failure: org.hyperic.hq.autoinventory.AutoinventoryException: Error retrieving information system: no such file or directory
    org.hyperic.hq.autoinventory.AutoinventoryException: Error retrieving information system: no such file or directory

    If this is indeed the same problem, the fix (including the link to download the required file) for 3.2.1 is noticed in the ticket to http://jira.hyperic.com/browse/HHQ-1835 , but the fix is also included in 3.2.2 (and later versions).

Maybe you are looking for

  • USB and a wireless keyboard

    Hello I'm not very technical, as you can tell, but I have some assistance please. I just bought the multimedia wireless keyboard for my son and what confuses me, is if I need to remove the USB when it has finished using the pc or I just leave it plug

  • Is it a live windows scam e-mail ask user name and password.

    I received an e-mail from windows live ask my date of birth and country of user name and password. Is this a scam / should I give this information?

  • Windows Live Mesh can not pass the verification of the image in the journal in.

    Problem installing Windows Live Mesh. Under Vista, I installed all available updates. I installed Live Mesh and restarted the computer, but it will not start correctly. He asked me to sign, I do, then it goes to a screen of image verification. Type o

  • SX20 via profile sure MRA

    Hello It is necessary to have first registered in Callmanager with secure profile SX20 before before moving out with ARM?

  • the keyboard of my laptop, do strange things when I type

    Hello When I type on my laptop especially when I'm on the internet internet letters or words go to the rear for.   for example when I type How are you today the word today goes behind how or are.  This always occurs. I changed the keyboard, but the p