Nodejs shutting down the Windows service process

Source: Internet
Author: User

1. Depending on the port number, query the process information command:

" Port number "

2. According to the PID Kill process command:

taskkill/f/pid Process Number

Full code:

Const WINDOWSSERVICESTOP =function(port) {Let Netstat_command= ' Netstat-aon | findstr \ ": ' +port+ ' \" '; Console.log (' Query service process ... ' +Netstat_command); EXEC (Netstat_command,{maxbuffer:(Err, stdout, stderr) = {            if(Err) {Console.log (' Query service Process exception: ' +err); return false; } Let line= Stdout.split (' \ n ') [0];//first line of informationConsole.log (' query succeeded, process info: ' +Line ); Let P=line.trim (). Split (/\s+/); Let PID= P[4]; if(!pid | | pid.length = = 0) {Console.log (' Get process ID failed '); return false; } Let Taskkill_command= ' taskkill/f/pid ' +pid; Console.log (' Close service ... ' +Taskkill_command); EXEC (Taskkill_command,{maxbuffer:5000 * 1024},function(Err, stdout, stderr) {if(Err) {Console.log (' Close Service exception: ' +err); return false; } console.log (' Service shutdown succeeded '); return true;        });    }); };

Reference:

node. js script kills process that consumes ports

Nodejs shutting down the Windows service process

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.