• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

php怎么安装fpm扩展

武飞扬头像
PHP中文网
帮助76

php怎么安装fpm扩展?

php 安装php-fpm/多版本PHP添加拓展

与lamp安装PHP有区别, LNMP需要开启PHP-fpm服务

cd /usr/local/src/
wget http://cn2.php.net/distributions/php-5.6.30.tar.gz
tar zxf php-5.6.30.tar.gz
useradd -s /sbin/nologin php-fpm
cd php-5.6.30

 ./configure --prefix=/usr/local/php-fpm --with-config-file-path=/usr/local/php-fpm/etc --enable-fpm --with-fpm-user=php-fpm --with-fpm-group=php-fpm --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/mysql --with-mysql-sock=/tmp/mysql.sock --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --with-pear --with-curl  --with-openssl

php 安装参数

 ./configure --prefix=/usr/local/php-fpm --with-config-file-path=/usr/local/php-fpm/etc --enable-fpm --with-fpm-user=php-fpm --with-fpm-group=php-fpm --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/mysql --with-mysql-sock=/tmp/mysql.sock --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --with-pear --with-curl  --with-openssl
 ./configure --prefix=/usr/local/php-fpm  //安装位置
--with-config-file-path=/usr/local/php-fpm/etc //配置文件路径
--with-fpm-user=php-fpm     //user
--with-fpm-group=php-fpm  //group
--with-mysql=/usr/local/mysql  //支持MySQL
--with-mysqli=/usr/local/mysql/bin/mysql_config
--with-pdo-mysql=/usr/local/mysql
 --with-mysql-sock=/tmp/mysql.sock
#安装php依赖包
yum install libmcrypt-devel
yum install freetype-devel
yum -y install libpng-devel
yum -y install libjpeg-devel
yum install libcurl-devel

find / -name "xml2-config"  #查看此文件是否存在
yum install libxml2-devel -y

make && make install
cp php.ini-production /usr/local/php-fpm/etc/php.ini
vi /usr/local/php/etc/php-fpm.conf //写入如下内容(参考https://coding.net/u/aminglinux/p/aminglinux-book/git/blob/master/D15Z/php-fpm.conf)
cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm  // php-fpm 添加到可service启动
chmod 755 /etc/init.d/php-fpm
chkconfig --add php-fpm
chkconfig php-fpm on
service php-fpm start
ps aux |grep php-fpm
wget http://pecl.php.net/get/stomp-1.0.9.tgz
tar xf stomp-1.0.9.tgz
cd stomp-1.0.9
/usr/local/php-fpm/bin/phpize
./configure --with-php-config=/usr/local/php-fpm/bin/php-config
make && make install


# 查找php加载php.ini路径
/usr/local/php-fpm/bin/php --ini
vi /usr/local/php-fpm/etc/php.ini
# 末尾添加
extension_dir = "/usr/local/php-fpm/lib/php/extensions/no-debug-non-zts-20131226/"
extension=stomp.so

# 应用PHP相关路径要明确指定,避免与系统自带PHP想混淆

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanfcgab
系列文章
更多 icon
同类精品
更多 icon
继续加载