Home
TeamSite
Solaris 8 Front office Install
Burtonr
In case anyone had this problem.
My first attempt at installing teamsite frontoffice on Solaris 8 failed to detect the iwserver that was running. The ps command in the install script failed the second grep for the word store. The ps on the system did not return enough fields for it to work.
Orginal line in Installplugin.sh:
recode=`ps -aef | grep iwserver | grep store`
it returned this:
iwserver.sol -e /SAN02/logs/interwoven/iw-home/local/logs/iwevents.log /SAN02/d
We have the ucb ps. I changed the line to us this version
CheckTeamSite()
{
recode=`/usr/ucb/ps -auxww | grep iwserver | grep store`
if [ "$recode" = "" ]; then
echo "Could not find TeamSite running. Aborting."
exit 1
fi
And the install worked fine..
/usr/ucb/ps -auxww | grep iwserver
returns
/SAN02/logs/interwoven/iw-home/local/logs/iwevents.log /SAN02/data/interwoven/iw-store
Enjoy
Rob..
Robert Burton
CRA
Find more posts tagged with
Comments
jwl
3 years later, with FrontOffice 5.5.6 and TS 6.7.1 SP1 on Solaris 10, I also encountered this problem.
Thanks for the solution!
John