当前位置: > CentOS > CentOS教程 >

CentOS 6 安装 APC(Alternative PHP Cache)

时间:2016-05-30 00:12来源:blog.csdn.net 作者:IT

STEP 1.安装基本 packages

#yum install php-pear php-devel httpd-devel pcre-devel gcc make

STEP 2.pecl

pecl install apc

如果报错,提示“Fatal Error”,则:

yum install php-pecl-apc

配置参数

#vim /etc/php.d/apc.ini 

STEP 4.重启服务器

#service httpd restart

STEP 5.检查apc安装

新建文件:

# vim /var/www/html/phpinfo.php

编辑文件:

<?php
    phpinfo();
?>

打开浏览器,输入http://your-domain/phpinfo.php  

php5.5后版本自带opcache代替APC

Referrence

1.http://www.tecmint.com/install-apc-alternative-php-cache-in-rhel-centos-fedora/

2.https://easyengine.io/tutorials/php/zend-opcache/

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容