溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Centos7.3中怎么通過composer安裝laravel5.8

發(fā)布時間:2021-07-12 14:25:59 來源:億速云 閱讀:169 作者:Leah 欄目:大數(shù)據(jù)

這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)Centos7.3中怎么通過composer安裝laravel5.8,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。


一、安裝composer

執(zhí)行指令curl -sS https://getcomposer.org/installer | php

Centos7.3中怎么通過composer安裝laravel5.8php composer.phar移到bin目錄下mv composer.phar /usr/local/bin/composer并且重新命名為composer

輸入指令查看版本,看是否安裝成功Centos7.3中怎么通過composer安裝laravel5.8

 

二、安裝laravel

注意你需要安裝版本對PHP的要求Centos7.3中怎么通過composer安裝laravel5.8咔咔這里使用的是PHP7.2Centos7.3中怎么通過composer安裝laravel5.8laravel是準備在虛擬機操作就沒有單獨配置conf,直接在html目錄操作

執(zhí)行安裝composer create-project --prefer-dist laravel/laravel blog "5.8.*"Centos7.3中怎么通過composer安裝laravel5.8查看laravle的版本Centos7.3中怎么通過composer安裝laravel5.8

 

三、訪問測試

查出我虛擬機的ip地址Centos7.3中怎么通過composer安裝laravel5.8然后就可以通過在宿主機訪問http://192.168.254.135/blog/public/index.phpCentos7.3中怎么通過composer安裝laravel5.8

 

四、容錯

在本地操作的不會有影響,線上服務器的也不會有影響。

跟咔咔使用一樣環(huán)境的,由于是虛擬機,所以在關(guān)機開機后php-fpm有可能沒有重啟,就會出現(xiàn)下面的錯誤Centos7.3中怎么通過composer安裝laravel5.8遇到這個錯誤別慌,看看自己的php-fpm是否開啟

執(zhí)行命令systemctl start php-fpm即可

 

五、設置fpm自啟動

咔咔的PHP是直接使用yum安裝的

設置fpm自動啟動只需要執(zhí)行systemctl enable php-fpm即可

 

六、設置ngixn自啟動

根據(jù)自己nginx的安裝位置進行調(diào)整,我的安裝位置在/usr/local/nginx/

執(zhí)行cd /lib/systemd/system/

創(chuàng)建vim nginx.service并寫如下

[Unit]
Description=nginx service
After=network.target 
   
[Service] 
Type=forking 
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true 
   
[Install] 
WantedBy=multi-user.target
 

設置開機自啟systemctl enable nginx

上述就是小編為大家分享的Centos7.3中怎么通過composer安裝laravel5.8了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI