php编译安装

Centos6 环境:

yum install libxml2-devel curl-devel libpng-devel freetype-devel -y

./configure --prefix=/usr/local/php-7.x.x \
--with-mysqli=mysqlnd \
--with-jpeg-dir \
--with-png-dir \
--with-iconv-dir \
--with-freetype-dir \
--with-zlib \
--with-mhash \
--with-libxml-dir \
--with-curl \
--with-mcrypt \
--with-gd \
--with-openssl \
--enable-ftp \
--enable-xml \
--enable-sockets \
--enable-bcmath \
--enable-inline-optimization \
--enable-gd-native-ttf \
--enable-mbregex \
--enable-mbstring \
--enable-pcntl \
--enable-sockets \
--enable-fpm \
--enable-soap \
--enable-zip \
--enable-opcache

make -j24
make install

安装相关扩展:

第一种是使用pecl:

pecl install swoole
pecl install redis 

 

第二种是下载扩展源码安装:

#swoole编译,添加--enable-coroutine编译参数启用协程能力
git clone https://github.com/swoole/swoole-src.git
cd swoole-src/
phpize
./configure --with-php-config=/usr/local/php/bin/php-config --enable-coroutine
make && make install

 


相关错误记录:
configure: error: xml2-config not found. Please check your libxml2 installation.
=>yum install libxml2-devel -y

configure: error: Please reinstall the libcurl distribution -
=>yum -y install curl-devel

checking for jpeg_read_header in -ljpeg... yes
configure: error: png.h not found.
=>yum install libpng-devel -y


If configure fails try --with-xpm-dir=<DIR>
configure: error: freetype-config not found.
=>yum install freetype-devel -y

yum install libxml2-devel curl-devel libpng-devel freetype-devel -y

 

查看php-fpm的状态信息: 

apt-get install libfcgi0ldbl 或

yum --enablerepo=epel install fcgi

SCRIPT_FILENAME=/pm_status SCRIPT_NAME=/pm_status REQUEST_METHOD=GET cgi-fcgi -bind -connect /var/run/php-fcgi.sock

 参考:https://www.thatsgeeky.com/2012/02/directly-connecting-to-php-fpm/

 

# apt-get install python-pip

# pip install requests
Downloading/unpacking requests
Cannot fetch index base URL http://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement requests
No distributions at all found for requests
Storing complete log in /root/.pip/pip.log

=〉解决办法:

vim ~/.pip/pip.conf
[global]

index-url=http://pypi.douban.com/simple/

 

像这种安装部署的事情可以用Ansible或SaltStack固化下来,形成统一标准化配置。

 

posted @ 2017-12-15 15:21  helloworld899  阅读(128)  评论(0编辑  收藏  举报