【资料整理】php通过yum webtatic安装
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
php通过yum webtatic安装。 https: //webtatic .com /projects/yum-repository/
Webtatic EL6 for CentOS /RHEL 6:
rpm -Uvh http: //mirror .webtatic.com /yum/el6/latest .rpm
以php56为例: # yum search php56 |grep php ============================== N /S Matched: php56 ==============================
php56w.x86_64 : PHP scripting language for creating dynamic web sites
# yum install php56w 【模块】 # yum install php56w-bcmath php56w-fpm php56w-gd php56w-mbstring php56w-mcrypt php56w-mysqlnd php56w-opcache php56w-pdo php56w-pear php56w-pecl-gearman php56w-pecl-geoip php56w-pecl-imagick php56w-pecl-imagick-devel php56w-pecl-memcache php56w-process php56w-soap php56w-xml php56w-xmlrpc +--------------------+ 若安装imagick可能有问题,可以先不安装 # yum install php56w php56w-bcmath php56w-fpm php56w-gd php56w-mbstring php56w-mcrypt php56w-mysqlnd php56w-opcache php56w-pdo php56w-pear php56w-pecl-gearman php56w-pecl-geoip php56w-pecl-memcache php56w-process php56w-soap php56w-xml php56w-xmlrpc 后续用pecl安装: # rpm -e php56w-pecl-imagick-3.1.2-1.w6.x86_64 php56w-pecl-imagick-devel-3.1.2-1.w6.x86_64 # pecl install imagick [root@test118 download] # cat /etc/php.d/imagick.ini
; Enable imagick extension module extension=imagick.so +--------------------+ 安装sphinx: [root@test118 download] # yum install libsphinxclient-devel
[root@test118 download] # pecl install sphinx
Build process completed successfully Installing '/usr/lib64/php/modules/sphinx.so'
install ok: channel: //pecl .php.net /sphinx-1 .3.2
configuration option "php_ini" is not set to php.ini location
You should add "extension=sphinx.so" to php.ini
[root@test118 web] # cat /etc/php.d/sphinx.ini
; Enable sphinx extension module extension=sphinx.so 【调整参数】 调整php.ini: # vim /etc/php.ini expose_php = Off max_execution_time = 300 max_input_time = 600 post_max_size = 100M date .timezone = Asia /Shanghai
启动php-fpm service php-fpm start |
本文转自 pcnk 51CTO博客,原文链接:http://blog.51cto.com/nosmoking/1595629,如需转载请自行联系原作者