zoukankan      html  css  js  c++  java
  • Linux下查看进程和端口信息

    1、根据进程名查看进程信息,以查看tomcat进程名为例,查看所对应的进程id为1095(或者使用: ps -aux | grep tomcat 查看占用内存等信息)

    ps -ef | grep tomcat

    2、根据进程id查看进程占用端口,查看对应端口为8080(如果没有netstat命令,使用 yum  -y  install  net-tools安装)

    netstat -nap | grep 1095

    3、根据端口查看对应进程,查看占用8080端口的进程id,为1095

    netstat -tunlp | grep 8080

    4、根据进程id查看进程信息,查看进程id为1095的进程信息

    ps -ef | grep 1095

    5、根据进程id杀死进程,杀死进程id为1095的进程

    kill -9 1095

    附:

    # window 查看占用端口80
    netstat -aon|findstr "80"
    
    # 查询进程号2448信息
    tasklist|findstr "2448"
    
    # 可以在任务管理器查询进程号并杀死

     

    yexiangyang

    moyyexy@gmail.com


     

  • 相关阅读:
    linux系统日志使用
    C# progressbar 用法
    python 新时代
    linux 常用命令 集锦
    c# DirectoryInfo类 详解
    哈佛(转)
    寒门难再出贵子
    排序算法
    JavaScript弹出框
    js中innerHTML与innerText的用法与区别
  • 原文地址:https://www.cnblogs.com/moy25/p/8668432.html
Copyright © 2011-2022 走看看