Discussions
Categories
Choose a Product
THRUST SERVICES
CORE APPS
CE PRODUCTS
...
Quick Links
POPULAR
HELPFUL TIPS
Groups
My Links
FOR SIGNED IN MEMBERS:
Back to website
Home
TeamSite
TeamSite, LiveSite and OpenDeploy
Solaris 8 Front office Install
Migrateduser
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
There are no comments yet