博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows下解决端口占用的情况
阅读量:4182 次
发布时间:2019-05-26

本文共 178 字,大约阅读时间需要 1 分钟。

一、查看端口是否被占用(用apache服务器坐验证 端口8090)

netstat  -aon|findstr  8090

 

二、那个进程使用了这个pid

tasklist|findstr 1660

 

 

三、关闭这个pid进程

taskkill /pid 1660  -t  -f

 

 

四、关闭nginx进程。

taskkill /IM  nginx.exe  /F

 

转载地址:http://ffgai.baihongyu.com/

你可能感兴趣的文章
Linux中rpm工具使用教程
查看>>
Linux中yum工具使用教程
查看>>
C++字符串函数
查看>>
mknod详解
查看>>
linux中的run-level何解?
查看>>
Linux内核编译详解(转自linuxSir)
查看>>
实模式,保护模式与V86模式
查看>>
628. Maximum Product of Three Numbers(排序)
查看>>
Linux内核-------同步机制(二)
查看>>
面试题31-------连续子数组的最大和(数组)
查看>>
epoll 实现Chat
查看>>
21. Merge Two Sorted Lists(链表)
查看>>
2. Add Two Numbers(链表)
查看>>
637. Average of Levels in Binary Tree(Tree)
查看>>
226. Invert Binary Tree(Tree)
查看>>
328. Odd Even Linked List(链表)
查看>>
199. Binary Tree Right Side View(Tree)
查看>>
230. Kth Smallest Element in a BST(Tree)
查看>>
求字符串的最长回文串-----Manacher's Algorithm 马拉车算法
查看>>
回溯法常用的解题模板和常见题型
查看>>