通过命令行启动apache tomcat- Window Services时设置端口号

时间:2016-07-19 15:57:57

标签: c# tomcat cmd tomcat7

我想通过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? 但我没有批处理文件。

在开始服务之前如何设置端口?你能帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

我发现了如何设置端口

c:\..\bin>Tomcat7.exe //US//tomcat7 --"JvmOptions=-Dport.shutdown=8005;-Dport.http=8081"
C:\..\bin>tomcat7.exe start

这将启动端口号为8081的服务。