CABI 7.1.1 was installed on RHEL 7.8 with the root account.
The /opt/CA/SharedComponents/CA Business Intelligence/service.sh (or /opt/CA/SharedComponents/cabusinessintelligence/service.sh) was launched to configure the CABI to autostart on reboot, but it is not working.
The cabiautostart file was copied to the /etc/init.d/ directory. Also, a copy of cabiautostart file was added for runlevels 3, 5 and 6. Checked in the following directories:
The following error was found in the /var/log/messages file:
Aug 3 17:37:08 lvndev015140 cabiautostart: grep: /.cabusinessintelligence: No such file or directory
Aug 3 17:37:08 lvndev015140 cabiautostart: /java
Aug 3 17:37:08 lvndev015140 cabiautostart: Tomcat started.
Missing .cabusinessintelligence file in the / directory.
Release : 7.1.1
Component : CABI
Copy the .cabusinessintelligence file from the /root/ directory to the / directory.
$ copy /root/.cabusinessintelligence /
Reboot the Linux box.
Check if the apache-tomcat service was started on reboot:
$ ps -ef | grep apache-tomcat
/etc/init.d/cabiautostart à apache-tomcat/bin/startup.sh à apache-tomcat/bin/catalina.sh à apache-tomcat/bin/setenv.sh
# cat setenv.sh
JAVA_OPTS="$JAVA_OPTS -Xms4096m -Xmx6144m"
JAVA_OPTS="$JAVA_OPTS -Xss2m -XX:+UseConcMarkSweepGC"
JAVA_OPTS="$JAVA_OPTS -XX:+CMSClassUnloadingEnabled"
Filename=$HOME/.cabusinessintelligence
javapath=`grep "Location" $Filename | awk -F"=" '{print $2}'`
export JAVA_HOME=$javapath"/java"
echo $JAVA_HOME