การแก้ปัญหาเราเตอร์ Edge

Edge for Private Cloud v. 4.17.09

ติดตั้งใช้งาน 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

ไม่อนุญาตให้ใช้ค่านี้

วิธีแก้ไขข้อผิดพลาด

  1. นำคำต่อท้าย .bad ออกจากชื่อไฟล์ในโฟลเดอร์ /opt/nginx/conf.d เพื่อให้ลงท้ายด้วย .conf
  2. เรียกใช้เครื่องมือ configtest ของ Nginx เพื่อแสดงสาเหตุของการไม่สําเร็จ ดังนี้
    /opt/nginx/scripts/apigee-nginx configtest

    คุณจะเห็นเอาต์พุตในรูปแบบต่อไปนี้

    nginx: [emerg]
      "proxy_busy_buffers_size" must be equal to or greater than the maximum of the value of
      "proxy_buffer_size" and one of the "proxy_buffers" in /opt/nginx/conf/nginx.conf:47
  3. แก้ไข /opt/apigee/customer/application/router.properties เพื่อตั้งค่า conf_load_balancing_load.balancing.driver.proxy.busy.buffer.size เป็น 128k
  4. นำไดเรกทอรี /opt/nginx/conf.d ออกแล้ว:
    rm -rf /opt/nginx/conf.d
  5. รีสตาร์ทเราเตอร์
    /opt/apigee/apigee-service/bin/apigee-service edge-router restart
  6. คุณไม่ควรเห็นไฟล์การกําหนดค่าที่ไม่ถูกต้องในโฟลเดอร์ /opt/nginx/conf.d อีกต่อไป