web-dev-qa-db-ja.com

Apache abは機能しません-ab:テスト時に無効なURL pythonサイクロン

私はサイクロンをabテストしようとしています。

私が走るとき

ab -n 2000 -c 25 http://127.0.0.1

Ab:無効なURLを取得します。

さて...開発マシンでffに行くと、サイトはそこにあります。

これが私のnginx設定です

http {

    upstream frontends {
        server 127.0.0.1:8051;
    }

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 30;
    types_hash_max_size 2048;
    # server_tokens off;
    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

        # Only retry if there was a communication error, not a timeout
        # on the Tornado server (to avoid propagating "queries of death"
        # to all frontends)
        proxy_next_upstream error;

    server {
        listen   80;
        server_name 127.0.0.1;

                location / {
            proxy_pass_header Server;
            proxy_set_header Host $http_Host;
            proxy_redirect false;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Scheme $scheme;
                 proxy_pass http://frontends;
        }
30
Tampa

abでは、URLの後にスラッシュが必要です。

これはうまくいくはずです:

ab -n 2000 -c 25 http://127.0.0.1/
134
fiorix

やってみました ab 127.0.0.1またはab http://127.0.0.1/

20