ORA-28575: unable to open RPC connection to external procedure agent

Hi everybody,
Could you please help me with this problem? I'm trying to configure Oracle XE 11g for external procedures, this because I have to access some procedures in a DLL made in Delphi 6.0, but even with the simplest of the dll I make, like a sum made in C, I can't get pass this error ORA-28575: unable to open RPC connection to external procedure agent.
This is my listener.ora:
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
(PROGRAM = extproc)
(SID_DESC =
(SID_NAME = CLRExtProc)
(ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
(PROGRAM = extproc)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
(ADDRESS = (PROTOCOL = TCP)(HOST = myPC)(PORT = 1521))
DEFAULT_SERVICE_LISTENER = (XE)
and this is my tnsnames.ora:
XE =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = myPC)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = XE)
EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
ORACLR_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
(CONNECT_DATA =
(SID = CLRExtProc)
(PRESENTATION = RO)
Do you know what could be wrong? I'm out of ideas and google search...
Also, is there any difference in a calling for a DLL made on VB and one made in Delphi??
Thanks and Regards,

Hello,
This error could appear due to issues with configuration of your listener, database or with extproc. First check that the permissions on extproc in your Oracle_home specified in your listener.ora file are valid:
Run the following ./extproc and it should display the banner.
If above is ok, then check for the domain name. One probable reason could be that if default_domain is set and that domain is not appended to the service name in tnsnames.ora, the connection fails.
regards
fahdmirza.blogspot.com

Similar Messages

  • ORA-28575: unable to open RPC connection to external procedure agent when trying to connect ORE.connect

    Hello,
    I had installed ore 1.3.1 windows server 2008 on top of Oracle DB 11.2.0.3 ,but when I connect the database,it didn't work.
    That is my code and error code.
    ore.connect(user = "rquser", sid = "db11g", host = "....", password = "....", all = TRUE)
    Got error as below:
    error.oci.GetQuery(conn, statement, data = data, prefetch = prefetch, :
    ORA-28575: unable to open RPC connection to external procedure agent
    ORA-06512: at "RQSYS.RQEVALIMPL", line 17
    ORA-06512: at "RQSYS.RQEVALIMPL", line 14
    ORA-06512: at line 4
    Also i have follwed the below link:
    ///ORE1.3-ore-server-win-x86_64-1.3,error ORA-28575: unable to open RPC connec
    But failed to resolve the problem.
    Below are the TNS and Listener file entry:
    # listener.ora Network Configuration File: F:\OracleDB\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = EXTPROC)
          (ORACLE_HOME = H:\ORA11G\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:H:\ORA11G\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 10.168.11.69)(PORT = 1521))
    ADR_BASE_LISTENER = H:\ORA11G
    -============================
    # tnsnames.ora Network Configuration File: F:\OracleDB\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
        (CONNECT_DATA =
          (SID = EXTPROC)
          (PRESENTATION = RO)
    DB11G = 
    (DESCRIPTION =   
      (ADDRESS_LIST=
       (ADDRESS = (PROTOCOL = TCP)(HOST = 10.168.11.69)(PORT = 1521)) 
      (CONNECT_DATA =   
        (SERVER = DEDICATED) 
        (SID = DB11G)
    ====================================================
    Thanks
    Sandy

    Hi Sandy,
    If you set EXTPROCS_DLLS=ANY in the listener and then restart the listener, does it fix the problem?
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = EXTPROC)
          (ORACLE_HOME = H:\ORA11G\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ANY")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 10.168.11.69)(PORT = 1521))
    Sherry

  • ORA-28575: unable to open RPC connection to external procedure

    I am trying to run a little external procedure that allows me to run a shell script from a stored procedure, however I keep getting the error as shown in the subject line. I understand that this error is caused by misconfigured listener.ora and tnsnames.ora files. I have been trying to set them up to use IPC and extproc, however, for the life of me I can't seem to get it to work.
    Would it be possible so someone to post sample .ora files that allow trusted callouts?
    P.S. I'm running on Redhat 7.2 and have no other problems (other than a lack of knowledge :) ).
    Thanks,
    Khalid.

    Try to add the following code in the tnsnames.ora and listener.ora respectively:
    tnsnames.ora
    extproc_connection_data =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = IPC)
    (KEY = xxx)
    (CONNECT_DATA =
    (SID = extproc)
    listener.ora
    LISTENER =
    (ADDRESS_LIST =
    (ADDRESS=
    (PROTOCOL=TCP)
    (HOST=192.168.yyy.yyy)
    (PORT=1521)
    (ADDRESS=
    (PROTOCOL=IPC)
    (KEY=xxx)
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = extproc)
    (ORACLE_HOME = /usr/users/oracle)
    (PROGRAM = extproc)
    REMEMBER: the key in tnsnames.ora = the key in listener.ora

  • Help me, please ORA-28576: lost RPC connection to external procedure agent

    when i call external program
    SQL>exec shell_all ('/bin/ls /oracle/product/10.2.0/',:result, 3) ;
    BEGIN shell_all ('/bin/ls /oracle/product/10.2.0/',:result, 3) ; END;
    ERROR at line 1:
    ORA-28576: lost RPC connection to external procedure agent
    ORA-06512: at "SYS.SHELL_ALL", line 1
    ORA-06512: at line 1
    and my configure
    #listener.ora
    SID_LIST_LISTENER_AADB02 =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /oracle/product/10.2.0/db)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ANY")
    LISTENER_AADB02 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = aadb02-vip)(PORT = 1521)(IP = FIRST))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 203.144.222.82)(PORT = 1521)(IP = FIRST))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = extproc))
    #tnsname.ora
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = extproc))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    Please tell me to resolve this problem

    Does not execl() and friends replace the current program with the one supplied as a parameter?
    The upshot of this would be as you suggest, viz:
    - Oracle call's your procedure (but doens't wait for a result due to the void return type?)
    - your program executes its code (cd /tmp)
    - it then replaces itself with *program
    - *program terminates
    Presumably, Oracle isn't expecting it to terminate but to continue waiting for subsequent requests.
    I'd check out fork() and see if that offers more appropriate semantics.
    d.

  • ORA-28576 lost RPC connection to external procedure agent

    Hello!
    NT 4.0, O9i 9.0 and 9.2
    Calling external DLL procedure produces the following error:
    "ORA-28576 lost RPC connection to external procedure agent"
    The external DLL is in the ORACLE_HOME/bin directory.
    The same application works fine on 8.1.7 !
    I didn't find any useful info in 9i docs (App. dev. fundamentals; Net guide...).
    Is there any significant difference in EXTPROC feature between 8.1.7 and 9.x ?
    Thanks for any useful info
    Laszlo
    # LISTENER.ORA Network Configuration File: D:\ORANT\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = dljk1)(PORT = 1521))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = D:\ORANT)
    (PROGRAM = extproc)
    # TNSNAMES.ORA Network Configuration File: D:\ORANT\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = dljk1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = orcl.dljk)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (address = (protocol = ipc)(KEY = EXTPROC0))
    (CONNECT_DATA =
    (SID = PLSExtProc)

    I have the same problem using Windows kernel32.dll. It works fine with Oracle8 and Oracle8i on both Windows NT and Windows2000, but it does not work with Oracle9i on Windows2000. After long discussions, Oracle has admitted that it is a bug. If you have access to metalink then see TAR 2189019.995.
    Bo Pedersen

  • Getting "ORA-28576: lost RPC connection to external procedure agent" for R scripts.

    Hello,
    I am trying R integration with OBIEE. As part of this, I have created a simple R script for a scatter plot. Below is the R script
    begin
      sys.rqScriptCreate('randomRedDots',
                         'function()
                            res <- 1:10
                            plot(1:100, rnorm(100), pch=21, bg="red", cex=2)
                            res
    end;
    I am testing this script in SQL Developer by executing the below sql:
    select image
    from table(rqEval(NULL,
                      'PNG',
                      'randomRedDots')
    During these tests, very often, I get ORA-28576 error when I run the SQL. The complete error is:
    ORA-28576: lost RPC connection to external procedure agent
    ORA-06512: at "RQSYS.RQEVALIMPL", line 77
    ORA-06512: at "RQSYS.RQEVALIMPL", line 74
    28576. 00000 -  "lost RPC connection to external procedure agent"
    *Cause:    A fatal error occurred in either an RPC network connection,
               the extproc agent, or the invoked 3GL after communication had
               been established successfully.
    *Action:   First check the 3GL code you are invoking; the most likely
               cause of this error is abnormal termination of the
               invoked "C" routine. If this is not the case, check for
               network problems. Correct the problem if you find it. If all
               components appear to be normal but the problem persists, the
               problem could be an internal logic error in the RPC transfer
               code.  Contact your customer support representative.
    However, if I re-run the SQL, I do not get this message. This happens at random.
    Any pointers to why this error occurs?
    Thanks,
    Abhishek

    Abhishek,
    Please look for a core file in $ORACLE_HOME/hs/log and look for errors in the call stack associated with the core file.
    Examining the errors will help identify the cause of the intermittent ORA-29576 error.
    Thank you,
    Sherry

  • Lost RPC Connection to external procedure agent....

    Hi,
    I have a sample.dll fil & i have created a library by the following command...
    create or replace library trend_lib as 'C:\oracle\product\10.2.0\db_1\BIN\sample.dll';
    'C:\oracle\product\10.2.0\db_1\BIN\sample.dll';------------this is the location where i keep the sample.dll file .
    Then i have created a package
    create or replace PACKAGE p1
    as
    FUNCTION trend( inp IN BINARY_INTEGER) return BINARY_INTEGER as
    LANGUAGE C
    LIBRARY trend_lib
    name "polynomial"
    PARAMETERS (inp INT);
    end;
    But when i am trying to execute the following query it shows the errror:::
    SQL> select p1.trend(6) from dual;
    select p1.trend(6) from dual
    ERROR at line 1:
    ORA-28576: lost RPC connection to external procedure agent......
    mine tnsnames.ora file configuration is :
    FIN11G_172.30.0.12 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.30.0.12)(PORT = 1522))
    (CONNECT_DATA =
    (SID = fin11g)
    (SERVER = DEDICATED)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ALMDB =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.30.3.11)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = almdb)
    RSBI =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.30.0.12)(PORT = 1521))
    (CONNECT_DATA =
    (SID = rsbi)
    (SERVER = DEDICATED)
    And listener.ora file is....
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ANY")
    (SID_DESC =
    (GLOBAL_DBNAME = ALMDB)
    (ORACLE_HOME = C:\oracle\product\10.2.0\db_1)
    (SID_NAME = ALMDB)
    (ENVS = "EXTPROC_DLLS=ANY")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 01hw177387.fns.com.au)(PORT = 1521))
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    )

    Hi;
    please see below:
    ORA-28576 When Executing External Procedure [ID 295721.1]
    ORA-28576 Using External Procedures [ID 113179.1]
    External Procedure Fails With ORA-28576 [ID 468404.1]
    Also see:
    Problem calling dll using extproc
    Regard
    Helios

  • ORA-28511: lost RPC connection to heterogeneous remote agent using SID=

    I am currently using the HS DG4ODBC on 11.2.0.3 with Linux X86-32bit platform, and I’ve gotten the gateway to work for all DML operations via DBLinks against a TimesTen database.
    However, I am getting the following error in red when trying to execute the DBMS_COMPARISON package: ORA-28511: lost RPC connection to heterogeneous remote agent using SID=ORA-28511: lost RPC connection to heterogeneous remote agent using SID=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=timesten-hol)(PORT=1521))(CONNECT_DATA=(SID=hsodbc1)))
    An internet search about the error leads me to think that this is a config issue with the cause being that:
    Cause: The listener is unable to spawn the HS agent or the agent cannot find the ODBC lib directory.
    Action: The PROGRAM line in the listener.ora file is incorrect or not specified. Make sure LD_LIBRARY_PATH includes the $ODBC_HOME/lib directory. If not, set LD_LIBRARY_PATH and restart the listener.
    But I’ve revisited the settings and they all look OK, and also the HS agent seems to work fine for all types of DML operations on TimesTen, so I am at a loss of why the above error is occurring with dbms_comparison.compare.
    I am also using the datadirect ODBC driver manager.
    Thanks,

    You've already filed a bug for this issue ( DG4ODBC CORE DUMP WHEN USING DBMS_COMPARISON.COMPARE) so please close this thread.

  • Unable to open RFC connection - Err message

    I all
    I am trying to install SAP ERP 2004 SR1 on Microsoft Windows Server 2003, SQL Server 2000. I have successfully installed the Central Instance but when I try to install the Database instance after the database loading the following error is given:
    FRF00007 - Unable to open RFC connection.
    I have also tried to start the sap system. The message_server and igswd processed run ok, but the disp+work process is stopped.
    I am also sending you the developer trace for this process.
    Thank you a lot
    Vasil
    trc file: "dev_disp", trc level: 1, release: "640"
    Mon Jul 27 11:24:48 2009
    kernel runs with dp version 128000(ext=102000) (@(#) DPLIB-INT-VERSION-128000-UC)
    length of sys_adm_ext is 524 bytes
    systemid   560 (PC with Windows NT)
    relno      6400
    patchlevel 0
    patchno    43
    intno      20020600
    make:      multithreaded, Unicode
    pid        2668
    ***LOG Q00=> DpSapEnvInit, DPStart (01 2668) [dpxxdisp.c   1100]
         shared lib "dw_xml.dll" version 43 successfully loaded
         shared lib "dw_xtc.dll" version 43 successfully loaded
         shared lib "dw_stl.dll" version 43 successfully loaded
         shared lib "dw_gui.dll" version 43 successfully loaded
    Mon Jul 27 11:24:53 2009
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  3886]
    MtxInit: -2 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: JAVA is not active
    DpShMCreate: sizeof(wp_adm)          10528     (1316)
    DpShMCreate: sizeof(tm_adm)          2780232     (13832)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpShMCreate: sizeof(comm_adm)          290000     (580)
    DpShMCreate: sizeof(vmc_adm)          0     (372)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 058C0040, size: 3192688)
    DpShMCreate: allocated sys_adm at 058C0040
    DpShMCreate: allocated wp_adm at 058C1B58
    DpShMCreate: allocated tm_adm_list at 058C4478
    DpShMCreate: allocated tm_adm at 058C44A0
    DpShMCreate: allocated wp_ca_adm at 05B6B0E8
    DpShMCreate: allocated appc_ca_adm at 05B70EA8
    DpShMCreate: allocated comm_adm_list at 05B72DE8
    DpShMCreate: allocated comm_adm at 05B72E00
    DpShMCreate: allocated vmc_adm_list at 05BB9AD0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 05BB9AF8
    DpShMCreate: allocated wall_adm at 05BB9B00
    MBUF state OFF
    EmInit: MmSetImplementation( 2 ).
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 1131 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 2.6.1 2.6 4.0) [dpxxdisp.c   1462]
    ***LOG Q0K=> DpMsAttach, mscon ( upayweb1) [dpxxdisp.c   9736]
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    Mon Jul 27 11:24:54 2009
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 6400, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1025]
    DpMsgAdmin: Set patchno for this platform to 43
    Release check o.K.
    Mon Jul 27 11:25:33 2009
    ERROR => W0 (pid 3740) died [dpxxdisp.c   12187]
    ERROR => W1 (pid 3748) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W2 (pid 3756) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W3 (pid 3764) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W4 (pid 3772) died [dpxxdisp.c   12187]
    ERROR => W5 (pid 3780) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W6 (pid 3792) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W7 (pid 3800) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    killing W0-3740 (SIGUSR2)
    ERROR => DpWpKill(3740, SIGUSR2) failed [dpxxtool.c   2468]
    killing W1-3748 (SIGUSR2)
    ERROR => DpWpKill(3748, SIGUSR2) failed [dpxxtool.c   2468]
    killing W2-3756 (SIGUSR2)
    ERROR => DpWpKill(3756, SIGUSR2) failed [dpxxtool.c   2468]
    killing W3-3764 (SIGUSR2)
    ERROR => DpWpKill(3764, SIGUSR2) failed [dpxxtool.c   2468]
    killing W4-3772 (SIGUSR2)
    ERROR => DpWpKill(3772, SIGUSR2) failed [dpxxtool.c   2468]
    killing W5-3780 (SIGUSR2)
    ERROR => DpWpKill(3780, SIGUSR2) failed [dpxxtool.c   2468]
    killing W6-3792 (SIGUSR2)
    ERROR => DpWpKill(3792, SIGUSR2) failed [dpxxtool.c   2468]
    killing W7-3800 (SIGUSR2)
    ERROR => DpWpKill(3800, SIGUSR2) failed [dpxxtool.c   2468]
    NiWait: sleep (10000 msecs) ...
    NiISelect: timeout 10000 ms
    NiISelect: maximum fd=1625
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Jul 27 11:25:43 2009
    NiISelect: TIMEOUT occured (10000 ms)
    dump system status
    Workprocess Table (long)               Mon Jul 27 09:25:43 2009
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     3740 Ended         no      1   0             0                                                             
    1 DIA     3748 Ended         no      1   0             0                                                             
    2 UPD     3756 Ended         no      1   0             0                                                             
    3 ENQ     3764 Ended         no      1   0             0                                                             
    4 BTC     3772 Ended         no      1   0             0                                                             
    5 BTC     3780 Ended         no      1   0             0                                                             
    6 SPO     3792 Ended         no      1   0             0                                                             
    7 UP2     3800 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Mon Jul 27 09:25:43 2009
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    3
    2000
    10
    10
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          13
    wake_evt_udp_now     0
    wake events           total     9,  udp     8 ( 88%),  shm     1 ( 11%)
    since last update     total     9,  udp     8 ( 88%),  shm     1 ( 11%)
    Dump of tm_adm structure:               Mon Jul 27 09:25:43 2009
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Mon Jul 27 09:25:43 2009
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000 msecs) ...
    NiISelect: timeout 5000 ms
    NiISelect: maximum fd=1625
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Jul 27 11:25:48 2009
    NiISelect: TIMEOUT occured (5000 ms)
    Shutdown server ...
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes...
    Stop gateway
    killing process (3724) (SOFT_KILL)
    Stop icman
    killing process (3732) (SOFT_KILL)
    Terminate gui connections
    [DpProcDied] Process lives  (PID:3724  HANDLE:1592)
    waiting for termination of gateway
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1625
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Jul 27 11:25:49 2009
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process died  (PID:3724  HANDLE:1592)
    [DpProcDied] Process died  (PID:3732  HANDLE:1584)
    DpHalt: cancel all lcom connections
    MPI CancelAll 2 -> 0
    MPI DeleteAll 2 -> 0
    NiIMyHostName: hostname = 'upayweb1'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 163 bytes
    NiBufSend starting
    NiIWrite: write 562, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name          -, type 4, key -
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   9962]
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiSelClear: removed hdl 3 from selectset
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/8
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 19)
    MBUF component DOWN
    NiBufClose: clear extensions for hdl 3
    NiBufSetStat: bufstat of hdl 3 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 3 / socket 1596
    MsIDetach: detach MS-system
    EsCleanup ....
    ***LOG Q05=> DpHalt, DPStop ( 2668) [dpxxdisp.c   8495]
    Good Bye .....

    Hi Juan <br>
    I am sending you the log from dev_w0 <br>
    <br>
    Thank you a lot,<br>
    Vasil
    <br> <br>
    <br>
    <br>
    trc file: "dev_w0", trc level: 1, release: "640"<br>
    <br>
    *<br>
    ACTIVE TRACE LEVEL           1<br>
    ACTIVE TRACE COMPONENTS      all, M<br>
    *<br>
    B  <br>
    B Mon Jul 27 11:24:53 2009<br>
    B  create_con (con_name=R/3)<br>
    B  Loading DB library 'C:\usr\sap\UFT\SYS\exe\run\dbmssslib.dll' ...<br>
    B  Library 'C:\usr\sap\UFT\SYS\exe\run\dbmssslib.dll' loaded<br>
    B  Version of 'C:\usr\sap\UFT\SYS\exe\run\dbmssslib.dll' is "640.00", patchlevel (0.43)<br>
    B  New connection 0 created<br>
    M systemid   560 (PC with Windows NT)<br>
    M relno      6400<br>
    M patchlevel 0<br>
    M patchno    43<br>
    M intno      20020600<br>
    M make:      multithreaded, Unicode<br>
    M pid        3740<br>
    M <br>
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3740) [dpxxdisp.c   1160]<br>
    I  MtxInit: -2 0 0<br>
    M  DpSysAdmExtCreate: ABAP is active<br>
    M  DpSysAdmExtCreate: JAVA is not active<br>
    M  DpShMCreate: sizeof(wp_adm)          10528     (1316)<br>
    M  DpShMCreate: sizeof(tm_adm)          2780232     (13832)<br>
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)<br>
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)<br>
    M  DpShMCreate: sizeof(comm_adm)          290000     (580)<br>
    M  DpShMCreate: sizeof(vmc_adm)          0     (372)<br>
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)<br>
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 060C0040, size: 3192688)<br>
    M  DpShMCreate: allocated sys_adm at 060C0040<br>
    M  DpShMCreate: allocated wp_adm at 060C1B58<br>
    M  DpShMCreate: allocated tm_adm_list at 060C4478<br>
    M  DpShMCreate: allocated tm_adm at 060C44A0<br>
    M  DpShMCreate: allocated wp_ca_adm at 0636B0E8<br>
    M  DpShMCreate: allocated appc_ca_adm at 06370EA8<br>
    M  DpShMCreate: allocated comm_adm_list at 06372DE8<br>
    M  DpShMCreate: allocated comm_adm at 06372E00<br>
    M  DpShMCreate: allocated vmc_adm_list at 063B9AD0<br>
    M  DpShMCreate: system runs without vmc_adm<br>
    M  DpShMCreate: allocated ca_info at 063B9AF8<br>
    M  DpShMCreate: allocated wall_adm at 063B9B00<br>
    X  <br>
    X Mon Jul 27 11:24:54 2009<br>
    X  EmInit: MmSetImplementation( 2 ).<br>
    X  <ES> client 0 initializing ....<br>
    X  Using implementation flat<br>
    M  <EsNT> Memory Reset disabled as NT default<br>
    X  ES initialized.<br>
    M  <br>
    M Mon Jul 27 11:24:55 2009<br>
    M  calling db_connect ...<br>
    C  Thank You for using the SLOLEDB-interface<br>
    C  Using dynamic link library 'C:\usr\sap\UFT\SYS\exe\run\dbmssslib.dll'<br>
    C  dbmssslib.dll patch info<br>
    C    patchlevel   0<br>
    C    patchno      43<br>
    C    patchcomment View with literal containing (0x60) (786638)<br>
    C  np:(local) connection used on UPAYWEB1<br>
    C  Using Provider SQLNCLI<br>
    C  OpenOledbConnection: MARS property was set successfully.<br>
    C  Provider Release:9.00.1399.06<br>
    C  Using Provider SQLNCLI<br>
    C  OpenOledbConnection: MARS property was set successfully.<br>
    C  Cache sizes: header 68 bytes, 20000 names (31520000 bytes), 1000 dynamic statements (5672000 bytes), total 37192068 bytes<br>
    C  Using shared procedure name cache UPAYWEB1_UFTUFT_UFT_MEM initialized by another process.<br>
    C  Connected to db server : [UPAYWEB1] server_used : [np:(local)], dbname: UFT, dbuser: uft<br>
    C  pn_id:UPAYWEB1_UFTUFT_UFT<br>
    C  Not using MARS (on sql 8.0)<br>
    B  Connection 0 opened<br>
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost          <br>
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20090727 112454 UPAYWEB1        <br>
    C  The IRow interface is supported by this OLEDB provider<br>
    M  db_connect o.k.<br>
    I  MtxInit: 0 0 0<br>
    M  SHM_PRES_BUF               (addr: 0AD60040, size: 4400000)<br>
    M  SHM_ROLL_AREA          (addr: 5EF60040, size: 160563200)<br>
    M  SHM_PAGING_AREA          (addr: 0B1A0040, size: 72417280)<br>
    M  SHM_ROLL_ADM               (addr: 0F6C0040, size: 1603610)<br>
    M  SHM_PAGING_ADM          (addr: 0F850040, size: 525344)<br>
    M  ThCreateNoBuffer          allocated 540152 bytes for 1000 entries at 0F8E0040<br>
    M  ThCreateNoBuffer          index size: 3000 elems<br>
    M  ThCreateVBAdm          allocated 12160 bytes (50 server) at 0F970040<br>
    X  EmInit: MmSetImplementation( 2 ).<br>
    X  <ES> client 0 initializing ....<br>
    X  Using implementation flat<br>
    X  ES initialized.<br>
    C  <br>
    C Mon Jul 27 11:24:58 2009<br>
    C  The IRow interface is supported by this OLEDB provider<br>
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 8<br>
    C  Using Provider SQLNCLI<br>
    C  OpenOledbConnection: MARS property was set successfully.<br>
    B  dbtbxbuf: Buffer TABL  (addr: 146900C8, size: 30000000, end: 1632C448)<br>
    B  dbtbxbuf: Profile: max_objects = 5000, displace = 1, reorg = 1<br>
    B  dbtbxbuf: request_unit = 2000, sync_reload = 5, inval_reload = 5<br>
    B  dbtbxbuf: protect_shm = 0, force_checks = 0<br>
    B  dbtbxbuf: tsize_retry = 14304000<br>
    B  ***LOG BB0=> buffer TABL       started with length 30000000   bytes [dbtbxbuf#7 @ 15714] [dbtbxbuf1571 4]<br>
    B  dbtbxbuf: Buffer TABLP (addr: 163300C8, size: 10240000, end: 16CF40C8)<br>
    B  dbtbxbuf: Profile: max_objects = 500, displace = 1, reorg = 1<br>
    B  dbtbxbuf: request_unit = 2000, sync_reload = 5, inval_reload = 5<br>
    B  dbtbxbuf: protect_shm = 0, force_checks = 0<br>
    B  dbtbxbuf: tsize_retry = 5047296<br>
    B  ***LOG BB0=> buffer TABLP      started with length 10240000   bytes [dbtbxbuf#7 @ 15714] [dbtbxbuf1571 4]<br>
    B  dbtbxbuf: Reading TBX statistics:<br>
    B  dbtbxbuf: Opening C:\usr\sap\UFT\DVEBMGS01\data\tbxnew failed (No such file or directory).<br>
    B  dbtbxbuf: Renaming C:\usr\sap\UFT\DVEBMGS01\data\tbxnew to C:\usr\sap\UFT\DVEBMGS01\data\tbxstat failed (No such file or directory).<br>
    B  dbtbxbuf: 0 object entries precreated<br>
    C  sloledb.cpp [ParamStmtExec,line 11888]: Error/Message: (err 8180, sev 0), Statement(s) could not be prepared.<br>
    C  Procname: [##Y3UPAYWEB1uft00000037400000000002112455]<br>
    C  sloledb.cpp [ParamStmtExec,line 11888]: Error/Message: (err 208, sev 16), Invalid object name 'DDLOG'.<br>
    C  Procname: [##Y3UPAYWEB1uft00000037400000000002112455]<br>
    C  ParamStmtExec failed.  HR 80040e14 DBSL retcode 103. stmt: [SELECT MAX(SEQNUMBER) AS c FROM DDLOG ]<br>
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum: 112017<br>
    C  DbSlRead - Error 103 (dbcode 208) on open<br>
    C  DbSlRead - <##Y3UPAYWEB1uft00000037400000000002112455><br>
    C  DbSlRead - Error 103 (dbcode 208) on fetch<br>
    C  DbSlRead - <##Y3UPAYWEB1uft00000037400000000002112455><br>
    B  ***LOG BZY=> unexpected return code 103        calling SEL        [dbsynseq#1 @ 255] [dbsynseq0255 ]<br>
    B  db_syinit failed<br>
    M  *** ERROR => ThCallHooks: event handler db_init for event CREATE_SHM failed [thxxtool3.c  252]<br>
    M  *** ERROR => ThIPCInit: hook failed [thxxhead.c   1901]<br>
    M  ***LOG R19=> tskh_init, ThIPCInit ( TSKH-IPC-000001) [thxxhead.c   1359]<br>
    M  in_ThErrHandle: 1<br>
    M  *** ERROR => tskh_init: ThIPCInit (step 1, th_errno 17, action 3, level 1) [thxxhead.c   9413]<br>
    M  <br>
    M  Info for wp 0<br>
    M  <br>
    M    stat = 4<br>
    M    reqtype = 1<br>
    M    act_reqtype = -1<br>
    M    rq_info = 0<br>
    M    tid = -1<br>
    M    mode = 255<br>
    M    len = -1<br>
    M    rq_id = 65535<br>
    M    rq_source = 255<br>
    M    last_tid = 0<br>
    M    last_mode = 0<br>
    M    int_checked_resource(RFC) = 0<br>
    M    ext_checked_resource(RFC) = 0<br>
    M    int_checked_resource(HTTP) = 0<br>
    M    ext_checked_resource(HTTP) = 0<br>
    M    report = >                                        <<br>
    M    action = 0<br>
    M    tab_name = >                              <<br>
    M  <br>
    M  *****************************************************************************<br>
    M  *<br>
    M  *  LOCATION    SAP-Server upayweb1_UFT_01 on host upayweb1 (wp 0)<br>
    M  *  ERROR       tskh_init: ThIPCInit<br>
    M  *<br>
    M  *  TIME        Mon Jul 27 11:24:58 2009<br>
    M  *  RELEASE     640<br>
    M  *  COMPONENT   Taskhandler<br>
    M  *  VERSION     1<br>
    M  *  RC          17<br>
    M  *  MODULE      thxxhead.c<br>
    M  *  LINE        9589<br>
    M  *  COUNTER     1<br>
    M  *<br>
    M  *****************************************************************************<br>
    M  <br>
    M  PfStatDisconnect: disconnect statistics<br>
    M  Entering TH_CALLHOOKS<br>
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP<br>
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   730]<br>
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  252]<br>
    M  Entering ThSetStatError<br>
    M  Entering ThReadDetachMode<br>
    M  call ThrShutDown (1)...<br>
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 3740) [dpnttool.c   357]<br>

  • Unable to open RFC connection to SAP System NSP

    Hi all,
    During installation i am getting an error which is as follows,
    "Unable to open RFC connection to SAP System NSP.
    Solution: Start the system."
    And the second problem is that there are no connections shown in SAPGUI.
    Please help me out.
    Thanking you,
    Kranthi

    HI Kranthi,
    Have you checked this thread NW Preview Installation error?
    Regards

  • SAP R/3 installation - FRF-00007  Unable to open RFC connection

    Hi all
    I install SAP R/3 Enterprise SR1 with SuSE Linux Enterprise server 9 and SAPDB 7.3.28. At the end of the installation exactly on the " Starting RFC Jobs (post processing" the following problem begins.
    <b>in the LOG INSTALLATION PROGRESS</b>
    See '/sapmnt/RRP/exe/startsap all DVEBMGS00' output in '/sapinstdb/startsap.log'.
    INFO 2006-07-27 16:50:47
    '/sapmnt/RRP/exe/startsap all DVEBMGS00' returned with '0'.
    PHASE 2006-07-27 16:50:49
    Prepare Starting RSWBOINS, RADDBDIF
    INFO 2006-07-27 16:50:49
    RFC parameter CLIENT was set to value 000.
    INFO 2006-07-27 16:50:49
    RFC parameter USER was set to value DDIC.
    INFO 2006-07-27 16:50:49
    RFC parameter LCHECK was set to value 1.
    INFO 2006-07-27 16:50:49
    RFC parameter PCS was set to value 1.
    INFO 2006-07-27 16:50:49
    RFC parameter LANG was set to value EN.
    INFO 2006-07-27 16:50:49
    RFC parameter ASHOST was set to value rpone.
    INFO 2006-07-27 16:50:49
    RFC parameter SYSNR was set to value 00.
    INFO 2006-07-27 16:50:49
    RFC connection information checked successfully.
    ERROR 2006-07-27 16:50:59
    FRF-00007  Unable to open RFC connection.
    ERROR 2006-07-27 16:50:59FRF-00063  RFC logon failed with message: Connect to SAP gateway failedConnect_PM  GWHOST=rpone, GWSERV=sapgw00, ASHOST=rpone, SYSNR=00
    ERROR 2006-07-27 16:50:59
    FJS-00012  Error when executing script.
    <b>IN THE SHELL - KONSOLE</b>
    TRACE      [iaxxccntrl.cpp:595]
               CController::stepExecuted()
    The step StartSAPSystem with key SAPSYSTEM|ind|ind|ind|ind|ind|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPInstancePrepare|ind|ind|ind|ind|ind|0|StartSAPSystem|ind|ind|ind|ind|ind|0|StartSAPSystem has been executed successfully.
    TRACE      [iaxxejsexp.cpp:138]
               EJS_Installer::writeTraceToLogBook()
    t_SAPComponent_SAPSystemLogon_SHARED.insertRow(), inserting
    TRACE      [iaxxccntrl.cpp:595]
               CController::stepExecuted()
    The step sCopytSAPSystemsLogon with key SAPSYSTEM|ind|ind|ind|ind|ind|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Rfc_Jobs|ind|ind|ind|ind|ind|0|sCopytSAPSystemsLogon has been executed successfully.
    PHASE      2006-07-27 16:50:49 [iaxxccolwk.cpp:328]
               CCheckCollectingWalker::printPhaseInfo()
    Prepare Starting RSWBOINS, RADDBDIF
    TRACE      [iaxxclib.cpp:56]
               load()
    Opened iamodrfc.so
    TRACE      [iaxxejsexp.cpp:138]
               EJS_Installer::writeTraceToLogBook()
    Connect to SAP gateway failed
    Connect_PM  GWHOST=rpone, GWSERV=sapgw00, ASHOST=rpone, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       connection to partner broken
    TIME        Thu Jul 27 16:50:59 2006
    RELEASE     620
    COMPONENT   NI (network interface)
    VERSION     36
    RC          -6
    MODULE      niuxi_mt.c
    LINE        1237
    DETAIL      NiPRead (0.0.0.0/0)
    SYSTEM CALL recv
    ERRNO       104
    ERRNO TEXT  Connection reset by peer
    COUNTER     3
    Transaction begin ********************************************************
    TRACE      [iaxxbrfc.cpp:119]
               CIaRfc::CIaRfc
    Instance for SAP system module was created.
    INFO       2006-07-27 16:50:49 [iaxxrfcimp.cpp:431]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter CLIENT was set to value 000.
    INFO       2006-07-27 16:50:49 [iaxxrfcimp.cpp:431]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter USER was set to value DDIC.
    INFO       2006-07-27 16:50:49 [iaxxrfcimp.cpp:431]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter LCHECK was set to value 1.
    INFO       2006-07-27 16:50:49 [iaxxrfcimp.cpp:431]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter PCS was set to value 1.
    INFO       2006-07-27 16:50:49 [iaxxrfcimp.cpp:431]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter LANG was set to value EN.
    INFO       2006-07-27 16:50:49 [iaxxrfcimp.cpp:431]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter ASHOST was set to value rpone.
    INFO       2006-07-27 16:50:49 [iaxxrfcimp.cpp:431]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter SYSNR was set to value 00.
    INFO       2006-07-27 16:50:49 [iaxxrfcimp.cpp:571]
               CAbRfcImpl::checkConnectInfo
    RFC connection information checked successfully.
    ERROR      2006-07-27 16:50:59 [iaxxrfcimp.cpp:481]
               CAbRfcImpl::openRfcConn
    FRF-00007  Unable to open RFC connection.
    TRACE      [iaxxrfcimp.cpp:482]
               CAbRfcImpl::openRfcConn
    Failed to open RFC connection
    TRACE      [iaxxrfcimp.cpp:485]
               CAbRfcImpl::openRfcConn
    Connect to SAP gateway failed
    Connect_PM  GWHOST=rpone, GWSERV=sapgw00, ASHOST=rpone, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       connection to partner broken
    TIME        Thu Jul 27 16:50:59 2006
    RELEASE     620
    COMPONENT   NI (network interface)
    VERSION     36
    RC          -6
    MODULE      niuxi_mt.c
    LINE        1237
    DETAIL      NiPRead (0.0.0.0/0)
    SYSTEM CALL recv
    ERRNO       104
    ERRNO TEXT  Connection reset by peer
    COUNTER     3
    ERROR      2006-07-27 16:50:59
               CJSlibModule::writeLogEntry()
    FRF-00063  RFC logon failed with message: Connect to SAP gateway failed
    Connect_PM  GWHOST=rpone, GWSERV=sapgw00, ASHOST=rpone, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       connection to partner broken
    TIME        Thu Jul 27 16:50:59 2006
    RELEASE     620
    COMPONENT   NI (network interface)
    VERSION     36
    RC          -6
    MODULE      niuxi_mt.c
    LINE        1237
    DETAIL      NiPRead (0.0.0.0/0)
    SYSTEM CALL recv
    ERRNO       104
    ERRNO TEXT  Connection reset by peer
    COUNTER     3
    Transaction end **********************************************************
    TRACE      [iaxxejsbas.hpp:156]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown exception
    ERROR      2006-07-27 16:50:59 [iaxxejsctl.cpp:241]
               EJS_ControllerImpl::executeScript()
    FJS-00012  Error when executing script.
    TRACE      [iaxxgenimp.cpp:428]
               processUserInput()
    got notification...
    TRACE      [iaxxsubjct.cpp:58]
               notify()
    releasing notifyLock
    DO YOU HAVE SOME IDEA;  HOW I CAN SOLVING THIS PROBLEM
    Thanks
    Jose Marcos

    Hi Johanes
    Thank you very much fot your email
    Sorry Im new in this Installation
    I have some questions.
    I see the SPdent, and I dont have any SP Installed
    <b>In the etc/host I have</b>:
    hosts         This file describes a number of hostname-to-address
                  mappings for the TCP/IP subsystem.  It is mostly
                  used at boot time, when no name servers are running.
                  On small systems, this file can be used instead of a
                  "named" name server.
    Syntax:
    IP-Address  Full-Qualified-Hostname  Short-Hostname
    127.0.0.1       localhost
    special IPv6 addresses
    ::1             localhost ipv6-localhost ipv6-loopback
    fe00::0         ipv6-localnet
    ff00::0         ipv6-mcastprefix
    ff02::1         ipv6-allnodes
    ff02::2         ipv6-allrouters
    ff02::3         ipv6-allhosts
    192.168.101.29  rpone.local rpone
    I need to install the SP?
    What IP I need to delete ?
    Regards
    Jose

  • ORA-31640: unable to open dump file "/restore/psdwh/exp_dataONLY_iccs_25062

    Hi,
    Version 11203
    I am trying to import schema into exadata machine using impdp.
    The impdp is failed to open dump file.
    Starting "ICCS"."SYS_IMPORT_FULL_01": userid=iccs/******** full=y TABLE_EXISTS_ACTION=APPEND
    DIRECTORY=EXP_FOR_EXADATA PARALLEL=4 DUMPFILE=exp_dataONLY_iccs_25062012_%U.dmp LOGFILE=exp_dataONLY_iccs_25062012.log
    Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
    ORA-31693: Table data object "ICCS"."INF_CALL_ERR" failed to load/unload and is being skipped due to error:
    ORA-31640: unable to open dump file "/restore/psdwh/exp_dataONLY_iccs_25062012_04.dmp" for read
    ORA-19505: failed to identify file "/restore/psdwh/exp_dataONLY_iccs_25062012_04.dmp"
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    ORA-31693: Table data object "ICCS"."CC_AGG3" failed to load/unload and is being skipped due to error:
    ORA-31640: unable to open dump file "/restore/psdwh/exp_dataONLY_iccs_25062012_02.dmp" for read
    ORA-19505: failed to identify file "/restore/psdwh/exp_dataONLY_iccs_25062012_02.dmp"
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    . . imported "ICCS"."CUST_S"                         19.78 MB  580379 rows
    . . imported "ICCS"."CUST_SUM_CD"                    16.79 MB  843460 rows
    ORA-31693: Table data object "ICCS"."BILL_CUST_SALE_TMP_C" failed to load/unload and is being skipped due to error:
    ORA-31640: unable to open dump file "/restore/psdwh/exp_dataONLY_iccs_25062012_02.dmp" for read
    ORA-19505: failed to identify file "/restore/psdwh/exp_dataONLY_iccs_25062012_02.dmp"
    .....I verified that the file is exist in the file system :
    [oracle@dm01db01 psdwh]$ ls -l /restore/psdwh/exp_dataONLY_iccs_25062012_04.dmp
    -rwxrwxrwx 1 oracle oinstall 701464576 Jun 25 10:36 /restore/psdwh/exp_dataONLY_iccs_25062012_04.dmpI verified that the file has the same permission as oracle user :
    dm01db01{oracle} /home/oracle >id
    uid=1000(oracle) gid=1001(oinstall) groups=101(fuse),1001(oinstall),1002(dba)I also verified that i have a the right permission on the directory ABOVE :
    cd /restore
    ls -l
    drwxrwxrwx  3 oracle oinstall         9216 Jun 27 19:15 psdwhI veified that the directory exists:
    SQL> select * from dba_directories;
    OWNER      DIRECTORY_NAME   DIRECTORY_PATH
    SYS       EXP_FOR_EXADATA   /restore/psdwhI have read,write permission on the directory to PUBLIC , and as you can see there are some tables which successfully imported:
    . . imported "ICCS"."CUST_S"                         19.78 MB  580379 rows
    . . imported "ICCS"."CUST_SUM_CD"                    16.79 MB  843460 rowsPlease note that i am getting such an error each time that i am using expdp with PARALLEL and having %U in the dumpfile name .
    e.g:
    expdp userid=iccs/iccs@psdwh  content=data_only EXCLUDE=statistics DIRECTORY=EXP_FOR_EXADATA
    PARALLEL=4 DUMPFILE=exp_dataONLY_iccs_25062012_%U.dmp LOGFILE=exp_dataONLY_iccs_25062012.logIf i am exporting without PARALLEL and %U , mean having just one dump file , i have no problem at all to import the file.
    Any Advice ?
    Thanks

    The issue is most likely due to the directory not being accessible from all nodes in the rac. If it works with parallel=1 but not parallel>1 then the other nodes that are being used to import data, and since the file exists, then please check that the disk is accessible from all nodes in the rack.
    Dean

  • ORA-27041: unable to open file

    Hi,
    while opening the DB by giving startup command ,i am getting following error
    Errors in file d:\oracle\admin\pdonds\udump\pdonds_ora_4120.trc:
    ORA-00206: error in writing (block 1, # blocks 1) of controlfile
    ORA-00202: controlfile: 'C:\ORACLE\CONTROLFILE2\CONTROL02.CTL'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 5) Access is denied.
    please tell me ,where is the mistake.

    Hi..
    Check permission on control file.
    Do you have a pfile of the database. If , you have remove this controlfile (CONTROL02.CTL) entry from control_files in the pfile,and try to start the database.
    If you don't have a pfile, do
    sql> startup
    --- You will get error.Database will not go to mount stage.
    sql> alter system set control_files='location\CONTROL01.CTL','location\CONTROL03.CTL' scope=spfile;
    sql> shu immediate;
    sql> startup -- This will start the database.
    Anand
    Edited by: Anand... on Jan 6, 2009 11:20 AM

  • Error : FRF-00007 Unable to open RFC connection

    Hi All,
    I'm installing SAP BW 3.5 for oracle 9.2 and patch 10.1  on AIX 5.3server.
    The end of installation 'Starting RFC jobs" i got the error.
    Log Details:
    ERROR 2008-07-28 19:20:02
    FRF-00007  Unable to open RFC connection.
    ERROR 2008-07-28 19:20:02
    FRF-00063  RFC logon failed with message: Failed: Connect to SAP gateway failedConnect_PM  GWHOST=biqci, GWSERV=sapgw00, ASHOST=biqci, SYSNR=00
    Can anybody help me to solve this issue
    Regards,
    M.M Selvakumaar
    09739798709
    subject changed by moderator!... Read the "Rules of Engagement"
    Edited by: Juan Reyes on Jul 28, 2008 4:03 PM

    Hi juan,
    Thanks for Ur reply
    As per ur advice : I checked the path etc/services  
    Everything is fine there 
    Then
    Solution:
    I stopped the sap service and restart the service then I continued the installation without error
    After installation I checked T-code: SICK there I got one error 
    Error Details:
    SAP System Check
    OS release AIX 3 5 00C5E98B4C00 is not supported with this kernel (640)
    Severe problems were detected during initial system check.
    Please, do not use that system before fixing these problems.
    So please help me to solve the issue
    Regards,
    MM.selvakumar

  • FRF-00007  Unable to open RFC connection.

    I am trying to install SAP R/3 Enterprise 4.70 on Windows Server 2000, database Oralce 9.2 and I want to install entire SAP system in 1 Computer.
    I have been installed Oracle 9.2 and SAP's center service successfully.
    But when i install SAP's database service it throws error as below and
    teminated.
    ERROR 2006-12-04 01:01:08
    FRF-00007  Unable to open RFC connection.
    ERROR 2006-12-04 07:03:21
    FRF-00063  RFC logon failed with message: Failed: Connect to SAP gateway failedConnect_PM  GWHOST=diane, GWSERV=sapgw00, ASHOST=diane, SYSNR=00

    Hi,
    I had a similar error, with windows 2000 advanced server, oracle 9.2.0.6, SAP BW 3.1.
    To resolve this error please upgrade your kernel.
    download the kernel. say 640
    uncar the files sapdbexe.sar and sapexe.sar using the sapcar.exe
    on dos prompt go to the particular directory where u have downloaded the above sar files using "cd" command.
    SAPCAR -xvf <your-SAR-file>   to uncar the files.
    shut down sap using the MMC.
    then in services stop saposcol
    oracle service sapserviceSID
    and the sapSID_##
    now just copy the new kerlnel files you have uncared above into the /usr/sap/SID/exe/run/ directory.
    start the services you stopped and start SAP using the MMC.
    Now you should be able to logon. Somtimes the MMC shows the yellow status due to missing workprocess status. However the system should work fine.
    Manmath.

Maybe you are looking for

  • I just bought a song on iTunes it plays on my computer but will not show up on my iPhone.

    I have updated my iTune but the song still won't sync to my iPhone. What is the problem?

  • Adapter for Iphone 4s

    Im moving to Ireland and I need to buy an adapter.  I tried to purchase from Apple ireland but it wouldnt allow shipping to USA I dont want to buy international pack just the adapter.  I want to have it by 3/3/14

  • EasyVPN :crypto ipsec client ezvpn xauth

    Hi Everytime when I reboot a easyVPN client it is prompting for username and password by prompting following command "crypto ipsec client ezvpn xauth". How do I make connection persistent, so that it won't ask for username and password during next re

  • Smartcard auth errors

    Hi all! I've tried to set up smart card logon to mac os x mavericks. My SC is RuToken ECP 64Kb. My steps: 1. Installed opensc-0.13.0 2. Installed rutoken support poackage (include librtpkcs11ecp.so and tokend for RuToken) 3. Generated RSA/2048 keys o

  • Order of numeric string of database column

    I have database column that has varchar2 type. I tried to sort it in order but It would not work. It behaves like this. 1 10 11 15 2 20 3 30.... What I want is this 1 2 3 10 11 15 20 30 .... I tried format mask but it does not help. Please help.