zoukankan      html  css  js  c++  java
  • ubuntu php7.2 fpm-php 未监听9000端口问题

    ubuntu查看端口命令 发现netstat -ap | grep 9000  什么都没有打印,说明9000端口没有

    切换到 /etc/php/7.2/fpm/pool.d  目录下  打开 www.conf
     

    看到这行  listen = /run/php/php7.2-fpm.sock           将其改成  listen = 127.0.0.1:9000   

    让他监听本机9000端口 

    重启php-fpm服务

    方法: 进入到  /etc/init.d   目录下,执行./php7.2-fpm restart     (可能安装的版本不一样,你这这里的php7.2-fpm名字可能不一样)

    重启成功后netstat -ap | grep 9000发现有输出了。

    如果用的nginx服务器,修改nginx配置。我的配置在  /etc/nginx,打开nginx.conf

    我的配置如下,你可能需要修改listen端口,server_name 参数,root存放路径

    http {
    
    	##
    	# Basic Settings
    	##
    
    	sendfile on;
    	tcp_nopush on;
    	tcp_nodelay on;
    	keepalive_timeout 65;
    	types_hash_max_size 2048;
    
    
     server {
            listen       8081;           #安全组内端口,并且不和其他程序冲突
            server_name  192.168.193.128; #服务器公网ip
    
            #charset koi8-r;
    
            #access_log  logs/host.access.log  main;
            #静态页面目录  默认为Nginx下的html文件夹  可配置成其他目录 绝对路径即可
            root    /home/gopath/src/GOSINT/website;
    #               
            #默认首页  上面root路径下的文件
            index      index.php index.html index.htm;
    
    
    
     location ~ .php$ {
           
                try_files $uri /index.php =404;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_split_path_info ^(.+.php)(/.+)$;
                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                fastcgi_param  PATH_INFO                $fastcgi_script_name;
                include        fastcgi_params;
            } 
    
    
    
    
    }
    


     


         

  • 相关阅读:
    [转载]解决zabbix在configure时候遇到的问题(Ubuntu)
    [转载]ubuntu的版本
    [转载]Nginx如何处理一个请求
    微信小程序—文件系统
    javascript 中 x offsetX clientX screenX pageX的区别
    Bootstrap 框架、插件
    HTML自定义滚动条(仿网易邮箱滚动条)转载
    Vue 组件(上)转载
    vue $mount 和 el的区别
    $on在构造器外部添加事件$once执行一次的事件$off关闭事件
  • 原文地址:https://www.cnblogs.com/fangyuandoit/p/13713845.html
Copyright © 2011-2022 走看看