centOS下 PHP + swoole 安装记录_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > centOS下 PHP + swoole 安装记录

centOS下 PHP + swoole 安装记录

 2014/10/18 11:40:19  xxi  程序员俱乐部  我要评论(0)
  • 摘要:swoole有点类似node.js,swoole纯C编写的PHP扩展.多进程和非阻塞安装php:先卸载:#yumremovephpphp-bcmathphp-cliphp-commonphp-develphp-fpmphp-gdphp-imapphp-ldapphp-mbstringphp-mcryptphp-mysqlphp-odbcphp-pdophp-pearphp-pecl-igbinaryphp-xmlphp-xmlrpc源#rpm-Uvhhttp://mirror.webtatic
  • 标签:PHP 安装 CentOS
swoole 有点类似node.js  ,  swoole纯C编写的PHP扩展. 多进程和非阻塞


安装php :
卸载:
# yum remove php  php-bcmath php-cli php-common  php-devel php-fpm    php-gd php-imap  php-ldap php-mbstring php-mcrypt php-mysql   php-odbc   php-pdo   php-pear  php-pecl-igbinary  php-xml php-xmlrpc


# rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm

安装php5.5
yum install php55w  php55w-bcmath php55w-cli php55w-common  php55w-devel php55w-fpm    php55w-gd php55w-imap  php55w-ldap php55w-mbstring php55w-mcrypt php55w-mysql   php55w-odbc   php55w-pdo   php55w-pear  php55w-pecl-igbinary  php55w-xml php55w-xmlrpc php55w-opcache php55w-intl php55w-pecl-memcache

php5.5 默认带有pdo,不需要先安装 mysql

php.ini修改
date.timezone = 'Asia/Shanghai'

注意卸载:
yum remove httpd

安装swoole:
https://github.com/swoole/swoole-src/releases

# wget https://github.com/swoole/swoole-src/archive/swoole-1.7.6-stable.tar.gz
tar zxvf swoole-1.7.6-stable.tar.gz
swoole-1.7.6-stable.tar.gz
phpize
./configure
make
make install

下面扩展加入到php.ini
extension=swoole.so
发表评论
用户名: 匿名