我想重新启动门户网站Server.suppose如果我们这样做意味着第一次执行stopServer.bat WebSphere_Portal -user ** -password ** 和第二次执行startServer.bat WebSphere_Portal
是的,它会启动Server.otherwise我们也可以这样做..stopServer.bat WebSphere_Portal -user ** -password ** && startServer.bat WebSphere_Portal
Myquestion是如何创建另一个批处理文件,在该批处理文件中,它将重启服务器,BY使用该2批处理文件。如何传递该参数意味着用户名和密码以及WebSphere_Portal?
答案 0 :(得分:0)
您可以将Portal添加为Windows服务,然后可以使用Windows GUI启动,停止和重新启动。
答案 1 :(得分:0)
编写批处理脚本以重新启动Portal和编写可调用任何其他批处理脚本的批处理脚本之间没有区别:
@echo off
setlocal
set USER=%1
set PASSWORD=%2
call stopServer.bat WebSphere_Portal -user %USER% -password %PASSWORD%
call startServer.bat WebSphere_Portal
致电:
restartPortal.bat MyUser MyPassword