ubuntu下安装xhprof

首先下载xhprof:

# wget http://pecl.php.net/get/xhprof-0.9.2.tgr.gz

解压

# tar -xzvf xhprof-0.9.2.tar.gz

# cd xhprof-0.9.2

copy目录到web目录

# cp -r xhprof_html /var/www/xhprof

#cd extension

生成confirgure文件

# phpize  ##此处注意,如没有此命令需要安装php5-dev

编译安装

#./confirgure

# make && make install

将一下文件写入到/etc/php5/apache2/php.ini中

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/

重启apache,就会在phpinfo中看到xhprof的信息.

另外如要以图表形式查看请安装graphviz

apt-get install graphviz

详细文档:http://www.162cm.com/p/xhprofdoc.html

你可能感兴趣的:(ubuntu,xhprof)