php swoole 扩展安装
# wget http://pecl.php.net/get/swoole-4.2.9.tgz
# tar -xf swoole-4.2.9.tgz
# cd swoole-4.2.9/
# phpize
# ./configure --with-php-config=/usr/local/php/bin/php-config
# make && make install
# vim /etc/php.ini //根据自己安装好后给出的路径新增下面这行
extension=/usr/local/php/lib/php/extensions/no-debug-non-zts-20151012/swoole.so
保存好后重启php-fpm服务
# php -m | grep swoole //查看是否有swoole模块,找到有就说明安装成功了
Php evet 安装
1.安装libevent
// libevent 是一个库,event扩展依赖这个库并实现其功能!
下载最新稳定版:
wget -c https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz
解压:tar -zxvf libevent-2.1.8-stable.tar.gz
进入目录,配置一下安装目录,然后安装
cd libevent-2.1.8
./configure --prefix=/usr/local/libevent
make && make install
2.安装event扩展
下载文件:wget -c http://pecl.php.net/get/event-2.3.0.tgz
解压:tar -zxvf event-2.3.0.tar.tgz
进入目录 :cd event-2.3.0.tar
运行phpize: /usr/local/php7/bin/phpize
配置 :./configure --with-php-config=/usr/local/php7/bin/php-config --with-event-libevent-dir=/usr/local/libevent/
安装:make && make install
配置文件添加扩展:echo extension = event.so >> /usr/local/php7/etc/php.ini
重启php-fpm服务
查看是否安装完成:php –m | event
如果显示有event 那就表示安装成功了
-----------------------------------------------------
Php启动配置
# cd /usr/local/php/etc/php-fpm.d/
# cp www.conf.default www.conf
# useradd www –s /sbin/nologin
# ln –s /usr/local/php/bin/php /sbin
# ln –s /usr/local/php/bin/phpize /sbin
# ln –s /usr/local/php/sbin/php-fpm /sbin
新系统安装php7.2.8+nginx1.14.2
yum -y install gcc make libpng libpng-devel libjpeg-devel curl-devel bzip2 bzip2-devel openssl-devel libxml2-devel pcre-devel freetype-devel gmp-devel openldap openldap-devel readline-devel perl
yum -y install redhat-rpm-config.noarch libxml2 libxml2-dev libxslt-devel gd-devel perl perl-devel perl-ExtUtils-Embed GeoIP GeoIP-devel GeoIP-data
yum install libtool-ltdl-devel libtool libtool-ltdl
yum -y install openssl openssl-devel.i686
---------------------
php7.2.8
./configure '--prefix=/usr/local/php' '--with-config-file-path=/usr/local/php/etc' '--with-bz2' '--with-curl' '--enable-ftp' '--enable-sockets' '--disable-ipv6' '--with-gd' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr/local' '--with-freetype-dir=/usr/local' '--with-iconv-dir=/usr/local' '--enable-mbstring' '--enable-calendar' '--with-gettext' '--with-ldap' '--with-libxml-dir=/usr/local' '--with-zlib' '--with-pdo-mysql=mysqlnd' '--with-mysqli=mysqlnd' '--enable-dom' '--enable-xml' '--enable-fpm' '--with-libdir=lib64' '--enable-bcmath' '--with-openssl' --with-zlib-dir --enable-calendar --enable-exif '--with-gmp' '--with-mhash' '--with-openssl' --enable-pcntl --with-pcre-jit --with-pcre-dir --with-readline
nginx 1.14
./configure --prefix=/usr/local/nginx --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-http_auth_request_module --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'