Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Orestis Pantazos
Orestis Pantazos

Posted on • Edited on

     

🛠 Stop WildFly Application Server

DevOps engineers usually want to stop the WildFly application server if the process is running in the background. To keep it simple on Windows, here are two steps to do it.

Step 1: Find address and process

Enter the following command to find the process that is listening and running to port number 8080.

netstat -a -n -o | findstr :8080
Enter fullscreen modeExit fullscreen mode

The command line argument prints an open connection that is listening on the console as show below.

TCP   127.0.0.1:8080   0.0.0.0:0   LISTENING   9332
Enter fullscreen modeExit fullscreen mode

Step 2: Kill the process

Kill the process ID by using the following command.

taskkill.exe /F /pid 9332
Enter fullscreen modeExit fullscreen mode

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

DevOps Engineer @ Open DevOps
  • Location
    Athens, GR
  • Education
    MSc in Software Development @ University of Glasgow
  • Work
    DevOps Engineer
  • Joined

More fromOrestis Pantazos

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp