KB Article #175922
Append logs instead of recreate for WebServices Front-End managed by Administration
Problem
- WebServices Front-End started/stopped with Administration create _new_ logs at every start:<Axway>/Administration\log/WebServicesFrontEnd_start.log
- how to append logs instead of creating new ones ?
Resolution
* replace this line:cd $profilePath > $logFile 2>&1
in
app/s45/Administration/runtime/Launcher.sh
with this one:
cd $profilePath >> $logFile 2>&1