Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 214 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Installing OBIEE 12.2.1.4 and getting File not found <path>/lib/libntcps12_ee.a.dbl error

I am installing OBIEE 12.2.1.4 on a new (clean) Linux X86 server
I've successfully installed Fusion Middleware with no errors and have an Oracle Home directory: <path>/Oracle_Home
I've copied the installation files:
fmw_12.2.1.4.0_bi_linux64_Disk1_1of2.zip
fmw_12.2.1.4.0_bi_linux64_Disk1_2of2.zip
and unzipped them both and they yield:
bi_platform-12.2.1.4.0_linux64.bin
and
bi_platform-12.2.1.4.0_linux64-2.zip
when I run
./bi_platform-12.2.1.4.0_linux64.bin
I get the following error during the copy phase:
File not found <path>/Oracle_Home/lib/libntcps12_ee.a.dbl
Any suggestions?
I'm stumped
Answers
-
Did you check the checksum of the archives? Do they match?
Your linux is a supported version I guess, right?
0 -
The checksums match and I've checked the certification matrix and OBIEE 12.2.1.4 is certified to work on Linux Processor X86-64 running Red Hat Enterprise Linux Release 7
Also - I've got JDK 1.8.0_131 installed
0 -
Did a silent install of 12.2.1.4 on OEL 7 just yesterday and it worked by itself.
Did you get the binaries from e-Delivery or https://www.oracle.com/technetwork/middleware/bi-enterprise-edition/downloads/default-4441820.html ?
0 -
First -I appreciate you looking at my issue.
Yes, that's exactly where I got the binaries.
I haven't tried the silent install because I do not have privs to create the repository schemas. I need to have the scripts generated for our DBA's to run.
0 -
Damn those DBAs not willing to share a temporary DBA account
I have no idea why you get the issue, actually my install was fully automated as it's inside a Docker container.
Here is the commands in the order they were called (the 2 ZIP archives are located in /opt/oracle/install ) :
cd /opt/oracle/install
unzip fmw_12.2.1.4.0_bi_linux64_Disk1_1of2.zip -d ./tmp_bi
rm fmw_12.2.1.4.0_bi_linux64_Disk1_1of2.zip
unzip fmw_12.2.1.4.0_bi_linux64_Disk1_2of2.zip -d ./tmp_bi
rm fmw_12.2.1.4.0_bi_linux64_Disk1_2of2.zip
$(find /opt/oracle/install/tmp_bi -name *.bin) -silent -responseFile ...
rm -rf /opt/oracle/install/tmp_bi
It looks just like what you do as well, I don't see why yours would be missing a file (in MOS there is a document with a similar issue with the same error for Oracle Forms, I doubt it's your issue ...).
Maybe the only difference with you (which maybe isn't one as not detailed) is that my archives are always outside the Oracle Home folder and I extract them both into a new folder just to make sure that all the content goes there (and doesn't override something else somewhere else).
0 -
Feeling a little stupid.
Forgot to check this:
Setting the Operating System Open File and Processes Limit
To change the Open File Limit:
- Log in as
root
and edit the following file:/etc/security/limits.conf
- Add the following lines to the
limits.conf
file.* soft nofile 4096
The
* hard nofile 65536
* soft nproc 2047
* hard nproc 16384nofiles
values represent the open file limit; thenproc
values represent the number of processes limit. - Save the changes, close the
limits.conf
file.
0 - Log in as