99偷拍视频精品区一区二,口述久久久久久久久久久久,国产精品夫妇激情啪发布,成人永久免费网站在线观看,国产精品高清免费在线,青青草在线观看视频观看,久久久久久国产一区,天天婷婷久久18禁,日韩动漫av在线播放直播

LNMP部署laravel與xhprof安裝使用

這篇文章主要介紹LNMP部署laravel與xhprof安裝使用,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)公司2013年成立,先為城中等服務(wù)建站,城中等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為城中企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

                                                           整個過程部署laravel與xhprof安裝

前提成功安裝了LNMP集成環(huán)境 (lnmp.org 即可快速安裝),保證network正常運行

首先配置laravel的運行環(huán)境

1.上傳代碼到/home/wwwroot/default/

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

#root 配置為自己的訪問路徑
#引入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)限

#對laravel項目修改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ù)庫操作(可省略根據(jù)自己情況操作數(shù)據(jù))

#賦予外部所有權(quán)限
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
#然后寫入數(shù)據(jù)庫等信息

安裝配置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安裝來配置
$ make
$ sudo make install

2.修改php.ini

#添加到最后
[xhprof]
extension=xhprof.so
xhprof.output_dir=/tmp/xhprof
#在tmp下新建xhprof,同時賦予讀寫權(quán)限
$ cd /tmp && mkdir xhprof
$ chmod -R 777 xhprof

3.安裝 graphviz

$ cd && yum -y install graphviz

4.添加一個vhost(舉個栗子:www.xhproftest.com)

#更近個人情況配置如不知道,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ù)制修改端口好以及訪問路徑和server_name。
#重啟啟動Nginx

laravel項目中配置xhprof

#啟動 xhprof 性能分析器
xhprof_enable(XHPROF_FLAGS_NO_BUILTINS | XHPROF_FLAGS_CPU | XHPROF_FLAGS_MEMORY);
#需要測試的內(nèi)容
foo();
#停止 xhprof 性能分析器
$xhprofData = xhprof_disable();
#根據(jù)自己安裝的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';

以上是“LNMP部署laravel與xhprof安裝使用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

標(biāo)題名稱:LNMP部署laravel與xhprof安裝使用
網(wǎng)址分享:http://www.yijiale78.com/article34/pehsse.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化響應(yīng)式網(wǎng)站網(wǎng)站維護(hù)靜態(tài)網(wǎng)站網(wǎng)站內(nèi)鏈品牌網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作