Private Cloud v4.18.01 版
Edge Router 是使用 Nginx 路由器實作。在 Edge 升級程序中 變更路由器設定時,您可能會看到 Nginx 設定錯誤。時間 發生這些錯誤時,Edge 會寫入造成問題的 Nginx 設定檔 /opt/nginx/conf.d.接著 使用 Nginx configtest 工具 來判斷錯誤的原因。
舉例來說,您檢查 /opt/nginx/conf.d 並查看下列檔案:
-rw-r--r-- 1 apigee apigee 522 Jul 20 08:41 0-default.conf.bad -rw-r--r-- 1 apigee apigee 577 Jul 20 08:42 0-fallback.conf -rw-r--r-- 1 apigee apigee 1062 Jul 20 08:18 0-map.conf -rw-r--r-- 1 apigee apigee 1887 Jul 20 08:42 custorg_test_default.conf.bad
請注意,多個檔案的後置字串為 .bad。
這些錯誤通常是因為您對 /opt/apigee/customer/application/router.properties 檔案做出錯誤的變更,或是對虛擬主機做出錯誤的變更。舉例來說,您新增了以下內容:
conf_load_balancing_load.balancing.driver.proxy.busy.buffer.size=32k
此值不允許。
如何修正這類錯誤:
- 從 /opt/nginx/conf.d 資料夾的檔案名稱中移除 .bad 後置字串 因此結尾是 .conf。
- 執行 Nginx configtest 工具,即可查看失敗原因:
> /opt/nginx/scripts/apigee-nginx configtest
您會看到以下格式的輸出內容:
nginx: [emerg] "proxy_busy_buffers_size" 必須等於或大於 /opt/nginx/conf/nginx.conf:47 中 "proxy_buffer_size" 和其中一個 "proxy_buffers" 的最大值 - 編輯 /opt/apigee/customer/application/router.properties,將 conf_load_balancing_load.balancing.driver.proxy.busy.buffer.size 設為 128k。
- 移除 /opt/nginx/conf.d 資料夾:
> rm -rf /opt/nginx/conf.d - 重新啟動路由器:
> /opt/apigee/apigee-service/bin/apigee-service Edge-router 重新啟動 - /opt/nginx/conf.d 資料夾中應該不會再顯示錯誤的設定檔。