安裝大約停止70%
本文提供安裝停止約70%時的修正。
問題
在使用安裝精靈進行安裝期間,流程會在大約70%停止(包含或不包含範例資料)。 畫面上不會顯示錯誤。
原因
此問題的常見原因包括:
max_execution_time
的PHP設定- nginx和Varnish的逾時值
解決方案:
視需要設定下列所有專案。
所有Web伺服器和Varnish all-web-servers-and-varnish
-
使用
phpinfo.php
檔案找出您的php.ini
。 -
以具有
root
許可權的使用者身分,在文字編輯器中開啟php.ini
。 -
找到
max_execution_time
設定。 -
將其值變更為
18000
。 -
將變更儲存至
php.ini
並結束文字編輯器。 -
重新啟動Apache:
- CentOS:
service httpd restart
- Ubuntu:
service apache2 restart
如果您使用nginx或Varnish,請繼續下列各節。
- CentOS:
僅限nginx nginx-only
如果您使用nginx,請使用我們隨附的nginx.conf.sample
,或在nginx主機設定檔案中新增逾時設定至location ~ ^/setup/index.php
區段,如下所示:
location ~ ^/setup/index.php {
.....................
fastcgi_read_timeout 600s;
fastcgi_connect_timeout 600s;
}
重新啟動nginx: service nginx restart
僅限上漆 varnish-only
如果您使用Varnish,請編輯default.vcl
並將逾時限制值新增至backend
區段,如下所示:
backend default {
.....................
.first_byte_timeout = 600s;
}
重新啟動Varnish。
service varnish restart
recommendation-more-help
8bd06ef0-b3d5-4137-b74e-d7b00485808a