zoukankan      html  css  js  c++  java
  • 查看php-fpm的进程和端口号

    ps -ef | grep php-fpm   查看php-fpm所有的进程

    ps -ef | grep php-fpn.conf 查看配置所在路径

     

    netstat -lntp 查看监听端口  listen/network/tcp/port 

    tcp        0      0 0.0.0.0:801                 0.0.0.0:*                   LISTEN      15923/nginx
    tcp        0      0 0.0.0.0:808                 0.0.0.0:*                   LISTEN      15923/nginx
    tcp        0      0 127.0.0.1:9000              0.0.0.0:*                   LISTEN      6526/php-fpm
    tcp        0      0 0.0.0.0:27017               0.0.0.0:*                   LISTEN      9555/mongod
    tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      800/mysqld
    tcp        0      0 0.0.0.0:811                 0.0.0.0:*                   LISTEN      15923/nginx
    tcp        0      0 127.0.0.1:6379              0.0.0.0:*                   LISTEN      1220/redis-server
    tcp        0      0 0.0.0.0:812                 0.0.0.0:*                   LISTEN      15923/nginx
    tcp        0      0 0.0.0.0:815                 0.0.0.0:*                   LISTEN      15923/nginx
    tcp        0      0 0.0.0.0:8080                0.0.0.0:*                   LISTEN      15923/nginx
    tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      15923/nginx
    tcp        0      0 0.0.0.0:817                 0.0.0.0:*                   LISTEN      15923/nginx
    tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      1369/sshd
    tcp        0      0 0.0.0.0:8088                0.0.0.0:*                   LISTEN      15923/nginx
    tcp        0      0 :::9200                     :::*                        LISTEN      9289/java
    tcp        0      0 :::9201                     :::*                        LISTEN      9357/java
    tcp        0      0 :::9300                     :::*                        LISTEN      9289/java
    tcp        0      0 :::9301                     :::*                        LISTEN      9357/java

  • 相关阅读:
    在Repeater中动态添加服务器端(按钮)控件
    两种自定义表单设计方案 [转贴]
    如何解决在.Net中用Sql语句向SqlServer数据库中插入特殊字符失败的问题?
    Visual Studio 2005 IDE 技巧和窍门
    C#的Windows编程中多语言的实现
    NET设计模式(18):迭代器模式(Iterator Pattern)(转载)
    “/”应用程序中的服务器错误。当前标识(NT AUTHORITY\NETWORK SERVICE)没有对“C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files”的写访问权限。
    union的妙用
    数据类型—C++基础篇
    C++,VC++,MCF和SLT的关系
  • 原文地址:https://www.cnblogs.com/lxwphp/p/8951719.html
Copyright © 2011-2022 走看看