系统相关
首页 > 系统相关> > 查看linux服务状态

查看linux服务状态

作者:互联网

  1. 查看下 80 端口状态

    netstat -anp | grep 80
    
  2. 查看所有ph-fpm进程

    ps -ef | grep "php-fpm"
    
  3. 查看是否可连接远程端口

    telenet 39.105.143.144 80 # 看看是否可以连接
    # 或者
    nc -l 0.0.0.0(本机私有ip也可以)  80 # 服务器端
    nc 公网ip  80    #客户端  客户端输入内容会在服务器端显示,哇哇美
    

ps :

标签:状态,查看,nc,linux,netcat,80,连接,ncat
来源: https://blog.csdn.net/qq_30923243/article/details/100024826