Log.0000000001: log file open failed

I have been seeing an error off and on recently where my app will go along just fine writing to dbxml - and then for no apparent reason, blow up with
log.0000000001: log file open failed: No such file or directory
PANIC: No such file or directory
When I go look - there is indeed no log.00000001 in my dbxml directory.
What is the story with log.00000001? When is it created? What would cause this creation to fail. I have seen this problem on both an XP system and a Unix system.
I think I have made this problem go away by manually creating an empty log.0000001 file before I start my app - but this seems bogus.
Any tips appreciated

Hi,
If you have multiple applications or processes using Berkeley DB XML (including our utility programs) you may have set up a separate log directory for your log files or they simply were created in another directory. For this reason you may want to consider using a DB_CONFIG file and setting the location for your log files there.
For more information about this please look at these references:
http://www.sleepycat.com/docs/ref/env/db_config.html
DB_CONFIG
http://www.sleepycat.com/docs/api_c/env_set_lg_dir.html
http://www.sleepycat.com/docs/api_c/env_set_data_dir.html
An example for how to insert this information in a DB_CONFIG file is:
set_data_dir datadir
set_lg_dir logdir
Regards,
Ron Cohen
Berkeley DB XML Support
Oracle Corporation

Similar Messages

  • Ias Failed to start with "OPMN log file open failed" error message.

    Hi,
    My iAS doesn't start and I get this error message. Any advice? Thanks.
    opmnctl: starting opmn and all managed processes...
    OPMN log file open failed: /.../opmn/logs/ons.log (Read-only file system).
    opmnctl: opmn start failed

    Hi,
    Haven't you re-posted your question exactly after a year?
    take a look here.
    iAS not running due to OPMN log file open failed: opmn/logs/ons.log (Read-o

  • Help: startup-config file open failed (Not enough space)

    Who can help me ? I've an uc500 and he stil running. Now i want to change something and want to save the configuration first. But the following message appears : startup-config file open failed (Not enough space)
    this is the output from a dir flash:
    Directory of nvram:/
      227  -rw-       25897                    <no date>  startup-config
      228  ----        1933                    <no date>  private-config
      229  -rw-       25897                    <no date>  underlying-config
        1  ----          83                    <no date>  persistent-data
        2  -rw-           0                    <no date>  ifIndex-table
        3  -rw-         577                    <no date>  IOS-Self-Sig#1.cer
        4  -rw-         615                    <no date>  IOS-Self-Sig#2.cer
        5  -rw-         660                    <no date>  vlan.dat
        6  -rw-         107                    <no date>  cca.xml
        7  -rw-         586                    <no date>  IOS-Self-Sig#3.cer
    262144 bytes total (227094 bytes free)

    OK.
    Try this:
    conf t
    service compress-config
    And see if that helps. 
    If not, see if you can tftp the running config off the router and TFTP it back to startup-config:
    copy run tftp
    copy tftp start
    Then you can try a reload and see if it is cured.
    I googled and found a few cases where alot of ACLs or NAT rules could cause MALOC errors (you would see those in your logs) when implemented and could manifest itself in this condition, which could be cured after the next reload, which is why I suggested that.
    Of course, dont be remote when you do this and only do it during a maintenance window.
    Steve

  • File Open Failed?

    H'ello
    Sometimes when I try to transfer a book I have downloaded to ADE to my ereader I get the error message: File Open Failed.Other times they are successfully transfered. These are all downloaded from my library - so all consistently the same. Help.
    Thanks in advance if you can be of assistance.

    You can't do anything at all about restrictions on digital rights.  I said
    that earlier.  But I want to take a moment to discuss the concerns you've
    included in this post.
    To start with, each ebook either has digital rights assigned or not.  So,
    if one cannot be copied, that does not mean that any others can't.  You may
    - make that will - run into other ebooks that can't be copied, and it will
    be a pain in the butt when you do.  But, don't assume that ALL ebooks are
    going to be a problem.
    I think you missed another point that I made.  This is not the fault of ADE
    - the software is just doing the job it's been programmed to do with each
    ebook you download.  You don't need to do anything to ADE.
    Let's tackle the comment you made about downloading ebooks from a library.
    Technically, the library allowed you to download the ebook - to your
    computer.  That's really all they have to do.  You can call the library and
    tell them that the library ebook you downloaded can't be copied to your
    ereader and see if they can do something about that.  I am doubtful,
    though, because publishers - not the library - don't want people to
    redistribute their ebooks, and that's one reason they block copying.
    It's possible also to download an ebook directly to your ereader IF the
    library or bookseller is set up to do that.  Most libraries are not.
    You mention that there are other times that you get the 'File Open Failed'
    message.  If you give me more information about the circumstances, I'll try
    to work with you to figure out what to do
    ===================

  • File Open failed Error in Process Chain

    Hi,
    Our process chains are failing at the last step of event trigger.The file is not getting created in the directory as a result of which the BO reports are not getting triggered.Kindly help.
    Regards,
    Shalaka

    Pl find the below code:
    DATA mesg(80) VALUE 'BW load complete. Ready for BOBJ Refresh. File Created on : '.
    DATA fname(60).
    DATA pc_flag TYPE rspc_state.
    * Get the folder and file name from parameter
    PARAMETERS p_fname TYPE string LOWER CASE.
    AT SELECTION-SCREEN.
    START-OF-SELECTION.
       fname = p_fname.
    *Add the system date into the file.
       CONCATENATE mesg sy-datum INTO mesg.
       CALL FUNCTION 'AUTHORITY_CHECK_DATASET'
       EXPORTING
    * PROGRAM =
      activity = 'DELETE'
      filename = fname
      EXCEPTIONS no_authority = 1
             activity_unknown = 2
             OTHERS   = 3 .
       IF sy-subrc = 0.
    *Delete the file if it is already existing
         DELETE DATASET fname.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ELSE.
         MESSAGE i051(rsar) WITH 'No Authorizations to delete the file'.
       ENDIF.
       WAIT UP TO 65 SECONDS.
    *Set the flag for the process chain to read if file deletion fails.
       IF sy-subrc <> 0." The ABAP program failed
         pc_flag = zcl_abap_bobj_event_trg=>failed.
       ELSE. " The ABAP program was successful
         pc_flag = zcl_abap_bobj_event_trg=>success.
       ENDIF.
       CALL FUNCTION 'AUTHORITY_CHECK_DATASET'
         EXPORTING
           activity         = 'WRITE'
           filename         = fname
         EXCEPTIONS
           no_authority     = 1
           activity_unknown = 2.
       IF sy-subrc <> 0.
         MESSAGE i051(rsar) WITH 'No Authorizations to Write to file'.
       ELSE.
    *Create the file based on the input from variant including folder and file name.
         OPEN DATASET fname FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    *Set the flag for the process chain to read if file creation fails.
         IF sy-subrc <> 0.
           MESSAGE i051(rsar) WITH 'File open failed.'.
           pc_flag = zcl_abap_bobj_event_trg=>failed.
         ELSE. " The ABAP program was successful
           TRANSFER mesg TO fname.
           pc_flag = zcl_abap_bobj_event_trg=>success.
         ENDIF.
         CLOSE DATASET fname.
       ENDIF.
       EXPORT e_state FROM pc_flag TO DATABASE indx(bo) ID
       zcl_abap_bobj_event_trg=>status_idx_id.

  • BIOS binary file open failed

    '¶},eê'F„‰½,à:http://www.microstar.com.cn„º[òÏsí†,
    ê}eÙÌB©†.
    „ñí4s
    *}(¡žÕôZ„;ú°„î˜)
    Ø÷'¶Á,_÷ ~„5ØKY
    Ž2003t5ý-p„®K7N2-L;,Söå;
     :K7N2-L,
    F/dž$*,å;
     b:K7N2-Detal-L,wSŸà
    „5„Mn‚:
    AthlonXP1800+( BO8Ã)
    DDR 333 256MB
    w6ã80GlØ
    ®K7N2-Detal-L
    ®GF4 MX440SE
    °(„;BIOSH,6/5.0H,, à:¡   Mnoq,_¡   UØ
    ,@åê}(®„live monitor(windowsXP7°BIOS,}†°„BIOS(5.6H,)
    K,‰Åöú°‚Ð:"BIOS binary file open failed",
    åS/ÀHŸà,
    ÷îå‚Uã³?

    im guessing based on
    BIOS binary file open failed
    http://www.msi.com.tw/html/support/bios/note/ntfs.htm

  • Indesign CS6   File Open Fail

    I just upgraded to Mountain Lion OSX 10.8  about 2 weeks ago and was running Indesign CS5.5 fine before the update. Started to get program crashing issues before I even updated the OS, then after, I upgraded to CS6 and now am getting crashes everytime I try to even enact an "Open" dialog. Will not even load the dialog box, just quits and then takes me to the report. Click REOPEN and sometimes the program will not even load before going right back to a crash report screen?
    I just tried the icon/resources folder fix I found which ran the program again, but still will not open or place files.

    Well seems like the program started working again fine for a couple of days, then all of a sudden started the crashing again today.
    http://pastebin.com/1B0jftd8

  • Db_hotbackup - no error message when destination file open fails

    Version 4.5.20
    An error message is not output when db_hotbackup can not open a destination file.
    How to test: attempt a backup to a directory where you do not have write permission.
    Here is my patch:
    --- db_hotbackup/db_hotbackup.c.orig     2006-09-07 14:31:57.000000000 -0700
    +++ db_hotbackup/db_hotbackup.c     2007-06-08 06:12:51.000000000 -0700
    @@ -758,8 +758,10 @@
              goto err;
         if ((wfd = open(
    -         buf, O_CREAT | O_TRUNC | O_WRONLY, __db_omode(OWNER_RW))) == -1)
    +         buf, O_CREAT | O_TRUNC | O_WRONLY, __db_omode(OWNER_RW))) == -1) {
    +          dbenv->err(dbenv, errno, "%s", buf);
              goto err;
    +     }
         /* Copy the data. */
         while ((nr = read(rfd, buf, MEGABYTE)) > 0)

    Hello,
    Just an update, the plans for the next release are to include this change.
    thanks,
    Sandra

  • ORA-00313: open failed for members of log group 4 of thread 2

    Hi.
    i have found the below error in one of RAC instance.Could you please advise on this since i am new to RAC env
    ORA-00313: open failed for members of log group 4 of thread 2
    ORA-00312: online log 4 thread 2: '+NEWDISK_GROUP/DEMO/onlinelog/group_4.1453.1029312423'
    ORA-17503: ksfdopn:2 Failed to open file +NEWDISK_GROUP/DEMO/onlinelog/group_4.1453.1029312423
    ORA-15032: not all alterations performed
    ORA-29702: error occurred in Cluster Group Service operation
    ORA-29702: error occurred in Cluster Group Service operation
    Thanks
    Sai

    any update on this?

  • ORA-00313: open failed for members of log group 1 of thread 1

    Hi
    I'm restoring a database on a different host. I have the backups, from which I want to restore the database. I made the corresponding changes in the initSID.ora file and started the script to do the restore.These are the steps I followed:
    connect target=/
    run{
    startup nomount;
    allocate channel c1 type disk;
    allocate channel c2 type disk;
    allocate channel c3 type disk;
    allocate channel c4 type disk;
    restore controlfile from '/tmp_backups/rman/lev0_open_cf_SID_2826_1';
    alter database mount;
    set newname for all datafiles
    restore database;
    set until logseq = 29317 thread = 1;
    switch datafile all;
    recover database;
    alter database open resetlogs;
    One mistake I made here is that logseq should have been last seq+1, which I did not do. I have it as last seq.
    Restore of datafiles and switching of datafiles was fine. But I get error for redo log files.
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u13/oradata/SID/redo02a.log'
    ORA-27037: unable to obtain file status
    SVR4 Error: 2: No such file or directory
    Additional information: 3
    Why is it looking for at the old path yet?
    I'm not sure what I missed and how to proceed. Please help.
    Thanks,
    Mamata

    I do believe that set newname for all datafiles only means actual datafiles and no redo logs. So with open resetlogs, Oracle tries to create new redo logfiles where the backup controlfiles says they are.
    As with creating a auxilliary database in another filesystem, we use DB_NAME_FILE_CONVERT and LOG_FILE_NAME_CONVERT.
    I am not sure if it is possible to type "set newname for all datafiles" and expect also the redo logfiles to change location.
    You might try to set these two parameters and see if it works.
    good luck.
    rgds
    Kjell Ove

  • ORA-00313: open failed for members of log group 3 of thread 1

    Whenever I try to login as a user I get the following:
    sqlplus user/user
    SQL*Plus: Release 10.2.0.2.0 - Production on Fri Nov 9 10:43:39 2007
    Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
    ERROR:
    ORA-01033: ORACLE initialization or shutdown in progress
    So It occurs to me to login as sysdba and restart the DB …
    SQL> connect sys/manager as sysdba
    Connected.
    SQL> shutdown immediate;
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 536870912 bytes
    Fixed Size 1281264 bytes
    Variable Size 150995728 bytes
    Database Buffers 377487360 bytes
    Redo Buffers 7106560 bytes
    Database mounted.
    ORA-00313: open failed for members of log group 3 of thread 1
    ORA-00312: online log 3 thread 1: '/u06/oradata/RKDB/redo03.log'
    ORA-27037: unable to obtain file status
    Intel SVR4 UNIX Error: 2: No such file or directory
    Additional information: 3
    SQL> quit
    I now realized what happened and how this happened. During a clean-up effort this file was accidentally deleted and unfortunately we don’t have any backups.
    I am willing to lose the data. Is there something I can do so that the startup does not try to open this file ?
    All I am able to do now is to mount the database but not open it.
    Thanks in advance,
    Daniel

    this is what I get now ...
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/u02/oradata/RKDB/system01.dbf'
    SQL> Recover database until cancel;
    ORA-00279: change 608619 generated at 11/09/2007 10:00:41 needed for thread 1
    ORA-00289: suggestion : /u05/oradata/RKDB/arch/log1_33_633207859.arc
    ORA-00280: change 608619 for thread 1 is in sequence #33
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    ORA-00308: cannot open archived log
    '/u05/oradata/RKDB/arch/log1_33_633207859.arc'
    ORA-27037: unable to obtain file status
    Intel SVR4 UNIX Error: 2: No such file or directory
    Additional information: 3
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/u02/oradata/RKDB/system01.dbf'
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/u02/oradata/RKDB/system01.dbf'
    SQL>

  • ORA-00313: open failed for members of log group

    Hi,
    on 11g R2, on standby I have this in alertlog :
    ORA-00313: open failed for members of log group 21 of thread 1
    Deleted Oracle managed file +DGRECO_FSCM/xxx/onlinelog/group_21.1721.791875667
    Tue Aug 21 14:37:34 2012
    Clearing online redo logfile 21 complete
    Errors in file /data01/oracle/diag/rdbms/xxx_mrp0_22843.trcAnd this in trace file
    *** 2012-08-21 14:35:57.192 4265 krsh.c
    *** 2012-08-21 14:37:26.406 4265 krsh.c
    Clearing online redo logfile 21 +DGRECO_FSCM/xxxx/onlinelog/group_21.1721.791875667
    DDE: Problem Key 'ORA 313' was flood controlled (0x5) (no incident)
    ORA-00313: open failed for members of log group 21 of thread 1Any explanation please ?
    Thank you.

    Refer to the below note:
         ORA-19527 reported in Standby Database when starting Managed Recovery [ID 352879.1]

  • FTP log file generation failed in shell script

    Hi ALL,
    I am doing FTP file transfer in shell script and able to FTP the files in to corresponding directory , But when i am trying to check the FTP status through the log files then its giving problem . please check the below code.
    for file in $FILENAME1
    do
    echo "FTP File......$file"
    echo 'FTP the file to AR1 down stream system'
    ret_val=`ftp -n> $file.log <<E
    #ret_val=`ftp -n << !
    open $ar1_server
    user $ar1_uname $ar1_pwd
    hash
    verbose
    cd /var/tmp
    put $file
    bye
    E`
    if [ -f $DATA_OUT/$file.log ]
    then
    grep -i "Transfer complete." $DATA_OUT/$file.log
    if [ $? -eq 0 ]; then
    #mv ${file.log} ${DATA_OUT}/../archive/$file.log.log_`date +"%m%d%y%H%M%S"`
    echo 'Log file archived to archive directory'
    #mv $file ${DATA_OUT}/../archive/$FILENAME1.log_`date +"%m%d%y%H%M%S"`
    echo 'Data file archived to archived directory'
    else
    echo 'FTP process is not successful'
    fi
    else
    echo 'log file generation failed'
    fi
    its giving syntax error end of file not giving the exact line number , please help me on thsi
    Regards
    Deb

    Thanks for ur reply
    Actually i did a mistake in the code i wrote the following piece of code below
    ret_val=`ftp -n> $file.log <<E
    #ret_val=`ftp -n << !
    so after the tilde symbol it as again taking the '# ' as a special character so it was giving error, so i removed the second line now its working fine.

  • Open failed for members of log group

    HI,
    OS : LINUX 5.1
    DB : 10.2.0.3
    i have configured physical standby and its working fine. but in alert log i m getting below error.
    i have checked the physical location of member. it is very much available.
    Mon May 24 23:54:19 2010
    Errors in file /u001/app/oracle/admin/YAHOO/bdump/yahoo_mrp0_3526.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u001/app/oracle/oradata/YAHOO/redo01.log'
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    Mon May 24 23:54:19 2010
    Errors in file /u001/app/oracle/admin/YAHOO/bdump/yahoo_mrp0_3526.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u001/app/oracle/oradata/YAHOO/redo01.log'
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    Clearing online redo logfile 1 /u001/app/oracle/oradata/YAHOO/redo01.log
    Clearing online log 1 of thread 1 sequence number 31
    Mon May 24 23:54:19 2010
    Errors in file /u001/app/oracle/admin/YAHOO/bdump/yahoo_mrp0_3526.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u001/app/oracle/oradata/YAHOO/redo01.log'
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    Mon May 24 23:54:19 2010
    Errors in file /u001/app/oracle/admin/YAHOO/bdump/yahoo_mrp0_3526.trc:
    ORA-19527: physical standby redo log must be renamed
    ORA-00312: online log 1 thread 1: '/u001/app/oracle/oradata/YAHOO/redo01.log'
    can any one suggest?
    Regards,
    BK

    Hi,
    Below note was taken from metalink;
    Symptoms
    Following errors in alert.log of standby database during startup of the standby database:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u03/oradata/prod/redo01b.log'
    ORA-27037: unable to obtain file status
    Cause
    Online Redo logs missing on standby database.
    Solution
    You can safely ignore these messages. Online redo logs will be created automatically when you activate the standby after switchover or failover.
    If you want to fix these messages then please use following steps:
    1. Check and set "log_file_name_convert" parameter if the location of log files are different on primary and standby.
    SQL> alter system set log_file_name_convert = "'<location on primary>','<location on standby>'" scope=spfile;
    If you are using pfile then set the parameter in init file after shutting down the database:
    *.log_file_name_convert = '<location on primary>','<location on standby>'
    For 10gR2 only : Set this parameter even if the location of the redo logs are same on both primary and standby otherwise you may get ORA-19527 and ORA-312 while or after implementing the below steps.
    This is due to internal bug in 10.2.
    2. Cancel Managed Recovery process on the standby:
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
    3. Execute the command to clear all log groups on standby for each log group (for each log group):
    SQL>alter database clear logfile group 1;
    4. Check the v$log view to confirm the size and status.
    5. Recreate standby redo logs on standby (only if standby Redo logs are also missing) using:
    (a) Drop the standby redo logfile group(s) (check v$standby_log)
    SQL> alter database drop standby logfile group 4;
    (b) Recreate the standby logfile group(s)
    SQL> alter database add standby logfile group 4 ('/u03/redo/stby01.log') size 50m;
    Hope it helps you.

  • ORA-00313: open failed for members of log group 2 of thread 1

    We have a 4 node 32bit linux RAC (Dell/EMC) system running 9.2.0.4. It is very stable but over the past couple of months we've encountered a few ORA-00313 errors, while the system is running.
    No patterns. Different loads, times of day, nodes.
    The redo can't be opened, the node crashes, we look for errors, can't find any and then restart. The file is there and the permissions are fine. No other processes are accessing the files. No other Db errors. No O/S, SAN, Fiber, errors.
    All the research I've done shows that this is an error you'd only get on startup.
    We're going to log a TAR, but I can't believe we're the only ones to ever see this occur.
    [directory and server names have been modified to protect the system. Don't get hung up on typos or possible file system config problems too much - this system has been and is running now]
    ======================================================
    Log entries:
    Mon Oct 24 22:51:58 2005
    Errors in file /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/sampledb/redo0/oradata/sampdb/redo/redo102.log'
    ORA-27041: unable to open file
    Linux Error: 13: Permission denied
    Additional information: 2
    Mon Oct 24 22:51:58 2005
    Errors in file /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/sampledb/redo0/oradata/sampdb/redo/redo102.log'
    ORA-27041: unable to open file
    Linux Error: 13: Permission denied
    Additional information: 2
    Mon Oct 24 22:51:58 2005
    LGWR: terminating instance due to error 313
    Below are the contents of the trace file mentioned in the above log:
    trace file /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc:
    [oracle@db1 bdump]$ more /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc
    /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, Real Application Clusters, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    ORACLE_HOME = /u01/app/oracle/product/920
    System name: Linux
    Node name: db1.sample.com
    Release: 2.4.9-e.59enterprise
    Version: #1 SMP Mon Jan 17 07:02:16 EST 2005
    Machine: i686
    Instance name: sampdb1
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 24
    Unix process pid: 2237, image: [email protected] (LGWR)
    *** SESSION ID:(25.1) 2005-10-11 22:31:02.315
    CMCLI WARNING: CMInitContext: init ctx(0xad96e80)
    *** 2005-10-24 22:51:58.192
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/sampledb/redo0/oradata/sampdb/redo/redo102.log'
    ORA-27041: unable to open file
    Linux Error: 13: Permission denied
    Additional information: 2
    error 313 detected in background process
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/sampledb/redo0/oradata/sampdb/redo/redo102.log'
    ORA-27041: unable to open file
    Linux Error: 13: Permission denied
    Additional information: 2
    ksuitm: waiting for [5] seconds before killing DIAG

    The only thing I can still think of is file permissions.
    If the system has recently been restored or Redo Log recreated, check the file permissions and ensure that Oracle has Read and Write Access to the Directory and Files.
    At least the file permissions on the directory and files should look something like this example
    $ls -l /sampledb/redo0/oradata/sampdb/
    drwxr-xr-x oracle oinstall 4096 19 May 17:46 redo
    $ls -l /sampledb/redo0/oradata/sampdb/redo/
    -rw-r----- oracle oinstall 524288512 27 Oct 15:07 redo101.log
    $ls -l /sampledb2/redo0/oradata/sampdb/redo2/
    -rw-r----- oracle oinstall 524288512 27 Oct 15:21 redo102.log
    $ls -l /sampledb3/redo0/oradata/sampdb/redo3/
    -rw-r----- oracle oinstall 524288512 27 Oct 15:33 redo103.log

Maybe you are looking for

  • File Adapter: FTP issue

    Hello, There is a problem with the file adapter of the XI30 SP14: It is set to get a file from a server X using a FTP protocol. INT_001_V01_COM_CTDCLNT600_FILE_SENDER Sender Adapter v2300 for Party '', Service 'CTDCLNT600': Configured at 2006-01-16 1

  • Video compatibility on iPad 2 and online sites, who is iPad friendly?

    Does anyone knownof a list of web sites that post iPad compatible videos?  Are there sites that are at least trying to work with apples video restrictions?  Please advise.  And thanks.

  • HTTP-XI-RFC. INTERFACE_REGISTRATION_ERROR

    Dear All, HTTP<>XI<>RFC scenario is working fine with RFC connected to (Discovery system) Client.001 with role as "Integration Server" but when we try to connect RFC to Client.200 with role as "Application Server" we are getting the INTERFACE_REGISTR

  • Safari/Firefox crashes on upload from Desktop

    Hello,  Safari crashes when i try to upload something from desktop. Also happened to firefox. Seem like finder have problem. Any idea how to fix it ?

  • How to make a Custom Duplicate  Menu....

    Hii gurus, I have a Menu and lets say it has 100 Function under it .. I need to create same Custom Menu with those 100 Functions instead of Manually adding those 100 functions to that Custom Menu.. Is there any other way to Copy the existing Menu and