Hi all,
I am currently in the process of updating from Apps 9 Update 10 to Update 16 and noticed that my server startup/shutdown scripts aren’t working as expected.
It seems the cause is due to the E:\IFS\IFSExt\<INSTANCE>\mw_home\as directory being replaced by the mws directory.
In the hopes that this was a simple location switch I changed the startup/shutdown scripts to reflect this change in directory.
echo Starting Middleware servers...
cd /d %DRIVE%:\IFS\IFSExt\%SID%\instance\%SID%\bin
%JAVA_HOME%/bin/java -cp %DRIVE%:\IFS\IFSExt\%SID%/mw_home/as/wlserver/server/lib/weblogic.jar weblogic.WLST %DRIVE%:\IFS\IFSExt\%SID%/instance/%SID%/bin/mws-startServer.py startall %PWD%
to
echo Starting Middleware servers...
cd /d %DRIVE%:\IFS\IFSExt\%SID%\instance\%SID%\bin
%JAVA_HOME%/bin/java -cp %DRIVE%:\IFS\IFSExt\%SID%/mw_home/mws/wlserver/server/lib/weblogic.jar weblogic.WLST %DRIVE%:\IFS\IFSExt\%SID%/instance/%SID%/bin/mws-startServer.py startall %PWD%
cd /d %DRIVE%:%LOGFOLDER%
ping -n 5 127.0.0.1 > nul
The issue I now get is that when I run the script it starts the services fine and I can log in to IFS from the client-side however the batch file displays errors such as Could not find the OffLine WLST class
See attachment for a better look at the output
The question I have is… does anyone have a script that works with this change in directory or at least advise why this might not be working.
Regards
Nathan