zoukankan      html  css  js  c++  java
  • Linux运维

    一、用户管理


     

    1.1查看用户上次修改密码的时间

    awk -F ":" '{print $1,$3}' /etc/shadow | grep root(用户名)
    
    通过date将时间转换
    
    date -u -d "1970-01-01 UTC $((18598 * 86400 )) seconds"
    

     二、进程管理


     

    2.1:常见的端口查看命令

    1) netstat命令

    参数:

     -t : 指明显示TCP端口
    
     -u : 指明显示UDP端口
    
     -l : 仅显示监听套接字(所谓套接字就是使应用程序能够读写与收发通讯协议(protocol)与资料的程序)
    
     -p : 显示进程标识符和程序名称,每一个套接字/端口都属于一个程序。
    
     -n : 不进行DNS轮询,显示IP(可以加速操作)

    netstat -ntlp   //查看当前所有tcp端口·
    netstat -ntulp |grep 80 //查看所有80端口使用情况
    • 查看服务器上有哪些端口和服务
    netstat  -lanp
    

    •  查看一个服务有几个端口(拿postgres来举例)
    netstat -atunp | grep postgres   //可以查看到连接端的IP

    ps -ef |grep postgres

    •  查看某一端口的连接数量,比如5432端口
    netstat -pnt |grep :5432 |wc
    

    2.2:lsof

    使用lsof -i :port就能看见所指定端口运行的程序,同时还有当前连接
    lsof -i:port 

  • 相关阅读:
    English trip V1
    English trip M1
    every day a practice —— morning(5)
    English Voice of <<All Of Me>>
    bzoj 3561 DZY Loves Math VI
    luogu P4322 [JSOI2016]最佳团体
    luogu P3264 [JLOI2015]管道连接
    bzoj 5084 hashit
    luogu P6091 原根
    bzoj 5206 [Jsoi2017]原力
  • 原文地址:https://www.cnblogs.com/anyanpeng/p/14927945.html
Copyright © 2011-2022 走看看