微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

LNMP部署laravel以及xhprof安装使用教程

前言

本文是介绍了关于整个过程部署laravel与xhprof安装的相关内容分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

前提成功安装了LNMP集成环境 (lnmp.org 即可快速安装),保证network正常运行

首先配置laravel的运行环境

1.上传代码到/home/wwwroot/default/

2.修改Nginx配置文件的root以及rewrite配置

rush:plain;"> #root 配置为自己的访问路径

引入pathinfo 配置,注释掉include enable-PHP.conf

include enable-PHP-pathinfo.conf;

添加rewrite规则

location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.PHP/$1 last;
break;
}
}
location ~ /index.PHP {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.PHP;
fastcgi_param SCRIPT_FILENAME $document_root/index.PHP;
include fastcgi_params;
fastcgi_param APPLICATION_ENV dev;
}

3.修改权限

rush:plain;"> #对laravel项目修改storage和vendor为777不能775 $ chmod -R 777 storage vendor

4.laravel指定的public下,需要防跨目录

rush:plain;"> #LNMP 1.4上如果不想用防跨目录或者修改.user.ini的防跨目录的目录还需要将 /usr/local/Nginx/conf/fastcgi.conf 里面的fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/"; 在该行行前添加 # 或删除改行,需要重启Nginx

5.数据库操作(可省略根据自己情况操作数据)

rush:plain;"> #赋予外部所有权限 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION; #然后写入数据库等信息

安装配置xhprof

1.下载安装xhprof

rush:bash;"> $ cd /home/wwwroot/default $ wget http://pecl.PHP.net/get/xhprof-0.9.4.tgz $ tar -zxvf xhprof-0.9.4.tgz xhprof $ mv xhprof-0.9.4 xhprof $ cd xhprof $ cd extension/ $ PHPize $ ./configure --with-PHP-config=/usr/local/PHP/bin/PHP-config --enable-xhprof #更近自己的PHP安装来配置 $ make $ sudo make install

2.修改PHP.ini

rush:bash;"> #添加到最后 [xhprof] extension=xhprof.so xhprof.output_dir=/tmp/xhprof

在tmp下新建xhprof,同时赋予读写权限

$ cd /tmp && mkdir xhprof
$ chmod -R 777 xhprof

3.安装 graphviz

rush:bash;"> $ cd && yum -y install graphviz

4.添加一个vhost(举个栗子:www.xhproftest.com)

rush:bash;"> #更近个人情况配置如不知道,https://lnmp.org/faq/lnmp-vhost-add-howto.html#user.ini教程安装 $ lnmp vhost add

修改/usr/local/Nginx/conf/vhost/www.xhproftest.com.conf配置文件,将Nginx.conf的server复制修改端口好以及访问路径和server_name。

重启启动Nginx

laravel项目中配置xhprof

需要测试的内容

foo();

停止 xhprof 性能分析器

$xhprofData = xhprof_disable();

根据自己安装的xhprof写require的路径

require '/home/wwwroot/xhprof/xhprof_lib/utils/xhprof_lib.php';
require '/home/wwwroot/xhprof/xhprof_lib/utils/xhprof_runs.php';

$xhprofRuns = new XHProfRuns_Default();
$runId = $xhprofRuns->save_run($xhprofData,'xhprof_test');

echo 'http://localhost/xhprof/xhprof_html/index.PHP?run=' . $runId . '&source=xhprof_test';

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对编程之家的支持

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。