zoukankan      html  css  js  c++  java
  • 服务器php启动

    php.ini放在--with-config-file-path设置路径下lib文件夹中才找的到!!!!
    
    fpm的配置文件需要放在这个位置/usr/local/etc/php-fpm.conf,暂时不知道咋改;
    
    http://blog.csdn.net/xiaog351/article/details/47421969
    
    php:
    {
    cd /opt/apps
    wget http://cn2.php.net/distributions/php-5.6.26.tar.gz
    tar -xzvf php-5.6.26.tar.gz 
    cd php-5.6.26/
    ;./configure --prefix=/opt/apps/php(安装目录)  --with-config-file-path=/opt/apps/php(配置目录)
    --enable-fpm --with-mysql(php-fpm)
    yum install libxml2* -y 
    make
    make test
    make install
    vim /etc/profile
    添加:
    PHP_HOME=/opt/apps/php
    export PATH=$PATH:$PHP_HOME/bin
    source /etc/profile
    php -v 查看
    }
    php.ini放在--with-config-file-path设置路径下lib文件夹中才找的到!!!!
    ssl
    {
        cd /opt/apps/php-5.6.26/ext/openssl
        cp config0.m4 config.m4
        /opt/apps/php/bin/phpize 
        ./configure --with-openssl --with-php-config=/opt/apps/php/bin/php-config
        make
        make test
        make install
        在php.ini内加入以下内容:
    extension_dir = "/opt/apps/php/lib/php/extensions/no-debug-non-zts-20131226"
    extension = "openssl.so"
    重启php、nginx后生效
    }
    php/sbin/php-fpm -y /opt/apps/php/etc/php-fpm.conf -c /opt/apps/php/php.ini
    装memcached扩展
    {
    #wget http://pecl.php.net/get/memcache-2.2.6.tgz
    # tar zxf memcache-2.2.6.tgz
    # cd memcache-2.2.6
    # /usr/local/php/bin/phpize
    # ./configure --with-php-config=/usr/local/php/bin/php-config --enable-memcache
    # make
    # make install
    }
    装pdo_mysql扩展
    {
    # cd /opt/php/php-5.6.30/ext/pdo_mysql
    # /usr/local/bin/phpize
    # ./configure --with-pdo-mysql=/opt/apps/mysql --with-php-conifg=/usr/local/bin/php-confi
    # make
    # make install
    }
  • 相关阅读:
    nginx转发域名小记
    简化kubernetes应用部署工具之Helm应用部署
    docker-compose的使用
    使用二进制包安装k8s
    搭建k8s(一)
    linux环境下安装使用selenium Chrome
    常用User-Agent大全
    缓存之Memcache
    git-commit Angular规范
    Kubernetes介绍及基本概念
  • 原文地址:https://www.cnblogs.com/hawk-whu/p/6778350.html
Copyright © 2011-2022 走看看