Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        6年前关闭。
                                                                                            
                
        
我正在使用expressJS并已设置服务器并使用了everever选项

我试图杀死我开始使用的进程

forever start app.js


我正在使用端口7006

我用过 ::


fuser -k 7006/tcp
netstat -plten |grep 7006 .....然后我用kill -9 7392


我也用sudo ssh myip fuser -k 7006/tcp
我得到了公开密钥作为答复

仍然无法终止在特定端口上运行的进程(7006)

最佳答案

尝试:

$ forever stopAll

kill在此过程中不一定会起作用,因为forever会不断在您身上生成它:)
hth,
亚伦

08-28 10:55