码迷,mamicode.com
首页 >  
搜索关键字:netstat 查看端口    ( 3716个结果
Ubuntu无线网络连接
ping 127.0.1.1 sudo vi /etc/resolv.conf #设置域名服务器 netstat -rn #查看网络信息 route add default gw 192.168.31.100 #添加网关信息 grep hosts /etc/nsswitch.conf #验证是否可用 ...
分类:系统相关   时间:2020-06-07 16:37:09    阅读次数:89
CentOS 命令工具安装
安装net-tools工具包,ifconfig,netstat,whois等命令都来源于这个包。 yum install net-tools 使用组安装包,一次性安装所有开发者工具 1、查看有那些组安装包可用。 yum grouplist | more 显示结果:Last metadata expi ...
分类:其他好文   时间:2020-06-06 11:06:38    阅读次数:201
Linux-查看网络状态ss
ss\netstat 打印网络系统的状态 -t tcp -u udp -x 套接字 -a 所有 -l 处于监听的 -p 相关的程序及pid -n 显示端口 22 ssh http 80 mysql 3306 redis 6379 mongdb 27017 windows远程桌面 3389 oracl ...
分类:系统相关   时间:2020-06-05 01:08:02    阅读次数:95
Linux性能优化从入门到实战:20 综合篇:网络丢包
网络丢包问题的分析思路 ping 基于 ICMP 协议,hping3 可以基于 TCP 协议。 # -c 表示发送 10 个请求,-S 表示使用 TCP SYN,-p 指定端口为 80 $ hping3 -c 10 -S -p 80 192.168.0.30 HPING 192.168.0.30 ( ...
分类:系统相关   时间:2020-06-04 23:12:40    阅读次数:137
Web server failed to start. Port 8080 was already in use.
1.打开cmd,输入netstat -ano|findstr "8080"回车 2.输入得到的tasklist|findstr "9952" ...
分类:Web程序   时间:2020-06-04 22:03:15    阅读次数:205
jenkins + gitlab + redis + rabbitmq 安装记录
1.安装 githttps://www.cnblogs.com/wulixia/p/11016684.html 2.安装 gitlabhttps://www.cnblogs.com/yanjieli/p/10605381.html 3.jenkins 安装https://www.cnblogs.co ...
分类:其他好文   时间:2020-06-03 16:04:29    阅读次数:75
window10下,命令行与端口
netstat -ano 查看端口情况 tasklist|findstr “9220” 通过PID号“9220”查看对应端口被什么进程占用了 netstat -aon|findstr "8080" 查看端口8080对应的PID tskill 1844 结束PID为1844的进程 ...
分类:Windows程序   时间:2020-06-02 19:20:30    阅读次数:122
Windows解决端口占用
解决端口占用 Windows上端口占用会提示诸如以下错误: Fatal error. can't bind to 127.0.0.1:10809: There may be another Privoxy or some other proxy running on port 10809 解决该异常 ...
分类:Windows程序   时间:2020-06-02 19:09:17    阅读次数:198
linux如何查看端口被哪个进程占用,并杀死相关进程?
1、lsof -i:端口号 2、netstat -tunlp|grep 端口号 都可以查看指定端口被哪个进程占用的情况 lsof -i(使用root权限) lsof -i 用以显示符合条件的进程情况,lsof(list open files)是一个列出当前系统打开文件的工具。以root用户来执行ls ...
分类:系统相关   时间:2020-06-01 12:10:43    阅读次数:98
netstat命令详解
#netstat命令详解 ##简介 Netstat 命令用于显示各种网络相关信息,如网络连接,路由表,接口状态 (Interface Statistics),masquerade 连接,多播成员 (Multicast Memberships) 等等。 ##输出信息含义 执行netstat后,其输出结 ...
分类:Web程序   时间:2020-05-31 15:55:32    阅读次数:71
3716条   上一页 1 ... 16 17 18 19 20 ... 372 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!