Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Oracle 11gR2 error problem in remote installation of RHEL7.0 VNC

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

When oracle 11gR2 was installed on the VM virtual machine RHEL7.0 64-bit system, two problems were encountered during installation, neither of which occurred with 6.2and 6.6installation. I don't know the exact reason.

1. When installing to 68%, the error Error in invoking target 'install' of makefile' / u01AcLeUniverse product is prompted. See'/ u01/app/oraInventory/logs/installActions2015-01-22 September 09-39-03 AM.log' for details.

Finding solutions on the Internet is mostly caused by the lack of glibc packages.

# rpm-- all-- query-- queryformat "% {NAME} -% {VERSION} -% {RELEASE} -% {ARCH})\ n" | grep glibc

After executing the command, it shows that you need to install glibc-devel and glibc 32-bit installation package, exit oracle after installation, delete the files in the installation directory, reinstall, and still prompt ins_ctx.mk compilation error.

Later, notice the following error in the log:

INFO: / lib64/libstdc++.so.5: undefined reference to `memcpy@GLIBC_2.14'

INFO: collect2: error: ld returned 1 exit status

INFO: make: * [ctxhx] Error 1

It is said on the Internet that the version 2.17 of glibc is too high (higher than 2.14), the solution:

Download the glibc-static-2.17-55.el7.x86_64.rpm installation at:

Http://rpmfind.net/linux/rpm2html/search.php?query=glibc-static&submit=Search+...&system=&arch=

The package contains a static link library: / usr/lib64/libc.a

Modify / u01/app/oracle/product/11.2.0/dbhome_1/ctx/lib/ins_ctx.mk to set the

Ctxhx: $(CTXHXOBJ)

$(LINK_CTXHX) $(CTXHXOBJ) $(INSO_LINK)

Modified to:

Ctxhx: $(CTXHXOBJ)

-static $(LINK_CTXHX) $(CTXHXOBJ) $(INSO_LINK) / usr/lib64/stdc.a

Click Retry to continue with the installation. Then it prompts "Error in invoking target 'agent nmhs' of makefile' / u01ActureUniplicationoracleUniverse product11.2.0Actiondbhomeandandsysmanandlement.mk.'. Solution: add the parameter that links to the libnnz11 library in makefile.

Modify / u01/app/oracle/product/11.2.0/dbhome_1/sysman/lib/ins_emagent.mk to set the

Change $(MK_EMAGENT_NMECTL) to: $(MK_EMAGENT_NMECTL)-lnnz11

Click Retry to continue with the installation.

Installation successful!

In addition, the following error is prompted when using VNC for remote installation:

> > Could not execute auto check for display colors using command / usr/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report