我想通过Windows机器上的cmd行启动tomcat服务。我在tomcat bin文件夹中有Tomcat7.exe。我知道,为了开始命令,我想要运行:
dotCounts =
6
2
4
3
2
1
1
4
我可以在开始之前设置端口号,例如
c:\..\bin>tomcat7.exe start
参考:How to pass tomcat port number on command line? 但我没有批处理文件。
在开始服务之前如何设置端口?你能帮我解决这个问题吗?
答案 0 :(得分:0)
我发现了如何设置端口
c:\..\bin>Tomcat7.exe //US//tomcat7 --"JvmOptions=-Dport.shutdown=8005;-Dport.http=8081"
C:\..\bin>tomcat7.exe start
这将启动端口号为8081的服务。