Unable to stop tomcat server The Next CEO of Stack OverflowRHEL 4 reboot causes Tomcat process...

How to solve a differential equation with a term to a power?

Calculus II Question

What is "(CFMCC)" on an ILS approach chart?

Does it take more energy to get to Venus or to Mars?

Why don't programming languages automatically manage the synchronous/asynchronous problem?

Indicator light circuit

Is there a difference between "Fahrstuhl" and "Aufzug"

How do scammers retract money, while you can’t?

Why does the UK parliament need a vote on the political declaration?

How powerful is the invisibility granted by the Gloom Stalker ranger's Umbral Sight feature?

How did people program for Consoles with multiple CPUs?

Make solar eclipses exceedingly rare, but still have new moons

Is it possible to search for a directory/file combination?

Sending manuscript to multiple publishers

Bold, vivid family

How to start emacs in "nothing" mode (`fundamental-mode`)

Would a galaxy be visible from outside, but nearby?

Which tube will fit a -(700 x 25c) wheel?

Has this building technique been used in an official set?

Why didn't Khan get resurrected in the Genesis Explosion?

What connection does MS Office have to Netscape Navigator?

sp_blitzCache results Memory grants

Inappropriate reference requests from Journal reviewers

Why do remote companies require working in the US?



Unable to stop tomcat server



The Next CEO of Stack OverflowRHEL 4 reboot causes Tomcat process to not be started by non-root accountIf I export an environment variable in startup scripts does it persist?How to stop running download process by CURL?Linux command line: Kill vs Kill -9?Why does this bash file stop my tomcat if the session closes?How to free a port on OS X when lsof(1) reports that it is not in useHow do I stop Tomcat / rsyslog from logging to console?Permissions for tomcat 8 service file not workingBring a process to foreground suspended in another putty sessionhow to start tomcat with `script -c` command?












0















I have Tomcat 7 running on a virtual machine running Linux. I started Tomcat as foreground process using a script and don’t know how to stop it. I have tried stop, restart, start but all of the are giving me same error message:



status command:



 UNKNOWN due to Tomcat 7-based instance being started as a foreground process


stop command:



 Unable to stop Tomcat 7-based instance that was started as a foreground process. Use CTRL+C in the console of the process to stop the instance


Any idea how can I stop the foreground Tomcat instance?










share|improve this question
















bumped to the homepage by Community 50 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • The filesystem for your logs might be 100% full. Please verify that, do the clean up and then try to restart.

    – Krish
    Dec 6 '16 at 19:11
















0















I have Tomcat 7 running on a virtual machine running Linux. I started Tomcat as foreground process using a script and don’t know how to stop it. I have tried stop, restart, start but all of the are giving me same error message:



status command:



 UNKNOWN due to Tomcat 7-based instance being started as a foreground process


stop command:



 Unable to stop Tomcat 7-based instance that was started as a foreground process. Use CTRL+C in the console of the process to stop the instance


Any idea how can I stop the foreground Tomcat instance?










share|improve this question
















bumped to the homepage by Community 50 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • The filesystem for your logs might be 100% full. Please verify that, do the clean up and then try to restart.

    – Krish
    Dec 6 '16 at 19:11














0












0








0








I have Tomcat 7 running on a virtual machine running Linux. I started Tomcat as foreground process using a script and don’t know how to stop it. I have tried stop, restart, start but all of the are giving me same error message:



status command:



 UNKNOWN due to Tomcat 7-based instance being started as a foreground process


stop command:



 Unable to stop Tomcat 7-based instance that was started as a foreground process. Use CTRL+C in the console of the process to stop the instance


Any idea how can I stop the foreground Tomcat instance?










share|improve this question
















I have Tomcat 7 running on a virtual machine running Linux. I started Tomcat as foreground process using a script and don’t know how to stop it. I have tried stop, restart, start but all of the are giving me same error message:



status command:



 UNKNOWN due to Tomcat 7-based instance being started as a foreground process


stop command:



 Unable to stop Tomcat 7-based instance that was started as a foreground process. Use CTRL+C in the console of the process to stop the instance


Any idea how can I stop the foreground Tomcat instance?







linux tomcat






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 6 '16 at 19:16









JakeGould

32.2k1098141




32.2k1098141










asked Feb 20 '14 at 16:41









yousafsajjadyousafsajjad

1011




1011





