安裝大約停止70%

本文提供安裝停止約70%時的修正。

問題

在使用安裝精靈進行安裝期間,流程會在大約70%停止(包含或不包含範例資料)。 畫面上不會顯示錯誤。

原因

此問題的常見原因包括:

解決方案:

視需要設定下列所有專案。

所有Web伺服器和Varnish all-web-servers-and-varnish

  1. 使用phpinfo.php檔案找出您的php.ini

  2. 以具有root許可權的使用者身分,在文字編輯器中開啟php.ini

  3. 找到max_execution_time設定。

  4. 將其值變更為18000

  5. 將變更儲存至php.ini並結束文字編輯器。

  6. 重新啟動Apache:

    • CentOS: service httpd restart
    • Ubuntu: service apache2 restart

    如果您使用nginx或Varnish,請繼續下列各節。

僅限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