我在openshift创建了一个新应用。这是运行symfony项目的PHP 5.4。 我正在考虑
503 Service Unavailable
No server is available to handle this request
APP墨盒:
我改变了haproxy.cnf就像在回答CodeIgniter(/ MyCIapp /)相同的问题时说的那样
option httpchk GET /web/
但它没有奏效。我不知道这是不是应该如何捐赠,我只是在努力,因为我谷歌的错误:S
这是我的完整haproxy.cnf
#---------------------------------------------------------------------
# Example configuration for a possible web application. See the
# full configuration options online.
#
# http://haproxy.1wt.eu/download/1.4/doc/configuration.txt
#
#---------------------------------------------------------------------
#---------------------------------------------------------------------
# Global settings
#---------------------------------------------------------------------
global
# to have these messages end up in /var/log/haproxy.log you will
# need to:
#
# 1) configure syslog to accept network log events. This is done
# by adding the '-r' option to the SYSLOGD_OPTIONS in
# /etc/sysconfig/syslog
#
# 2) configure local2 events to go to the /var/log/haproxy.log
# file. A line like the following can be added to
# /etc/sysconfig/syslog
#
# local2.* /var/log/haproxy.log
#
#log 127.0.0.1 local2
maxconn 256
# turn on stats unix socket
stats socket /var/lib/openshift/53cf023e500446e8e40000b6/haproxy//run/stats level admin
#---------------------------------------------------------------------
# common defaults that all the 'listen' and 'backend' sections will
# use if not designated in their block
#---------------------------------------------------------------------
defaults
mode http
log global
option httplog
option dontlognull
option http-server-close
#option forwardfor except 127.0.0.0/8
option redispatch
retries 3
timeout http-request 10s
timeout queue 1m
timeout connect 10s
timeout client 1m
timeout server 1m
timeout http-keep-alive 10s
timeout check 10s
maxconn 128
listen stats 127.6.152.3:8080
mode http
stats enable
stats uri /
listen express 127.6.152.2:8080
cookie GEAR insert indirect nocache
option httpchk GET /
balance leastconn
server local-gear 127.6.152.1:8080 check fall 2 rise 3 inter 2000 cookie local-53cf023e500446e8e40000b6
66,4 Bot
这是rhc尾部结果:
==> app-root/logs/haproxy.log <==
[WARNING] 202/234012 (389054) : Server express/local-gear is DOWN for maintenance.
[WARNING] 202/234013 (389054) : Server express/local-gear is DOWN for maintenance.
[WARNING] 202/234017 (422420) : config : log format ignored for proxy 'stats' since it has no log address.
[WARNING] 202/234017 (422420) : config : log format ignored for proxy 'express' since it has no log address.
[WARNING] 202/234018 (422420) : Server express/local-gear is DOWN, reason: Layer7 wrong status, code: 404, info: "Not Found", check duration: 905ms. 0 active and 0 backup servers left. 0 sessions active, 0 requeued, 0 remaining in queue.
[ALERT] 202/234018 (422420) : proxy 'express' has no server available!
[WARNING] 202/234021 (422420) : Server express/local-gear is DOWN for maintenance.
[WARNING] 202/234025 (422420) : Server express/local-gear is UP (leaving maintenance).
[WARNING] 202/234027 (422420) : Server express/local-gear is DOWN, reason: Layer7 wrong status, code: 404, info: "Not Found", check duration: 279ms. 0 active and 0 backup servers left. 0 sessions active, 0 requeued, 0 remaining in queue.
[ALERT] 202/234027 (422420) : proxy 'express' has no server available!
==> app-root/logs/php.log <==
- - - [22/Jul/2014:23:40:38 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:40:40 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:40:42 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:40:44 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:40:47 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:40:49 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:40:51 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:40:53 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:40:55 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:40:58 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
==> app-root/logs/haproxy_ctld.log <==
I, [2014-07-22T20:31:57.655534 #446960] INFO -- : Starting haproxy_ctld
I, [2014-07-22T23:04:34.918141 #355794] INFO -- : Starting haproxy_ctld
I, [2014-07-22T23:11:13.815573 #368500] INFO -- : Starting haproxy_ctld
I, [2014-07-22T23:13:54.502196 #373865] INFO -- : Starting haproxy_ctld
I, [2014-07-22T23:15:19.110173 #376596] INFO -- : Starting haproxy_ctld
I, [2014-07-22T23:40:18.395416 #422460] INFO -- : Starting haproxy_ctld
==> app-root/logs/php.log <==
- - - [22/Jul/2014:23:41:00 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:41:02 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:41:04 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:41:06 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:41:09 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
- - - [22/Jul/2014:23:41:11 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
答案 0 :(得分:2)
问题是:
option httpchk GET /
- - - [22/Jul/2014:23:40:40 -0400] "GET / HTTP/1.0" 404 554 "-" "-"
我的项目没有/我的路线。
真正的问题是我对haproxy一无所知:)
似乎当haproxy.cnf中配置的路由不存在时,它不会启动齿轮,因此无法解析任何其他有效路径。 haproxy_status页面显示为DOWN。 当我在我的项目中为/添加有效路线时,haproxy状态显示齿轮为UP并开始工作。
答案 1 :(得分:2)
你走在正确的轨道上。一旦您进入SSH并正在编辑
HAProxy的/ CONF / haproxy.cfg
您需要更改行
选项httpchk GET /
这应该是您的应用程序上的状态URL,当您的应用程序服务器状态正常工作时将返回HTTP 200,而HTTP状态404或500则返回HTTP状态URL。所以你应该在你的应用程序中嵌入一个小状态页面。让它变亮,因为HA代理将经常调用它 - 我只是检查池中是否存在实时数据库连接并且不返回任何内容。
然后将相对网址放在haproxy.cfg的httpchk行中,就像这样
选项httpchk GET / my-app / status