installTool.sh can't find startconfigtool.sh
Summary
installTool.sh can't find startconfigtool.shContent
Dumb question:
I am trying to install essbase on a Linux server. My foundation services are already installed on a different Windows server.
However, when I run installTool.sh, it fails as it can't find startconfigtool.sh
I searched through the installation files and don't seem to be able to find startconfigtool.sh. What am I doing wrong?
Here's the part of installTool.sh that tries to execute "startconfigtool.sh":
START_CONFIGTOOL="${HOME}/.startconfigtool.sh"
export START_CONFIGTOOL
if [ -f "${START_CONFIGTOOL}" ]; then
chmod 753 "${START_CONFIGTOOL}";
sh "${START_CONFIGTOOL}";
Thanks.
0