DBAsupport.com Forums - Powered by vBulletin
Results 1 to 10 of 10

Thread: installation on 64-bit

  1. #1
    Join Date
    Jul 2004
    Location
    Pakistan
    Posts
    46

    installation on 64-bit

    hi
    i have dell poweredgr 1800 server with xeon 64-bit processor

    I have installaed Red Hat Enterprise Linux AS (v. 4 for 64-bit AMD64/Intel EM64T) on that and now trying to install
    Oracle Database 10g Release 2 (10.2.0.1.0) for Linux x86-64
    but facinf following error when work is 81% done
    pasting error from installation log file

    ************************
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'install' of makefile '/u01/oracle/product/10.2.0/db10g/ctx/lib/ins_ctx.mk'. See '/u01/oracle/oraInventory/logs/installActions2006-05-03_12-05-23PM.log' for details.
    Exception Severity: 1
    INFO: *** Cancel Dialog: ***
    INFO: User Selected: Stop installation of this component only.
    ************************
    I have completed all pre requisites, what could be the problem?

    Same type of error i see when i try to install application server 10g R2 i.e
    "Error in invoking target 'dm_on_ioracle' of makefile '/u01/rdbms/lib/ins_rdbms.mk' see logfile.... "

    any clue?

    regards
    Salman Ahmed Qureshi
    Lahore, Pakistan

  2. #2
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    you probably have got th wrong package versions of certain things

  3. #3
    Join Date
    Aug 2006
    Posts
    3

    10g Linux 64bit installing failing

    Hello,

    I am having the exact same issue as salmanucit. I am sure others will have this issue as well. Does anyone have additional information that will help?

    Please advise. I have been stuck here for days... I have installed all of the packages needed.

    Thank you.

  4. #4
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334

  5. #5
    Join Date
    Apr 2001
    Location
    Vadodara, India
    Posts
    249
    Below artical may be helpful to you.


    --------------------------------------------------

    Problem Description
    -------------------

    During the installation of Oracle 9i Release 2 (9.2.0.1) on Linux,
    the installation fails in the linking phase of context components.
    You receive the following error:

    Error in invoking target install of makefile $ORACLE_HOME/ctx/lib/ins_ctx.mk

    The messages written in $ORACLE_HOME/install/make.log are:

    /lib/libdl.so.2: undefined reference to `_dl_addr@GLIBC_PRIVATE'
    /lib/libdl.so.2: undefined reference to `_dl_open@GLIBC_PRIVATE'
    /lib/libdl.so.2: undefined reference to `_dl_close@GLIBC_PRIVATE'
    /lib/libdl.so.2: undefined reference to `_dl_sym@GLIBC_PRIVATE'
    /lib/libdl.so.2: undefined reference to `_dl_vsym@GLIBC_PRIVATE'
    collect2: ld returned 1 exit status
    make: *** [ctxhx] Error 1


    Solution Description
    --------------------

    Link line in $ORACLE_HOME/ctx/lib/ins_ctx.mk does not include '-ldl' option.
    Modify the 'ins_ctx.mk' from

    ctxhx: $(CTXHXOBJ)
    $(LINK) $(CTXHXOBJ) $(INSO_LINK)

    to

    ctxhx: $(CTXHXOBJ)
    $(LINK) -ldl $(CTXHXOBJ) $(INSO_LINK)

    and click Retry.


    Explanation
    -----------
    Oracle 9i Release 2 (9.2.0.1) is not certified on all distributions of Linux.
    You are probably installing the product on a non-certified Linux. The
    libdl.so is the Dynamic Loader library. On certified Linux distributions
    with Oracle 9.2, there is no need to specify -ldl for linking of context
    components.


    --------------------------------------------------

  6. #6
    Join Date
    Aug 2006
    Posts
    3
    bhattnirav,

    Thank you for providing some feedback. I attempted to update the ins_ctx.mk file with your suggestions and hit "retry" but it still did not work.

    However, the funny thing is, this is what my ins_ctx.mk file looks like:

    ctxhx: $(CTXHXOBJ32)
    $(LINK32) $(CTXHXOBJ32) $(INSO_LINK32)

    instead of:

    ctxhx: $(CTXHXOBJ)
    $(LINK) $(CTXHXOBJ) $(INSO_LINK)

    I am running this 10gR2 DB install from the 10201_database_Linux_x86_64.cpio file so I am assuming it is 64bit, on my 64bit Linux OS. However, the 32's at the end of the ctxhx: portion of ins_ctx.mk concern me.

    Do you think it's possible that this install is trying to install 32bit versus 64bit?

    Also, any other suggestions would be much appreciated.

    Thank you.

  7. #7
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    did you follow that web page from start to finish (ignore what bhattnirav said, its a load of rubbish)

  8. #8
    Join Date
    Aug 2006
    Posts
    3

    10g on Linux 64bit

    davey23uk,

    I actually missed that link the last time I scanned this site. I will look through it.

    thanks!

  9. #9
    Join Date
    May 2005
    Location
    Boracay
    Posts
    681
    Hi Friends,

    I want to experience LINUX too i havent touch any
    of its flavor yet. Where can i download a good free copy of this pls.

    Thanks a lot

  10. #10
    Join Date
    Aug 2006
    Posts
    26
    1.goto download binutils-2.15.92.0.2-15.0.0.0.2.x86_64.rpm
    location: http://oss.oracle.com/projects/compa.../files/RedHat/

    2.install it as root user
    # rpm -Uvh --force binutils-2.15.92.0.2-15.0.0.0.2.x86_64.rpm
    3.retry INSTALL oracle,it will success.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width