最近把PHP升級到5.4之後,原本很習慣使用eAccelerator就沒有repo可以安裝使用。比較了一下之後,發現APC還蠻多人推薦的,因此就決定用它了。
1. 安裝remi repo
在安裝APC加速器之前,我們必須要先安裝remi 這個repo
如果你跟我一樣所使用的AMI是Amazon Linux AMI x64,請使用下面的指令安裝remi
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm sudo rpm -Uvh remi-release-6.rpm
如果你所使用的是RHEL x64,請同時安裝EPEL這個repo
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm sudo rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm
安裝完畢之後,我們必須要啟用remi這個repo
sudo vim /etc/yum.repos.d/remi.repo
把enabled改成1,我習慣也會把remi的權重調整一下,在enabled之前加上這一行
priority=1
2. 安裝APC加速器
2-1 連同APC管理介面一起安裝的指令
sudo yum install apc-panel
2-2 只單純安裝APC加速器
sudo yum install php-pear php-pecl-apc
這樣就完成安裝了
3. 設定APC加速器管理的存取權限
如果在第二步你選擇只安裝APC加速器,那麼可以跳過這個步驟,直接到步驟四
sudo vi /etc/httpd/conf.d/apc-panel.conf
加入我們允許存取的IP
# # APC Control Panel Alias /apc-panel /usr/share/apc-panel <Directory /usr/share/apc-panel> <IfModule mod_authz_core.c> # Apache 2.4 Require local </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order Deny,Allow Deny from All Allow from 127.0.0.1 Allow from ::1 Allow from 加入你允許存取的IP </IfModule> </Directory>
4. 重新啟動Apache
sudo service httpd restart
這樣就完成了PHP-APC加速器的安裝,如果你有安裝APC管理介面,那麼可以在 http://你的ip或domain/apc-panel 看到APC相關的資訊
1 Comment
如何在AWS EC2上面安裝Zend OPcache加速PHP | 阿維雜記本 (Wei's Blog)
12 8 月, 2013[…] 之前分享如何在AWS EC2上面安裝PHP-APC加速器,有網友留言說可以試試PHP5.5內建的OPcache試試看。我想要試試看OPcache的威力但目前暫時還不想要升級到PHP5.5。好在remi這個源裡面有提供OPcache可以讓我們安裝,下面就跟大家分享一下如何在AWS EC2上面安裝OPCache。 […]