installshield 安装包失败问题

installshield 实现平台安装包,依次安装Pg版本V9.0,导入数据库脚本,安装mq,安装tomcat

1.发现postGresql安装好后,但是阻塞了,不能继续安装:
  出现错误为Failed installing postGresql servic
  排查:
  发现安装了pg成功后,立即对pg进行数据库脚本导入(实际上pg还没有真正起来):
  安装pg脚本:D:\jenkins\workspace\Dev_GSS_V1.2\GSS_install\WEB\PostgreSQL\9.0\bin\InstallService.bat
  解决方法:1)增加3秒得到 2)注释掉失败后的pause

"%EXECUTABLE%" register -D "%DATA_BASE%" -N %SERVICE_NAME%
net start %SERVICE_NAME%
timeout /t 3 /nobreak > nul   //增加3秒得到

if not errorlevel 1 goto installed
echo Failed installing '%SERVICE_NAME%' service 
goto end

:installed
rem Clear the environment variables. They are not needed any more.
set BIN=
set POSTGRES_HOME=
set DATA_BASE=

rem Set extra parameters

echo The service '%SERVICE_NAME%' has been installed.
goto installOK

:end
cd "%POSTGRES_HOME%"
rem pause //注释掉pause

2.发现安装tomcat偶尔失败
   有些电脑可以成功,有些失败,手动安装脚本是可以的
   原因为按照程序运行过程中没有得到tomcat安装完毕就结束了
  if LaunchAppAndWait ("", strcmdline, LAAW_OPTION_NOWAIT | LAAW_OPTION_HIDDEN) < 0 then
  改为
  if LaunchAppAndWait ("", strcmdline, LAAW_OPTION_WAIT | LAAW_OPTION_HIDDEN) < 0 then

 

 

你可能感兴趣的:(installshield 安装包失败问题)