4

I have created a server using plumber

How do I stop the server?

"my approach -: once i get to know that , i will put a command , if we press a key then it will stop"

thanks in advance

jony
  • 924
  • 10
  • 25

3 Answers3

1

there is no way to stop this server , after you create it ,

once you created press esc to stop , there is no method like close or stop

Jose
  • 330
  • 1
  • 3
  • 13
0

sudo /usr/sbin/fuser -k 5551/tcp kills the server (on port 5551)

0

To stop the plumber server:

list all docker running with docker ps

sudo docker ps

get the {ID} of the process you want to stop and run the command

sudo docker kill {ID}
DATAUNIRIO
  • 80
  • 6