基于我在Stackoverflow和Internet上的其他页面中看到的代码,我创建了一个停止和启动tomcat的方法,此时我将在我的系统中运行一个进程,因为我需要在我的操作系统中清理内存,我使用System.gc()
但仍然不足以释放内存,这就是代码:
全球宣言:
private String server = "localhost";
停止启动tomcat的方法:
public void tomcat(){
try{
Socket s = new Socket(server,8005);
if(s.isConnected()){
PrintWriter print = new PrintWriter(s.getOutputStream(),true);
print.println("SHUTDOWN"); /*Command to stop tomcat according to the line "<Server port="8005" shutdown="SHUTDOWN">" in catalina_home/conf/server.xml*/
print.close();
s.close();
}
Runtime.getRuntime().exec(System.getProperty("catalina.home")+"\\bin\\startup.bat"); /*Instruction to run tomcat after it gets stopped*/
}catch (Exception ex){
ex.printStackTrace();
}
}
启动tomcat的代码行工作得很好,但是没有停止它的指令,因为当我实例化套接字时,它给了我以下消息:Connection refused: connect
。
我该如何解决这个问题?或者,还有另一种方法可以阻止tomcat吗?
提前致谢。
答案 0 :(得分:1)
public static void shut_server(String lien)
{
try {
Process child = Runtime.getRuntime().exec(lien+"/shutdown.sh");
System.out.println("Serveur est atteins");
} catch (IOException ex) {
Logger.getLogger(Installation.class.getName()).log(Level.SEVERE, null, ex);
System.out.println("erreur de demarrage");
}
}
lien = tomcat bin文件的路径
例如 - /home/zakaria/Téléchargements/apache-tomcat-8.0.21/bin
答案 1 :(得分:0)
我有类似的问题。我得到了&#34;连接被拒绝:连接&#34;创建套接字时出现错误消息。
但是,我的用例与Vlad发布的用例不同。当Tomcat服务器启动时,我的应用程序正在检查某些资源的可用性,如果不是,则需要关闭服务器。
我在创建套接字之前添加了30秒的睡眠时间:
try {
Thread.sleep(30000);
}
catch (Exception excp) {}
Socket socket = new Socket("localhost", port);
它开始工作了。
我认为当Tomcat启动时,需要一些时间才能使关闭端口准备就绪。 选择30秒是任意的,可能更短。
仅供参考,我的Tomcat作为Windows服务运行。