該模塊在Tengine-1.4.0版本之前沒有默認開啓,它能夠在配置編譯選項的時候開啓:./configure --with-http_upstream_check_module
nginx
可是在1.4.0以後編譯時默認開啓的,可是在2.3.1版本時候默認取消了,須要以增長模塊方式編譯進去後端
./configure --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module --prefix=/usr/local/nginx --with-jemalloc --with-stream --add-module=./modules/ngx_http_upstream_check_module/code
而後make && make install便可server
若是不用添加模塊方式也就是--add方式,在upstream裏配置後端server健康檢查時候會提示語法錯誤,也就是check 錯誤。ip
特此記錄一下。ssl