码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 添加xhprof

时间:2016-01-17 06:26:13      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

sudo wget http://pecl.php.net/get/xhprof
chmod 777 xhprof
tar zxf xhprof
cd xhprof-0.9.2

sudo su
#安装php5-dev
apt-get install php5-dev
如果上面的有错误则用这个:
apt-get update
apt-get install php5-dev --fix-missing

cd extension/
phpize
#下一步非常重要:
./configure -with-php-config=/usr/bin/php-config

make&&make install
make test

然后找到php.ini
添加:

[xhprof]
extension=xhprof.so
;#
;# directory used by default implementation of the iXHProfRuns
;# interface (namely, the XHProfRuns_Default class) for storing
;# XHProf runs.
;#
xhprof.output_dir=/var/log/xhprof/

创建目录
sudo mkdir /var/log/xhprof
更改目录权限
sudo chown www-data:www-data /var/log/xhprof


安装graphviz ,以图形形式查看结果
apt-get install graphviz

重起apache2,查看phpinfo,出现xhprof的配置

ubuntu 添加xhprof

标签:

原文地址:http://www.cnblogs.com/zhaosiwen/p/5136715.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!