Local Port Range

ตอนที่เซิร์ฟเวอร์ยิง Request ออกนอกเครื่องพร้อมกันเยอะมาก จะเจอ error แบบนี้ ถ้าใช้ Local port หมด

cURL error 7: Failed to connect to w.x.y.z: Cannot assign requested address (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)

เราจะต้องกำหนด Local port range ให้กว้างขึ้น เพื่อให้มีจำนวน port ที่ไว้ให้ใช้งานเพิ่มขึ้น

Continue reading “Local Port Range”

คำสั่งสำหรับเช็คเกี่ยวกับ process

จดเก็บไว้ก่อน

โชว์รายการ process ที่กำลังทำงานอย่างละเอียด

ps auxfew

เช็คว่า process id ที่ระบุ รันจาก binary file path ไหน

ls -la /proc/$PID/ | grep exe

หาว่า process id ที่ระบุ ต่อ connection ไปที่ไหนหรือเปล่า

lsof -i -P -n | grep $PID