Status of an instance shows "undefined"

Hi
Any idea what might be the reason for an instance to show the status "undefined" and what could be done to get it to "Active"?
I tried several times to acivate, but each time it goes to the status "undefined".
Any help in this regard will be appreciated
Regards
Shruthi

Hi Shruthi,
Could you hoover over the exclamation mark next to the status icon to see the error message? Most probably it comes from AWS. If so, you can get the error code from the message and search by it in http://docs.aws.amazon.com/AWSEC2/latest/APIReference/api-error-codes.html
Best regards,
Stanimir

Similar Messages

  • Oracle Instance shows connected,Yet am ORA-01012: not logged on

    Hi experts,
    Please help in log in to my database, which unfortunately was happening an hour before, but now it is not working
    In between I only did a change in some permission stuff for my base directory, but later brought it back to original permissions.
    Still it is haunting me..
    I have set up my SID/HOME/PATH perfectly, tried to check processes at OS level, they are less, still nothing is happening though database is up and running.
    I can see it at OS level and through ALert log..
    ==================
    oracle@dap-csw-ora01 /home/oracle > ps -ef|grep pmon
    oracle 3145946 1 0 18 feb - 0:44 asm_pmon_+ASM1
    oracle 7995430 1 0 18 feb - 0:50 ora_pmon_adobe_2
    oracle 13828212 11141232 0 14:59:09 pts/0 0:00 grep pmon
    oracle 7471386 1 0 18 feb - 0:57 ora_pmon_fxss_1
    oracle@dap-csw-ora01 /home/oracle > sqlplus
    SQL*Plus: Release 11.2.0.3.0 Production on Thu Feb 21 14:59:12 2013
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter user-name: /as sysdba
    Connected.
    SQL> show user
    USER is "SYS"
    SQL> select instance_name,status from v$Instance;
    select instance_name,status from v$Instance
    ERROR at line 1:
    ORA-01012: not logged on
    Process ID: 0
    Session ID: 0 Serial number: 0

    CKPT wrote:
    Now I understood,..it is not a problem with permission something else is making this mess..though unknown..
    I bounced one of the database after taking permission from apps team, Now it works perfect...no issue whatsoever..
    But I want to know the reason..I dont want to face it any more...Whenever oracle installs[OUI], It knows well what the permissions to be assigned and what needed.
    You should not disturb them, What are the users, groups, executable, read, write permissions earlier and after changes and now?
    And i interestingly wanted to know why you wanted to test such things on production. Its like playing with fire so be cautious or else it costs a lot :)Basha,
    I don't think that there was any other way for the OP to solve the error. Either he could wait (which doesn't help normally in this error) or had to bounce the db, which he did. Also, with permission he meant, telling to the App team and than going for a bounce. I can't a mentioning of changing permissions anywhere .
    Aman....

  • Have 2 airport extreme base stations connected in chain.  Airport utility shows slave unit without power. However, power is on slave unit, but status lights do not show up at all. Small green lights at each back port blink.  Anyone have any ideas?

    Have 2 airport extreme base stations connected in chain.  Airport utility shows slave unit without power. However, power is on slave unit, but status lights do not show up at all. Small green lights at each back port blink.  Anyone have any ideas?

    Unfortunately, you are describing the symptoms of an AirPort Extreme with a failing (or failed) internal power supply.
    As a last resort, try a Factory Default Reset on the AirPort Extreme as follows:
    Power off the AirPort by pulling the power cord
    Wait a minute or two
    Hold in the reset button first, and keep holding it in for an additional 8-10 seconds while you simultaneously plug the power back into the AirPort
    Release the reset button and allow a full minute for the AirPort to restart
    Now try to configure the AirPort again.  If you continue to see the same symptoms as before, the AirPort will need to be replaced.

  • Status Item image not showing

    I have a status Item app andI am using a custom view. My image in the status item has been showing and working until recently. Is it something I have changed or maybe it was a bug that it was showing and now it fix. Please Help me fix this. Here is the relevant code:
    AppDelegate.h
    #import <Cocoa/Cocoa.h>
    @class View;
    @interface AppDelegate : NSObject <NSApplicationDelegate>{
        NSStatusItem *statusItem;
        View *_View;
        NSImage *statusImage;
        NSImage *statusHighlightImage;
        NSMenu *statusMenu;
    - (IBAction)shutdown:(id)sender;
    - (IBAction)restart:(id)sender;
    - (IBAction)sleep:(id)sender;
    - (IBAction)about:(id)sender;
    @property (assign) IBOutlet NSWindow *aboutWindow;
    @property (nonatomic, strong, readonly) View *View;
    @property (nonatomic, strong, readonly) NSStatusItem *statusItem;
    @end
    AppDelegate.m
    - (void)awakeFromNib {
        statusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain];
        NSBundle *bundle = [NSBundle mainBundle];
        statusImage = [[NSImage alloc] initWithContentsOfFile:[bundle pathForResource:@"icon" ofType:@"png"]];
        statusHighlightImage = [[NSImage alloc] initWithContentsOfFile:[bundle pathForResource:@"hicon" ofType:@"png"]];
        View *view = [View new];
        view.image = statusImage;
        [statusItem setView:view];
        [statusItem setToolTip:@"Power Bar"];
        view.target = self;
        view.action = @selector(leftClick:);
        view.rightAction = @selector(showMenu:);
        [view release];
        [statusItem setImage:statusImage];
        [statusItem setAlternateImage:statusHighlightImage];
        [statusItem setMenu:statusMenu];
        [statusItem setHighlightMode:YES];
        [statusItem setView:[[[View alloc] init] autorelease]];
        [statusItem setTarget:self];
    - (void)leftClick:(id)sender {
        NSLog(@"Left!");
    - (void)showMenu:(id)sender {
        NSLog(@"Right!");
        [self.statusItem popUpStatusItemMenu:statusMenu];
    - (void)dealloc
        [[NSStatusBar systemStatusBar] removeStatusItem:self.statusItem];
        [super dealloc];
    View.h
    #import <Cocoa/Cocoa.h>
    @interface View : NSView {
        NSImage *image;
        NSImage *alternativeImage;
        id target;
        SEL action, rightAction;
    @property (retain) NSImage *image;
    @property (retain) NSImage *alternativeImage;
    @property (assign) id target;
    @property (assign) SEL action, rightAction;
    @end
    View.m
    @implementation View
    @synthesize image, alternativeImage, target, action, rightAction;
    - (void)mouseUp:(NSEvent *)event {
        if([event modifierFlags] & NSControlKeyMask) {
            [NSApp sendAction:self.rightAction to:self.target from:self];
        } else {
            [NSApp sendAction:self.action to:self.target from:self];
    - (void)rightMouseUp:(NSEvent *)event {
        [NSApp sendAction:self.rightAction to:self.target from:self];
    - (void)dealloc {
        self.image = nil;
        [super dealloc];
    - (void)drawRect:(NSRect)rect {
        [self.image drawInRect:self.bounds fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1];
        [self.alternativeImage drawInRect:self.bounds fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1];

    Please Help

  • Error in getting process status for oracle instance: instance12- component: coreapplication_obisch1

    Hi,
    while uploading new rpd getting error message in enterpriise manger
    Error in getting process status for oracle instance: instance12- component: coreapplication_obisch1,chekced in the dignostic log found above mentioned error
    what can be cause of the probelm
    thanks

    Hi,
    1.Try using the sample rpd of it works, then the problem with the new rpd.
    2. Restart the service once then upload the new rpd.
    Regards,
    VG

  • Workflow status column is not showing the internal status values (Inprogress, Started, Suspended, Completed)

    I've created SPD 2013 workflow and deployed them onto that document library, This workflow execute on item update event. When updating library item, workflow triggered and completed successfully but workflow status column is not
    showing the Internal Status values rather it is showing the Stage information. I've unchecked the "Automatically update stage name on workflow status" and republished the workflow. After that, it is still showing the stage information. Any help
    is really appreciated.

    Hi Venkadesh,
    It is by design that 2013 workflow will show stage name in the workflow status column when
    Automatically update the workflow status to the current stage name is checked.
    And the workflow status column will be blank when Automatically update the workflow status to the current stage name is unchecked.
    For existing workflows, the workflow status will still exists with the previous values after unchecking Automatically update the workflow status to the current stage name.
    We can use Set Workflow Status action to update the workflow status value based on our needs.
    Best regards,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Status of ASM instance

    Hi ,
    when i fired
    select status, instance_name from v$instance ;
    started ASM+
    my all diskgroups are mounted ...
    from above input i have following consideration ...
    1.ASM instance is always in NOMOUNT stage(as it is having only one stage to go ) but it mounts all the disks and it is available(Read,write) for database...
    PLZ correct me if i m wrong.......

    Santosh Pradhan wrote:
    Hi ,
    when i fired
    select status, instance_name from v$instance ;
    started ASM+
    my all diskgroups are mounted ...
    from above input i have following consideration ...
    1.ASM instance is always in NOMOUNT stage(as it is having only one stage to go ) but it mounts all the disks and it is available(Read,write) for database...
    PLZ correct me if i m wrong.......Hi, did you are using RAC? Or you are installed standalone?
    ASM instance is mounted, it means all disk groups is mounted.
    If diskgroups is mounted then ASM Instance is mount state.
    Can you paste here result of ,
    export ORACLE_SID=+ASM
    sqlplus / as sysasm
    sql> select instance_name, status from v$instance; Mahir

  • Mozilla Firefox showing undefined parameter on paypal cart:

    Some parameters on the Paypal cart are showing undefined for Firefox browser. For example if you add to cart from the following page: [http://www.coolgiftsusa.com/car_frames/metal_engraved_frames.php http://www.coolgiftsusa.com/car_frames/metal_engraved_frames.php] http://www.coolgiftsusa.com/car_frames/metal_engraved_frames.php The result will be: Engraved License Frame |Black Top Holes |Font Color: undefined |Font: undefined |Top: TOP LINE |Bottom: BOTTOM LINE . I tested with other browsers and the all parameters show correctly. Does anyone knows how to fix this? thanks

    What do you see instead of the padlock?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    You may be using a theme or extension that prevents the "[[Site Identity Button|Site Identity Button]]" (globe/padlock) on the location bar from working properly.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Process Instance shows status as "Running" for days/months

    We have a wli proces deployed in cluster environment (WLI 8.1 SP4). The process is timer triggered every day. When we looked at the process monitoring section in wliconsole, we found that there were some process instances triggered a month back still showing the status as "Running". But the process actually ran to completion during those instances.
    Is it a known issue? Another note is that the process uses an XA driver pool for querying a database and retrieves records.
    Edited by elangosv at 05/01/2007 9:09 AM

    Hi Michael,
    thanks for your reply
    I already read this note, unfortunately everything is configured correctly so far.
    Release Info:
    SAP_ABA     700      0008     Cross-Application Component
    SAP_BASIS  700      0008     SAP Basis Component
    ST-PI  2005_1_700    0002     SAP Solution Tools Plug-In
    ST         400      0006     SAP Solution Manager Tool
    ST-SER 700_2006_1 0003     SAP SolMan Service Tools
    ST-ICO     150_700   0003     SAP Solution Manager
    ST-A/PI     01H_CRM500     Application Servicetools for
    My Checklist:
    -  any Server is "checked" (also "only central system...")
    -  SCOT is configured
    -  Background dispatcher and central system dispatcher started
    -  Mail sending from SolMan (CEN) works when testing from SBWP in both clients 003 and 000
    I suppose SAP has not realized the problem still exists in Netweaver 2004s
    Nevertheless the coding corrections metioned within the note exist in my function method
    Can you explain me the interaction between "background dispatcher" and "central system dispatcher" (is there one?) ; or rather the interaction between the "central system disptacher" and "auto reaction methods"...
    I couldn´t find sufficient information so far.
    Looking forward to your reply.
    Dom

  • In portal it shows both status in bex it shows current

    Hi experts,
    Can anyone please tell me when i run sales order report it shows (current)Booked status in BW(BEX) but in portal it shows open and Booked status(it should show only Booked status).Thanks

    Hi Rohit,
    As per your suggestion i have removed high value from filter and then checkd CRMSUBTAB in ERP  it shows an entry CRS_MATERIAL_EXTRACT
    Entries in ERP-table CRMSUBTAB
    Client
    User
    Object Name Downloaded
    Up-or downloaded
    object class
    Function Module name
    CRM
    D
    MATERIAL
    CRS_MATERIAL_EXTRACT
    Also find the entries in CRM-table CRMSUBTAB
    Entries in CRM-table CRMSUBTAB
    Client
    User
    Object Name Downloaded
    Up-or downloaded
    object class
    Function Module name
    CRM
    ADPTESTMBDOC
    D
    ADPTEST
    ADPTST_EXTRACT_MODULE
    CRM
    ADPTESTMBDOC
    U
    ADPTEST
    CRM_ADPTESTMBDOC_LOAD_PROXY
    CRM
    BUAG_MAIN
    D
    BUPA
    CRM_BUAG_MAIN_EXTRACT_GUIDS
    CRM
    BUPA_MAIN
    D
    BUPA
    CRM_BUPA_MAIN_EXTRACT_GUIDS
    CRM
    BUPA_REL
    D
    BUPA
    CRM_BUPA_REL_EXTRACT_GUIDS
    CRM
    CMDOC_NOTIFY
    D
    CMDOC_NOTIFY
    CRM_CM_EXTRACT_GUIDS
    CRM
    VEND_MAIN
    D
    BUPA
    CRM_BUPA_MAIN_EXTRACT_GUIDS
    After that i did material replication but it still shows block size 0

  • Editing iChat status menu doesn't show in menubar icon

    Instead of having various status menu options ("surfing the web", "at home", "out to lunch", "in a meeting:", etc.) I prefer to edit the list down to just "available" and "away"
    When I edit the status menu from the buddy list drop down (by deleting the other options) my changes are reflected in the buddy list. However, the menubar icon still shows all of the preset options "surfing the web" etc.
    Does anyone else notice this? Is this expected behaviour?

    I later went into my com.apple.iChat.plist file and found two variables - "CustomAvailableMessages" and "CustomAwayMessages". After deleting all but the first blank line, they went away. (Make sure you make a backup!)
    I also deleted them from com.apple.iChat.StatusMessages.plist file.
    It was tricky, but I finally managed to get it so I only have available and away (in addition to the current iTunes song) as away messages in my menu bar. After I deleted the above, I had to go in and delete my custom edited away/available messages in the buddy list menu.
    MAKE SURE YOU MAKE A BACKUP OF THOSE FILES BEFORE YOU TINKER WITH THEM. You can use TextEdit I believe, but I use PlistEditPro to edit them.

  • Module status on LMS is showing as incomplete - even after the user has completed the module.

    Hi Folks,
    Hope you are all keeping well! I have a bit of a problem here. On a number of modules that were developed using presenter - and custom animation (including click next to continue) etc etc, the LMS is not showing the module status as complete - even AFTER the user had comleted the module and closed. This problem has been noticed only when the user uses the CLICK NEXT or click this part of the screen to continue.
    When the user navigates using the presenter control buttons - to navigate the training content that is, the LMS is correctly showing as the module has been completed.
    The problem I am having is that - is there any way to make presenter detect a click within a slide (user click to navigate from within a slide) and thereby register it as a valid module completion?
    Thanks in advance folks,
    Kind Regards,
    Alex.

    Hi Shubi,
    Thanks for you quick reply.
    Shubhi Shukla Dubey wrote:
    Hi Alex,
    Which LMS server you are using?  Secondly what is the Setting in Quiz>Reporting tab is it SCORM 1.2,2004 or Aicc.
    You want status on basis of user clicks then please make sure that Report data is set to "Slide view =100%" (or whatever precentage you want) and  Report Pass/Fail set to "Complete/ Incomplete."
    Thanks,
    Shubhi
    LMS = cornerstone on demand. It has been customised to suit the company requirements, Reporting tab is SCORM 1.2   
    To circumvent the issue I have changed the % view to 0% so in theory when the user launches even one slide / page - it will set it to report as status complete.
    However this is not a viable solution on content critical modules....dont you think so?
    Ideally I would like to get to the bottom of why a button within the module (which is able to navigate between pages) is not being able to report / set / increment the completion status counter.
    Thanks and Kind Regards,
    Alex.

  • Status Bar does not show editor details

    In JDeveloper the Status bar shows editor information such as line and column number which helps identify where a problem is.
    This appears to not be working in Raptor. There is an "Editor" tag in the status bar, but no details.

    Issue is resolved. Found another update folder in the app manager, after that update the issue is now resolved.

  • Excel Report instance showing blank (from Crystal report)

    Hi,
    We are uisng BOXI 3.1. When user login to infoview and see the report instance (Crystal report) for first time it shows blank and it opens in the same infoview page. Once they log off and logback in then they open report instance they are able to see the data.
    We are using excel 2003. Is this bug or something we need to configure on server side.
    Thanks,
    Nimesh.

    Hi,
    I observed one more thing.
    it is opening Excel within a Frame in their Infoview Browser.
    We are using IE 7 and excel 2003.
    On some workstation its opening in new windows it looks like its working fine there. So if its opening in same infoview browser it giving trouble.
    Is there any setting i need to do on client machin to open in new window.
    Thanks.

  • Status BLOCKED for instance - is it bad?

    Hi,
    1st of all please forgive me if such a topic exists being solved, give me a link then, I could't find...
    1) I encountered strange problem when issuing lsnrctl status (the problematic lines are bold):
    /home/oracle> lsnrctl status
    LSNRCTL for Solaris: Version 10.1.0.3.0 - Production on 16-JAN-2007 21:16:16
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ora)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Solaris: Version 10.1.0.3.0 - Production
    Start Date 03-DEC-2006 07:47:28
    Uptime 44 days 13 hr. 28 min. 47 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u01/app/oracle/OraHome_1/network/admin/listener.ora
    Listener Log File /u01/app/oracle/OraHome_1/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=a)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=a)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=a)(PORT=2100))(Presentation=FTP)(Session=RAW))
    Services Summary...
    Service "B" has 1 instance(s).
    Instance "B", status READY, has 1 handler(s) for this service...
    Service "BXDB" has 1 instance(s).
    Instance "B", status READY, has 1 handler(s) for this service...
    Service "Oracle8" has 1 instance(s).
    Instance "ORCL", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "d.zone1" has 1 instance(s).
    Instance "d", status UNKNOWN, has 1 handler(s) for this service...
    Service "a" has 3 instance(s).
    Instance "a", status UNKNOWN, has 1 handler(s) for this service...
    Instance "a", status READY, has 1 handler(s) for this service...
    Instance "a", status BLOCKED, has 1 handler(s) for this service...
    Service "aXDB" has 1 instance(s).
    Instance "a", status READY, has 1 handler(s) for this service...
    The command completed successfully
    Is this state ok? I mean: are these three instances at the same time good? And what does it mean?
    When, for example, I try to use exp I get error:
    EXP-00056: ORACLE error 1033 encountered
    ORA-01033: ORACLE initialization or shutdown in progress
    and I think the problem is in these 3 instances. My listener.ora:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/OraHome_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = d.zone1)
    (ORACLE_HOME = /u01/app/oracle/OraHome_1)
    (SID_NAME = d)
    (SID_DESC =
    (GLOBAL_DBNAME = Oracle8)
    (ORACLE_HOME = /u01/app/oracle/OraHome_1)
    (SID_NAME = ORCL)
    (SID_DESC =
    (GLOBAL_DBNAME = a)
    (ORACLE_HOME = /u01/app/oracle/OraHome_1)
    (SID_NAME = a)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ora)(PORT = 1521))
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    2) And one more: my listener.log is now 1260M big. Can I rename it to e.g. listener.old and create new one (as oracle user: touch listener.log)? Do I have to stop listener?
    Thanks in advance, if more info is needed, give me a sign.
    Reveler
    Message was edited by:
    reveler

    Yeap, I've restarted lsnrctl. And I can see the new file is growing, so this problem is solved, thanks again.
    As to sqlplus: it seems to work ok:
    ==========================
    /home/oracle> sqlplus / as sysdba
    SQL*Plus: Release 10.1.0.3.0 - Production on Wed Jan 17 15:17:45 2007
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Release 10.1.0.3.0 - Production
    ==========================
    The problem occurs if I try eg.:
    ==========================
    /home/oracle> exp
    Export: Release 10.1.0.3.0 - Production on Wed Jan 17 15:19:35 2007
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Username: sys
    Password:
    EXP-00056: ORACLE error 1033 encountered
    ORA-01033: ORACLE initialization or shutdown in progress
    ==========================
    In fact our application connecting to "a" works well, no user has reported a problem. But these 3 instances are still a stone in my eye :) and I'm not sure if in the future other application won't say "sorry", like exp says it now....
    Thanks for help,
    Reveler

Maybe you are looking for