bumped to the homepage by Community 50 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 50 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • The filesystem for your logs might be 100% full. Please verify that, do the clean up and then try to restart.

    – Krish
    Dec 6 '16 at 19:11



















  • The filesystem for your logs might be 100% full. Please verify that, do the clean up and then try to restart.

    – Krish
    Dec 6 '16 at 19:11

















The filesystem for your logs might be 100% full. Please verify that, do the clean up and then try to restart.

– Krish
Dec 6 '16 at 19:11





The filesystem for your logs might be 100% full. Please verify that, do the clean up and then try to restart.

– Krish
Dec 6 '16 at 19:11










1 Answer
1






active

oldest

votes


















0














Init scripts work just if you start it by themselves so they record and use later the PID (Process ID.



you could try with:



killall -9 tomcat


Or give pstree command and see which script or what is starting Tomcat and kill that one aswell.






share|improve this answer


























  • how i can find the foreground process instance?

    – yousafsajjad
    Feb 20 '14 at 21:01











  • "ps axwu | grep tomcat" will show you all the instances. You can then check the tty associated to see the foreground one or check the lowest pid and so on to see the main istance.

    – fede.evol
    Feb 21 '14 at 5:15










protected by JakeGould Dec 6 '16 at 19:15



Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



Would you like to answer one of these unanswered questions instead?














1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Init scripts work just if you start it by themselves so they record and use later the PID (Process ID.



you could try with:



killall -9 tomcat


Or give pstree command and see which script or what is starting Tomcat and kill that one aswell.






share|improve this answer


























  • how i can find the foreground process instance?

    – yousafsajjad
    Feb 20 '14 at 21:01











  • "ps axwu | grep tomcat" will show you all the instances. You can then check the tty associated to see the foreground one or check the lowest pid and so on to see the main istance.

    – fede.evol
    Feb 21 '14 at 5:15
















0














Init scripts work just if you start it by themselves so they record and use later the PID (Process ID.



you could try with:



killall -9 tomcat


Or give pstree command and see which script or what is starting Tomcat and kill that one aswell.






share|improve this answer


























  • how i can find the foreground process instance?

    – yousafsajjad
    Feb 20 '14 at 21:01











  • "ps axwu | grep tomcat" will show you all the instances. You can then check the tty associated to see the foreground one or check the lowest pid and so on to see the main istance.

    – fede.evol
    Feb 21 '14 at 5:15














0












0








0







Init scripts work just if you start it by themselves so they record and use later the PID (Process ID.



you could try with:



killall -9 tomcat


Or give pstree command and see which script or what is starting Tomcat and kill that one aswell.






share|improve this answer















Init scripts work just if you start it by themselves so they record and use later the PID (Process ID.



you could try with:



killall -9 tomcat


Or give pstree command and see which script or what is starting Tomcat and kill that one aswell.







share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 6 '16 at 19:16









JakeGould

32.2k1098141




32.2k1098141










answered Feb 20 '14 at 16:46









fede.evolfede.evol

1,660175




1,660175













  • how i can find the foreground process instance?

    – yousafsajjad
    Feb 20 '14 at 21:01











  • "ps axwu | grep tomcat" will show you all the instances. You can then check the tty associated to see the foreground one or check the lowest pid and so on to see the main istance.

    – fede.evol
    Feb 21 '14 at 5:15



















  • how i can find the foreground process instance?

    – yousafsajjad
    Feb 20 '14 at 21:01











  • "ps axwu | grep tomcat" will show you all the instances. You can then check the tty associated to see the foreground one or check the lowest pid and so on to see the main istance.

    – fede.evol
    Feb 21 '14 at 5:15

















how i can find the foreground process instance?

– yousafsajjad
Feb 20 '14 at 21:01





how i can find the foreground process instance?

– yousafsajjad
Feb 20 '14 at 21:01













"ps axwu | grep tomcat" will show you all the instances. You can then check the tty associated to see the foreground one or check the lowest pid and so on to see the main istance.

– fede.evol
Feb 21 '14 at 5:15





"ps axwu | grep tomcat" will show you all the instances. You can then check the tty associated to see the foreground one or check the lowest pid and so on to see the main istance.

– fede.evol
Feb 21 '14 at 5:15





protected by JakeGould Dec 6 '16 at 19:15



Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



Would you like to answer one of these unanswered questions instead?



Popular posts from this blog

VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...