OnDemand User Group

Support Forums => Report Indexing => Topic started by: jsquizz on November 08, 2020, 11:06:22 AM

Title: arsload not finding ARSACIF
Post by: jsquizz on November 08, 2020, 11:06:22 AM
Never seen this error before - obviously, arsacif exists within /app/ibm/ondemand/V10.1/bin/

running on azure with Redhat 8.2, DB2 11, 10.1.0.5

[archive@cmodpoc bin]$ ./arsload -nvf -u admin -p ondemand -h archive -g test /app/testData/testFile.ARD.txt
ARS1609W Specifying passwords on the command line is not secure due to the text being visible. See the Installation and Configuration Guide for your platform for information about the arsstash command or using Unified Login.
2020-11-08 18:04:23.839594: ARS4315I Processing file >/app/testData/testFile.ARD.txt<
2020-11-08 18:04:23.839669: ARS4334I Load Version <10.1.0.5>  Operating System <Linux> <#1 SMP Mon Jul 20 15:02:29 UTC 2020.4.18.0-193.14.3.el8_2.x86_64>  OS Userid <ADMIN>  Install Location </app/ibm/ondemand/V10.1/> Data(unlimited KB) Stack(8192 KB) Core(unlimited 512-blocks) Cpu(unlimited seconds) File(unlimited 512-blocks) Nofiles(1024) Threads(0) Processes(31112)
2020-11-08 18:04:23.839700: ARS4335I Server Version <10.1.0.5>  Operating System <Linux> <#1 SMP Mon Jul 20 15:02:29 UTC 2020.4.18.0-193.14.3.el8_2.x86_64>  Database <DB2> <11.01.0404>
2020-11-08 18:04:24.094004: ARS4339I Application Group >test<
2020-11-08 18:04:24.094046: ARS4340I Application >test<
2020-11-08 18:04:24.094072: ARS4341I Storage Set >Cache Only - Library Server<
2020-11-08 18:04:24.094093: ARS4342I Storage Node >Cache Only - Library Server<
2020-11-08 18:04:24.094113: ARS4347I Encryption >None<
2020-11-08 18:04:24.094179: ARS4302I Indexing started, 214 bytes to process
                          : sh: /app/ibm/ondemand/V10.1/bin/arsacif: No such file or directory
2020-11-08 18:04:24.097500: ARS4309E Indexing failed
2020-11-08 18:04:24.097574: ARS4318E Processing failed for file >/app/testData/testFile.ARD.txt<
2020-11-08 18:04:24.246726: ARS4327E Processing has stopped.  The remaining files will NOT be processed.


[archive@cmodpoc config]$ echo $PATH
/usr/local/bin:/usr/bin:/app/ibm/ondemand/V10.1/bin
[archive@cmodpoc config]$ arsacif
-bash: /app/ibm/ondemand/V10.1/bin/arsacif: No such file or directory


Fixed this-

[jeff@cmodpoc server]$ sudo yum install libstdc++.so.6

Title: Re: arsload not finding ARSACIF
Post by: Justin Derrick on November 08, 2020, 02:23:25 PM
Shouldn't that be /opt/ibm?

If you've changed the location, I think you need to export a variable with the new location.  Can't remember it off the top of my head...

-JD.
Title: Re: arsload not finding ARSACIF
Post by: jsquizz on November 09, 2020, 07:16:07 AM
Missing "libstd" package fixed it. I thought I installed that one. I have a list I do always when standing up a new box. I'll keep the export variable in mind though.
Title: Re: arsload not finding ARSACIF
Post by: Justin Derrick on November 09, 2020, 07:26:24 AM
I think there's three...

ARS_INSTALL_SERVER_V105_DIR
ARS_INSTALL_ODWEK_V105_DIR
ARS_INSTALL_CLIENT_V105_DIR

They're all undocumented, so use at your own risk.  :)

-JD.
Title: Re: arsload not finding ARSACIF
Post by: jsquizz on November 09, 2020, 07:37:54 AM
Thanks sir! This is a "POC" server so that's fine!