摘要:重啟啟動(dòng)項(xiàng)目中配置啟動(dòng)性能分析器需要測(cè)試的內(nèi)容停止性能分析器根據(jù)自己安裝的寫(xiě)的路徑
整個(gè)過(guò)程部署laravel與xhprof安裝
前提成功安裝了LNMP集成環(huán)境 (lnmp.org 即可快速安裝),保證network正常運(yùn)行首先配置laravel的運(yùn)行環(huán)境
1.上傳代碼到/home/wwwroot/default/
2.修改nginx配置文件的root以及rewrite配置
#root 配置為自己的訪問(wèn)路徑 #引入pathinfo 配置,注釋掉include enable-php.conf include enable-php-pathinfo.conf; #添加rewrite規(guī)則 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.修改權(quán)限
#對(duì)laravel項(xiàng)目修改storage和vendor為777不能775 $ chmod -R 777 storage vendor
4.laravel指定的public下,需要防跨目錄
#LNMP 1.4上如果不想用防跨目錄或者修改.user.ini的防跨目錄的目錄還需要將 /usr/local/nginx/conf/fastcgi.conf 里面的fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/"; 在該行行前添加 # 或刪除改行,需要重啟nginx。
5.數(shù)據(jù)庫(kù)操作(可省略根據(jù)自己情況操作數(shù)據(jù))
#賦予外部所有權(quán)限 GRANT ALL PRIVILEGES ON *.* TO "root"@"%" IDENTIFIED BY "root" WITH GRANT OPTION; #然后寫(xiě)入數(shù)據(jù)庫(kù)等信息
安裝配置xhprof
1.下載安裝xhprof
$ 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安裝來(lái)配置 $ make $ sudo make install
2.修改php.ini
#添加到最后 [xhprof] extension=xhprof.so xhprof.output_dir=/tmp/xhprof #在tmp下新建xhprof,同時(shí)賦予讀寫(xiě)權(quán)限 $ cd /tmp && mkdir xhprof $ chmod -R 777 xhprof
3.安裝 graphviz
$ cd && yum -y install graphviz
4.添加一個(gè)vhost(舉個(gè)栗子:www.xhproftest.com)
#更近個(gè)人情況配置如不知道,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復(fù)制修改端口好以及訪問(wèn)路徑和server_name。 #重啟啟動(dòng)Nginx
laravel項(xiàng)目中配置xhprof
#啟動(dòng) xhprof 性能分析器 xhprof_enable(XHPROF_FLAGS_NO_BUILTINS | XHPROF_FLAGS_CPU | XHPROF_FLAGS_MEMORY); #需要測(cè)試的內(nèi)容 foo(); #停止 xhprof 性能分析器 $xhprofData = xhprof_disable(); #根據(jù)自己安裝的xhprof寫(xiě)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";
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/25848.html
摘要:重啟啟動(dòng)項(xiàng)目中配置啟動(dòng)性能分析器需要測(cè)試的內(nèi)容停止性能分析器根據(jù)自己安裝的寫(xiě)的路徑 整個(gè)過(guò)程部署laravel與xhprof安裝 前提成功安裝了LNMP集成環(huán)境 (lnmp.org 即可快速安裝),保證network正常運(yùn)行 首先配置laravel的運(yùn)行環(huán)境 1.上傳代碼到/home/wwwroot/default/2.修改nginx配置文件的root以及rewrite配置 #root...
摘要:的一鍵安裝開(kāi)發(fā)環(huán)境非侵入式監(jiān)控平臺(tái)優(yōu)化系統(tǒng)性能定位的神器之前在用做本地開(kāi)發(fā)環(huán)境,因?yàn)闆](méi)有這些對(duì)程序性能追蹤及分析的工具,所以索性基于的編排了一套自己使用。 DNMP PLUS dnmp = Docker + Nginx + MySQL + PHP + Redis + MongDB plus = xhgui + xhprof + tideways dnmp-plus = PHPer 的一...
閱讀 2072·2023-04-25 17:48
閱讀 3584·2021-09-22 15:37
閱讀 2937·2021-09-22 15:36
閱讀 5981·2021-09-22 15:06
閱讀 1640·2019-08-30 15:53
閱讀 1428·2019-08-30 15:52
閱讀 710·2019-08-30 13:48
閱讀 1121·2019-08-30 12:44