10.1.3 on Fedora Core6 - Error

Hi All,
I am installing oracle 10g AS (10.1.3) on Fedora Core 6 but when installation process reaches to 89% (Linking 'oracle Net required support Files 10.1.0.2.0'), one error diolog box apear on installation screen showing the following error.
Error in invoking target 'ntcontab.0' of makfile '/apps/oracle/product/10.1.3/10g_AS1/network/lib/ins_net_client. mk'.
If I ignore it then Net configuration assistant fails.
Please help me out... thanks a lot in advance :)

Problem solved ! GCC was missing...
Just for the reference, we installed the following RPMS:
libgomp-4.1.1-30.i386.rpm
glibc-headers-2.5-3.i386.rpm
glibc-devel-2.5-3.i386.rpm
gcc-4.1.1-30.i386.rpm
Thanks :)

Similar Messages

  • Can I install Oracle 6i form in fedora core6

    Hi.
    Currently I installed Oracle 10g database on fedora core 6...
    can i connect oracle 6i form with oracle 10g database in fedora core 6..
    please guide me..
    thanks in advance..
    [email protected]

    Hi,
    I need some help regarding installation of 10g developer suite on Fedora 6. I 've installed it with some errors, but as I run sh rwbuilder.sh the report screen splashes for a while & then terminal shows
    $ X error of failed request :BadWindow(Invalid window parameters)
    I'm trying this for last 1 week, but still not get any success. By the way I'm using jdk-1.6, as I've Oracle 11.5.10.2 installed in my system.
    Thanks
    Sandip

  • How to install oracle 9i in fedora core6

    Hi.
    Currently I trying to install installed Oracle 9i database on fedora core 6...
    I am fecing some problem during this installation......
    please give me step by step procedure for oracle 9i installation in fedora core 6...
    I tried to install oracle10g in fedora core 6, its working fine but Currerntly I want to work in oracle 9i......
    please guide me..
    thanks in advance..
    [email protected]

    Duplicate Thread:
    Hpw to install oracle 9i in fedora core 6
    More detail over there.
    ~Jer

  • Starting coldfusion server on fedora core6

    I am having problems in starting the coldfusion mx server.
    Coldfusion has been installed but problems in starting it. After
    installation i got this message.
    To continue with your installation, go to
    /opt/coldfusionmx/bin and type
    "./coldfusion start" to start your server.
    I get the code below when trying to start the server when
    logged in as root. Could some please help?

    you did not say which cf version you are running....
    for cfmx7/cf8 on win xp:
    go to Control Panel -> Administrative Tools -> Services
    in the list of services look for Coldfusion services (should
    be 3-4
    there). the main one is called Application Server. make sure
    the status
    next to the name shows "Started". if not, double-click on
    that service
    and in the window that opens select Automatic for Startup
    Type, click
    Start button and then OK.
    NOTE: even with Automatic Startup selected i still have CF
    not starting
    with win xp sometimes on my dev computer and have to manually
    start it.
    If the status of the service in the Services panel shows
    "Started", but
    you can't view any .cfm pages, then try restarting the
    service, and if
    that does not help look into re-configuring the web server
    connectors...
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • ORA-01401 in SELECT statement !

    Hi all,
    We are facing a Strange problem.
    Oracle Database 10.2.0.1 on Fedora Core6
    AL32UTF8 Charset, NLS_LENGTH_SEMANTICS = CHAR
    In a particular select statement, the database gives out ORA-01401 error:
    ORA-01401: inserted value too large for column
    Here is the select statement:
    SELECT   a.loc_nbr AS loc_nbr, a.loc_type_code AS loc_type_code,
             TO_CHAR (a.loc_eff_dt, 'yyyy-mm-dd') AS loc_eff_dt,
             TO_CHAR (a.loc_end_dt, 'yyyy-mm-dd') AS loc_end_dt,
             a.loc_nm AS loc_nm, a.loc_city AS loc_city,
             a.loc_st_prov AS loc_st_prov, b.acct_loc_nbr AS acct_loc_nbr,
             c.noofres AS routes
        FROM loc a,
             (SELECT   c.acct_loc_nbr AS acct_loc_nbr,
                       a.loc_sys_nbr AS loc_sys_nbr_loc
                  FROM loc a, loc_attr c
                 WHERE a.loc_ctry_code = '040'
                   AND a.loc_co_code = '001'
                   AND a.loc_type_code LIKE '03%'
                   AND a.loc_eff_dt <= TO_DATE ('2008-02-22', 'yyyy-mm-dd')
                   AND a.loc_end_dt >= TO_DATE ('2008-02-22', 'yyyy-mm-dd')
                   AND a.loc_nm > '%'
                   AND LPAD (a.loc_nbr, 38, '0') LIKE '%'
                   AND a.loc_short_nm LIKE '%'
                   AND a.loc_city LIKE '%'
                   AND NVL (a.loc_st_prov, '     ') LIKE '%'
                   AND c.loc_ctry_code = a.loc_ctry_code
                   AND c.loc_co_code = a.loc_co_code
                   AND c.loc_nbr = a.loc_nbr
                   AND c.loc_type_code = a.loc_type_code
                   AND c.loc_attr_eff_dt <= a.loc_eff_dt
                   AND c.loc_attr_end_dt >= a.loc_eff_dt
              ORDER BY a.loc_nbr) b,
             (SELECT   COUNT (b.loc_nbr) AS noofres,
                       a.loc_sys_nbr AS loc_sys_nbr_rt
                  FROM loc a, rt_loc_assgn b
                 WHERE a.loc_ctry_code = '040'
                   AND a.loc_co_code = '001'
                   AND a.loc_type_code LIKE '03%'
                   AND a.loc_eff_dt <= TO_DATE ('2008-02-22', 'yyyy-mm-dd')
                   AND a.loc_end_dt >= TO_DATE ('2008-02-22', 'yyyy-mm-dd')
                   AND a.loc_nm > '%'
                   AND LPAD (a.loc_nbr, 38, '0') LIKE '%'
                   AND a.loc_short_nm LIKE '%'
                   AND a.loc_city LIKE '%'
                   AND NVL (a.loc_st_prov, '     ') LIKE '%'
                   AND b.ctry_code = a.loc_ctry_code
                   AND b.co_code = a.loc_co_code
                   AND b.loc_nbr = a.loc_nbr
                   AND (   a.loc_eff_dt BETWEEN b.rt_loc_eff_dt AND b.rt_loc_end_dt
                        OR a.loc_end_dt BETWEEN b.rt_loc_eff_dt AND b.rt_loc_end_dt
                   AND b.loc_svc_type_code = 'S'
              GROUP BY a.loc_sys_nbr) c
       WHERE a.loc_sys_nbr = b.loc_sys_nbr_loc(+)
         AND a.loc_sys_nbr = c.loc_sys_nbr_rt(+)
         AND a.loc_ctry_code = '040'
         AND a.loc_co_code = '001'
         AND a.loc_type_code LIKE '03%'
         AND a.loc_eff_dt <= TO_DATE ('2008-02-22', 'yyyy-mm-dd')
         AND a.loc_end_dt >= TO_DATE ('2008-02-22', 'yyyy-mm-dd')
         AND a.loc_nm > '%'
         AND LPAD (a.loc_nbr, 38, '0') LIKE '%'
         AND a.loc_short_nm LIKE '%'
         AND a.loc_city LIKE '%'
         AND NVL (a.loc_st_prov, '     ') LIKE '%'
    ORDER BY a.loc_nmWorkarounds:
    - If we comment ORDER BY clause, the query works fine
    - On line 49, if we surround loc_sys_nbr with TRIM() function, the query works fine
    - On line 60, if we use NVL (a.loc_st_prov, '' ) LIKE '%', the query works fine
    All these fields are CHAR() datatype.
    Any idea what is happening here?
    Thanks in advance :)

    Thanks Satish,
    We are hit by the bug 5874989 relating to impdp tool.

  • Intelligent Agent and OEM

    I find the node, but not coupling the DataBase.
    My configuration
    - OEM Oracle 9i (Windows 2000)
    - DB Oracle9 and 8i (Solaris 8 and Windows 2000)

    hello,
    I have a problem with the installation of a agent in OEM on linux (Fedora).
    this error has occur :
    Oracle9i Enterprise Edition Release 9.0.1.5.0 - Production
    With the Partitioning option
    JServer Release 9.0.1.4.0 - Production
    SQL> SQL> SQL> WEBSITE Creation FAILED = EM Website ERR:Host not found
    CREATE DEFAULT WEBSITE FAILED : ORA-20998: Host not found
    BEGIN
    ERROR at line 1:
    ORA-20999: CREATE DEFAULT WEBSITE FAILED : ORA-20998: Host not found
    ORA-06512: at line 234
    Disconnected from Oracle9i Enterprise Edition Release 9.0.1.5.0 - Production
    With the Partitioning option
    JServer Release 9.0.1.4.0 - ProductionWebsite target creation script failed.
    Apr 19, 2004 11:26:04 AM oracle.agent.ConfigureAgent startAgentService
    INFO: Starting the agent...
    Starting the agent...TZ set to Europe/ParisOracle Enterprise Manager 10g Release 10.1.0.2.0.
    Copyright (c) 1996, 2004 Oracle Corporation. All rights reserved.Starting agent .................... failed.
    Apr 19, 2004 11:26:38 AM oracle.agent.ConfigureAgent startAgentService
    INFO: Started agent Successfully
    Started agent Successfully
    The Management Agent Configuration Assistant has failed. The following failures were recorded:
    Enterprise Manager Website target configuration failed.
    Agent Service Failed to start.
    Exit status: 1
    Configuration assistant "Agent Configuration Assistant" failed
    Can you help me please to resolve this problem.
    ps:
    OEM is succesfully installed in my computer.

  • OEM intelligent agent

    I'm running 8.0.5 on Red Hat 6.0. The system has been running happily for two months, but I'm now starting to play with the management tools and having a problem.
    When I start the OEM intelligent agent via
    "lsnctrl dbsnmp_start"
    I get the following error message in DBSNMPW.log:
    NMS-00315: Message 315 not found; No message file for product=network, facility=
    NMS
    From OEM Doc I found the following:
    NMS-00315: Failed to create tcl package index.
    Cause: The tcl package index could not be created.
    Action: Make sure all the shared libraries in the $ORACLE_HOME/network/agent/library directory are correct.
    I checked the $ORACLE_HOME/network/agent/library and found it was empty.
    I then started orainst and checked to see that OEM intelligent agent was installed, it shows as being installed
    Has anyone run into this problem? Does anyone have a solution?
    Thanks

    hello,
    I have a problem with the installation of a agent in OEM on linux (Fedora).
    this error has occur :
    Oracle9i Enterprise Edition Release 9.0.1.5.0 - Production
    With the Partitioning option
    JServer Release 9.0.1.4.0 - Production
    SQL> SQL> SQL> WEBSITE Creation FAILED = EM Website ERR:Host not found
    CREATE DEFAULT WEBSITE FAILED : ORA-20998: Host not found
    BEGIN
    ERROR at line 1:
    ORA-20999: CREATE DEFAULT WEBSITE FAILED : ORA-20998: Host not found
    ORA-06512: at line 234
    Disconnected from Oracle9i Enterprise Edition Release 9.0.1.5.0 - Production
    With the Partitioning option
    JServer Release 9.0.1.4.0 - ProductionWebsite target creation script failed.
    Apr 19, 2004 11:26:04 AM oracle.agent.ConfigureAgent startAgentService
    INFO: Starting the agent...
    Starting the agent...TZ set to Europe/ParisOracle Enterprise Manager 10g Release 10.1.0.2.0.
    Copyright (c) 1996, 2004 Oracle Corporation. All rights reserved.Starting agent .................... failed.
    Apr 19, 2004 11:26:38 AM oracle.agent.ConfigureAgent startAgentService
    INFO: Started agent Successfully
    Started agent Successfully
    The Management Agent Configuration Assistant has failed. The following failures were recorded:
    Enterprise Manager Website target configuration failed.
    Agent Service Failed to start.
    Exit status: 1
    Configuration assistant "Agent Configuration Assistant" failed
    Can you help me please to resolve this problem.
    ps:
    OEM is succesfully installed in my computer.

  • Error while installing Oracle 10g on Fedora Core 1

    Error while installing Oracle 10g on Fedora Core 1. After 40% of the Installation is thru, the progress bar is showing 40%, it gives error "Not connected to Oracle" and the installation has to be terminated.
    We have tried by using the on-line procedure and changing the required script to make believe it as said.

    Are you createing DB also???

  • Error while Installing SAP NetWeaver Testdrive sr1 in Fedora 7

    I am getting problen while Installing SAP NetWeaver Testdrive sr1 in Fedora 7
    I need to install   SAP Web Application Server 6.4 ,SAP NetWeaver Developer Studio,MAXDB7.5 in Fedora Core
    The package sapj2ee-srv-sapdb-6.40-2 is already installed.
    The package sapdb-7.5-2 is already installed.
    The package sapdb-db-log-7.5-2 is already installed.
    The package sapdb-db-files-7.5-2 is already installed.
    Found interface: eth8 . Alias is eth8:0
    ifconfig eth8:0 195.155.155.1 up
    LD_LIBRARY_PATH: Undefined variable.
    rm: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /sapdb/programs/bin/xuser: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    [: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    Can u suggest  what I need to do ? do I have to install any rpm

    Hi Debashis Mallick,
    it seems the program xuser need the libraries libdl.so.2 and libc.so.6 and don't find it.
    Both are in package glibc-2.6.x. ,maybe your have Version < 2.6 installed?
    Regards
    Andreas Filzer

  • Error in OWB installation in Fedora 7

    I tries to install OWB9.2 in Fedora 7 . While installing I got the error
    /media/OWB_9.2_Linux/Disk1/stage/Components/oracle.swd.jre/1.3.1.0.0/1/DataFiles/Expanded/jre/linux/bin/i386/native_threads/java: error while loading shared libraries: libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
    I checked libstdc++ in /usr/lib directory I got following link file as
    libstdc++-3-libc6.2-2-2.10.0.so libstdc++-libc6.2-2.so.3
    How I resolve the problem Please help

    The problem is solved. One more question I have, in the Expression Operator, we have two groups, the input group and the output group. But if there is a need to have some attibutes for storing temporary calculations as well, before assigning them to the attributes of the output group, then under which group should these be made? I am asking for something like a variable group where the attibutes for storing temporary calculations will be made and these attributes can be used by the output group for sending the values to the next transformation.
    Please help ..
    Regards
    Arnab

  • Fedora Core 6 Installation Errors

    Attempting to install Coldfusion on a Linux Fedora Core 6
    Server, and the error message I'm getting is this:
    quote:
    [root@master slokie]# ./coldfusion-702-lin.bin
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer
    archive...
    Configuring the installer for this system's environment...
    awk: error while loading shared libraries: libdl.so.2: cannot
    open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6:
    cannot open shared object file: No such file or directory
    /bin/ls: error while loading shared libraries: librt.so.1:
    cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6:
    cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6:
    cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6:
    cannot open shared object file: No such file or directory
    Launching installer...
    grep: error while loading shared libraries: libc.so.6: cannot
    open shared object file: No such file or directory
    /tmp/install.dir.7760/Linux/resource/jre/bin/java: error
    while loading shared libraries: libpthread.so.0: cannot open shared
    object file: No such file or directory
    These SO's exist in the /lib folder. Where is it trying to
    look and has anyone found it to work on a standard webserver with
    fc6?

    Review Steve's blog at
    http://www.talkingtree.com/blog/index.cfm/2006/12/6/Running-ColdFusion-MX-7-on-Fedora-Core -6-Linux.
    Read the links, too. This is an old topic now and a pretty standard
    installation procedure for installing CFMX on the newer unsupported
    linux platforms. I have used it for Mandriva and others.

  • Error in installation Oracle 8.1.6 on Fedora linux

    I am getting the following error message while installing Oracle 8i release 2 (8.1.6) for linux intel on Fedora Linux.
    "Symbol errorno, version GLIBC-2.0 not defined in libc.so.6 with link time reference (libzip.so)"
    Earlier I have sucessfully installed on Redhat linux 8.0 without any problems.
    Kindly help

    All the rpms mentioned in above link are already installed. the same error comes with Oracle 9i/AS also.
    I quote here the exact error message:-
    [oracle@sczopngs cdrom]$ ./runInstaller
    [oracle@sczopngs cdrom]$ Initializing Java Virtual Machine from /tmp/OraInstall/ jre/bin/jre. Please wait...
    /tmp/OraInstall/jre/lib/linux/native_threads/libzip.so: symbol errno, version GL IBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    I don't have newer version of Oracle for linux , but dont think a newer version will solve the above problem as the same message is coming with Oracle 9i/AS also when I tried just to test..
    This may problem with new relase of Linux Fedora with kernel 2.6.2.

  • Error in accessing database homepage for oracle10g in fedora 13

    hii there,
    i have installed oracle10g in fedora 13. and i got problem in accessing database home page and also sqlplus.follwing message i got...
    Unable to connect
    Firefox can't establish a connection to the server at 127.0.0.1:8080.
    * The site could be temporarily unavailable or too busy. Try again in a few
    moments.
    * If you are unable to load any pages, check your computer's network
    connection.
    * If your computer or network is protected by a firewall or proxy, make sure
    that Firefox is permitted to access the Web.

    What's the sqlplus error?

  • Error starting SQLPLUS after updating Fedora Core 5

    Hi,
    I ran "yum update" on fedora core 5 and now sqlplus does not start anymore. I get this error:
    sqlplus: error while loading shared libraries: /opt/oracle/xe/app/oracle/product/10.2.0/server/bin/../lib/libnnz10.so: cannot restore segment prot after reloc: Permission denied
    I understand it has something to do with the SELinux policy but how can I configure my system so Oracle still works AND the security policy still works ?
    Thanks !!!
    Coen

    Hello,
    This solution ( tail -f /var/log/audit/audit.log |tee oracle.log; audit2allow -M oracle < oracle.log; semodule -i oracle.pp)
    worked for me. Can somebody explain what it did (I don't understand from the man pages)? ALso, how did this come to be. This happened to me right after a fresh install, and the machine got bounced.
    All answers are apprecaited.
    Thanks,
    Edited by: user8674025 on Nov 27, 2009 9:59 AM

  • ORA-12560: TNS:protocol adapter error on Fedora Core 5

    Hi ,
    After installing the 10201_database_linux_x86_64 on Fedora Core5. The database is started fine on the server. The status of is Listener is also up. But when try to connect from client PC. I am getting ORA-12560: TNS:protocol adapter error error please help. me.
    Thanks,

    Here are my config files.
    On SERVER
    listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME =/u01/app/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = db10g)
    (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc1)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxxxx)(PORT = 1521))
    (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
    sqlnet.ora
    # Generated by Oracle configuration tools.
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT, HOSTNAME)
    tnsnames.ora
    # Generated by Oracle configuration tools.
    DB10G =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxxx)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = DB10G.WORLD)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    now when I issue lsnrctl start db10g i am getting following error.
    TNS-01151: Missing listener name, db10g, in LISTENER.ORA
    Please help me.

Maybe you are looking for

  • Contract no. field is required at the time of F-53

    HI, At the time of posting outgoing payment through F-53 i also want to enter contract no. (for recording document is cleared against which contract no.) but contarct no. field is not coming . I have already changed the field status of G/L  and field

  • Unable to open jpeg files with photoshop

    Hi, just installed the photoshop cc to a mac with mac os x 10.6.8 and when the user is tryinh to open a jpeg file get the following error mesage: "could not complete your request because the file was not found" Thanks

  • TS1383 My iPod touch charging pins are broken, but it still charged, now, its dead and it wont! Please help! It wont charge!

    A few of my ipod touch pins were broeken, but it charged just fine, i had to keep it plugged in all the time though. Two days ago, even though it was plugged in, it died. Ive tried every outlet and cord, but it just wont charge. it turns on, the appl

  • Sitemap to Bing WebMaster tools

    Hi, What is the best way to submit and verify a BC site in Bing Master Tools? I was able to due it in Googol by placing googol's provided code by adding a BC's Advance DNS record. Thanks

  • Editing copied layers

    I created a new layer and copied the contents of another layer into the new layer. Now whenever I edit the new layer the changes occur in the original layer as well. How can i fix that? I'm sure the answer is probably simpler than I think. at least I