Solution for e2eme error during 64-bit Oracle 10g installation in linux

Source: Internet
Author: User

Linux 64-bitInstallOracle 10gHourE2eme ErrorThe solution is what we will introduce in this article. The detailed error log file is as follows:

 
 
  1. INFO: reference to `ldxnbeg’  
  2. /app/oracle/product/10/db_1/lib32//libnls10.a(lxecg2i.o)(.text+0×231): In function `lxecg2i’:  
  3. : undefined reference to `ldxdtd’  
  4. /app/oracle/product/10/db_1/lib32//libnls10.a(lxecg2i.o)(.text+0×314): In function `lxecg2i’:  
  5. : undefined reference to `ldxnbeg’  
  6. /app/oracle/product/10/db_1/lib32//libnls10.a(lxecg2i.o)(.text+0×340): In function `lxecg2i’:  
  7. : undefined reference to `ldxdfd’  
  8. /app/oracle/product/10/db_1/lib32//libnls10.a(lxecg2l.o)(.text+0x13f): In function `lxecg2l’:  
  9. : undefine  
  10. INFO: d reference to `ldxnbeg’  
  11. /app/oracle/product/10/db_1/lib32//libnls10.a(lxecg2l.o)(.text+0x16f): In function `lxecg2l’:  
  12. : undefined reference to `ldxdtd’  
  13. /app/oracle/product/10/db_1/lib32//libnls10.a(lxecg2l.o)(.text+0x48b): In function `lxecg2l’:  
  14. : undefined reference to `ldxnbeg’  
  15. /app/oracle/product/10/db_1/lib32//libnls10.a(lxecg2l.o)(.text+0x4b7): In function `lxecg2l’:  
  16. : undefined reference to `ldxdfd’  
  17. /app/oracle/product/10/db_1/lib32//libunls10.a(lxu4tstc.o)(.text+0x8b4): In function `lxu4TstClsXMLPub  
  18. INFO: idChar0′:  
  19. : undefined reference to `lxpTstClsXMLPubidCharTbl’  
  20. /app/oracle/product/10/db_1/lib32//libunls10.a(lxu4dec.o)(.text+0x18b): In function `lxu4Decomposition’:  
  21. : undefined reference to `lxujmd’  
  22. collect2: ld returned 1 exit status  
  23. make[1]: *** [/app/oracle/product/10/db_1/sysman/lib/e2eme] Error 1  
  24. make: *** [e2eme] Error 2  
  25. INFO: End output from spawned process.  
  26. INFO: ———————————-  
  27. INFO: Exception thrown from action: make  
  28. Exception Name: MakefileException  
  29. Exception String: Error in invoking target ‘agent nmo nmb’ of makefile ‘/app/oracle/product/10/db_1/sysman/lib/ins_sysman.mk’.  
  30. See ‘/app/oracle/oraInventory/logs/installActions2011-07-08_09-25-48PM.log’ for details. 

Solution:

1. Check whether the required package is fully installed.

 
 
  1. rpm -q binutils compat-db control-center gcc gcc-c++ glibc glibc-common \  
  2. gnome-libs libstdc++ libstdc++-devel make pdksh sysstat xscreensaver libaio openmotif21 

2. Check whether the kernel parameters are added or not.

View or edit the/etc/sysctl. conf file

 
 
  1. kernel.shmall = 2097152 
  2. kernel.shmmax = 2147483648 
  3. kernel.shmmni = 4096 
  4. kernel.sem = 250 32000 100 128  
  5. fs.file-max = 65536 
  6. net.ipv4.ip_local_port_range = 1024 65000  
  7. net.core.rmem_default=262144 
  8. net.core.rmem_max=262144 
  9. net.core.wmem_default=262144 
  10. net.core.wmem_max=262144 

Run the following command to make the kernel parameters take effect.

/Sbin/sysctl-p

3. Check the SElinux configuration. SElinux must be in the disabled status.

View or edit the/etc/selinux/config file and confirm that the following content exists:

SELINUX = disabled

4. Check the environment variables of oracle software users.

Log on to the system as an oracle user, view or edit it ~ /. Bash_profile file. The file content is as follows:

 
 
  1. TMP=/tmp; export TMP  
  2. TMPDIR=$TMP; export TMPDIR  
  3. ORACLE_BASE=/app/oracle; export ORACLE_BASE  
  4. ORACLE_HOME=$ORACLE_BASE/product/10/db_1; export ORACLE_HOME  
  5. ORACLE_SID=RAC1; export ORACLE_SID  
  6. ORACLE_TERM=xterm; export ORACLE_TERM  
  7. PATH=/usr/sbin:$PATH; export PATH  
  8. PATH=$ORACLE_HOME/bin:$PATH; export PATH  
  9. LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH  
  10. CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH  
  11. if [ $USER = "oracle" ]; then  
  12. if [ $SHELL = "/bin/ksh" ]; then  
  13. ulimit -p 16384  
  14. ulimit -n 65536  
  15. else  
  16. ulimit -u 16384 -n 65536  
  17. fi  
  18. fi 

Here is the solution to e2eme error when Oracle is installed with 64-bit linux 10g. We hope this introduction will help you.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.