Request URL /server-status or 404 Page Not Found Apache ErrorリクエストURL /サーバーの状態または404 Apacheのエラーページが見つかりません

In Apache web server, when an administrator wants to check the Apache server status with the command “apachectl status” or “service httpd fullstatus” at shell prompt, the following error may occur:のApache Webサーバ、管理者にしたいときには、 Apacheサーバーの状態をチェックする、次のコマンドで" apachectl状態"または"サービスのhttpd fullstatus "シェルのプロンプトで、次のエラーが発生することがあります:

Not Foundが見つかりません

The requested URL /server-status was not found on this server.リクエストされたURL /サーバーこのサーバー上のステータスが見つかりませんでした。

If you request the Apache status from web page by viewing http://domain_name/server-status link location, a 404 page not found error will be returned by web browser.リクエストする場合は、 Apacheの状態からWebページを表示http://domain_name/server-statusリンク場所は、エラーが発生すると、 404ページが見つかりませんのウェブブラウザが返されることにされています。

There are several reasons why this problem can occurred.この問題を回避するにはいくつかの理由が発生したことです。 First thing to check is to ensure that the mod_status status handler is properly setup and loaded in httpd.conf configuration file.まず最初に確認することはmod_statusの状態を確保するためのハンドラが適切にセットアップと設定ファイルhttpd.confに読み込まれています。 Using APXS, the following 2 lines must exist: apxsを使用しては、次の2行が存在しなければなりません:

LoadModule status_module /path/to/apache/modules/mod_status.so LoadModuleへstatus_module /パス/を/ Apacheの/モジュール/ mod_status.so
AddModule mod_status.c addmodule mod_status.c

If the lines exist, the problem probably lies on virtual host declaration.の場合、行が存在する場合、問題は、おそらくバーチャルホストの宣言に位置しています。 As a side note, you can also check if the status handler is been activated to show more information (but will slow down a busy server) by locating the following line in httpd.conf (default to off):補注として、の状態かどうかを確認することもできます。ハンドラが活性化された他の情報を表示する(ただし、ビジー状態がスローダウンするサーバー)は、次の行をhttpd.confの場所(デフォルトはオフ)に:

ExtendedStatus On extendedstatus上

For virtual host for server-status, ensure that the following line exists in your Apache configuration file:仮想ホスト用のサーバーの状態を確認して、次の行に存在してApacheの設定ファイル:


SetHandler server-status sethandlerサーバーの状態
Order allow,deny注文できるように、否定
Deny from allすべてを否定する
Allow from localhost localhostの許可から

You can change the localhost to your domain name such as .example.com (including dot in front of domain) to allow access from domain address. localhostの変更することができますように自分のドメイン名です。 example.com (ドメインの前にドットを含む)からのアクセスを許可するドメインのアドレスを入力します。 Else localhost restrict access doesn’t allow public access to server-status, and only command shell access locally is possible.他のlocalhostのアクセスを制限する公共のアクセスを許可されませんサーバーの状態、およびローカルでのみコマンドシェルにアクセスが可能です。

Note that also if you use NameVirtualHost *:80 directive, or any *:port directive to run multiple name based virtual hosts, this configuration does not allow server-status on any of the publicly accessible addresses.を使用する場合に注意してもnamevirtualhost * : 80ディレクティブか、または任意の* :ポートディレクティブを実行する複数の名前ベースの仮想ホストは、この設定は許可されませんサーバーのいずれかの状態を外部からアクセス可能なアドレスを入力します。 The reason is that the first Virtual Host in the directive is considered the “Default Virtual Host”, and any unknown entries on the NameVirtualHost space whenever user or process attempts to access port 80 on any IP address, will go to this virtual host by default.その理由は、仮想ホストの最初の考えは、ディレクティブは、 "デフォルトの仮想ホスト" 、および、すべての未知のエントリを検索するユーザーまたはプロセスnamevirtualhost空間へのアクセスを試みるときに、ポート80を任意のIPアドレスは、この仮想ホストがデフォルトに行くです。 Hence the 404 page not found error is returned.それゆえ、 404ページが見つかりませんエラーが返されます。 Furthermore the server-status configuration cannot be placed inside of a VirtualHost directive to be read from a full domain name.また、サーバーの状態を設定することはできないの内側に置かれるのvirtualhostディレクティブを読んでからの完全なドメイン名を入力します。

There are 2s solution and workarounds for this scenario, either by making the server listen on an alternative port (such as port 8080), or allowing only internal or local access.解決策と回避策を2秒には、このシナリオでは、サーバーのいずれかになって聞く上で別のポート(例えば、ポート8080 )か、または内部またはローカルアクセスのみを許可します。

To change to another port, simply adding “Listen 8080″ to the configuration, and you can access the server status from external by using http://domain:8080/server-status in any web browser.別のポートに変更するには、単に追加"を聞く8080 "を設定し、アクセスすることができます外部からのサーバーの状態http://domain:8080/server-statusで、任意のウェブブラウザを使用しています。

To allow only local access for commands such as ‘apachectl status’ or ’service httpd fullstatus’, simply switch each * to the actual IP address to work from, then accessing from localhost (127.0.0.1) will work.ローカルアクセスのみを許可するためのようなコマンドを' apachectl状態'または'サービスのhttpd fullstatus ' 、単にスイッチの各*を、実際の仕事をするのIPアドレスを、入力し、アクセスするからlocalhostの( 127.0.0.1 )は動作します。

For example, change from:たとえば、変更投稿者:

NameVirtualHost *:80 namevirtualhost * : 80

to 〜へ

NameVirtualHost 10.0.0.3:80 namevirtualhost 10.0.0.3:80

Once configuration file is modified correctly, restart Apache HTTPD server.一度の設定ファイルが変更されず、 Apacheののhttpdサーバーを再起動します。

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 重要 :これは、機械翻訳ページで提供"現状有姿"を保証します。 Machine translation may be difficult to understand.機械翻訳を理解するのは難しいかもしれません。 Please refer toを参照してください original English articleオリジナルの英語記事索引 whenever possible.いつ可能です。

Share and contribute or get technical support and help atを共有して貢献や技術サポートとヘルプを得る My Digital Life Forums 私のデジタルライフフォーラム .です。



2 Responses to “Request URL /server-status or 404 Page Not Found Apache Error” 2つの応答を"リクエストURL /サーバーの状態または404ページが見つかりませんApacheのエラーが発生"

  1. LYNDA RIDLEYリンダリドリー
    December 28th, 2007 01:37 2007年12月28日01:37
    1

    Hi,やあ、
    I hope you dont mind me asking you, but i’ve been searching on Google for some help as i’m totally stuck - and then I found you !! dont心を聞いてほしいけど、私はずっといくつかのヘルプをGoogleで検索すると私は完全にスタック-と入力し、見つけたぞ! !
    My website went down about 3 weeks ago and I cant get in touch wih the man who set my site up for me.自分のウェブサイトがダウン約3週間前と私に連絡できないwihの男whoセット自分のサイトにアップです。
    I’m trying to get onto my site and its just telling me that the certificate has expired, but I dont know what to do.私は自分のサイトをしようとして得るだけ教えてくれとは、証明書の期限が切れて、しかし、私dont知って何をするかです。
    I am desperate for help but am not too good on computers so dont understand all the ‘lingo’ and any advise would need to be in simple terms.しかし、私は必死に助けをアムはあまりにも良いのでdont理解されているコンピュータのすべての'言葉'と任意のアドバイスが簡単に利用する必要があります。
    I would be very very grateful if you could point me in the right direction.私の場合は非常に非常に感謝して、正しい方向に私がポイントです。
    Thanks hopefully,ありがとううまくいけば、
    Lyndaリンダ

  2. admin管理者
    December 28th, 2007 02:23 2007年12月28日02:23
    2

    You can still visit even though SSL certificate is expired.にもかかわらず訪問することができますSSL証明書の期限が切れています。 Just accept the security warning.セキュリティの警告を受け入れるだけです。 Looks like your site is having configuration error on web server, probably virtual hosts or redirection error.お客様のサイトの構成は次のようにエラーが発生するウェブサーバーは、おそらく仮想ホストまたはリダイレクトエラーが発生します。

Leave a Reply残して返信

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> これらのタグを使用することができます: <aのhref=のtitle= <abbrのtitle= <blockquote cite=""> <cite> <acronymのtitle= <b>ダウンロードの<code> <デル日時= " " >の<em> <i>て<strike> <strong> <q cite="">

Subscribe without commenting登録なしのコメント


Custom Search

New Articles新しい記事

Incoming Search Terms for the Article検索用語を受信するには

The requested URL was not found on this server. リクエストされたURLはこのサーバー上で見つかりませんでした。 - - The requested URL / was not found on this server. リクエストされたURL / は、このサーバー上で見つかりませんでした。 - - The requested URL was not found on this server リクエストされたURLが見つかりませんでしたこのサーバー上 - - The requested URL was not found on this server. リクエストされたURLはこのサーバー上で見つかりませんでした。 - - The requested URL /server-status was not found on this server. リクエストされたURL /サーバーこのサーバー上のステータスが見つかりませんでした。 - - The requested URL / was not found on this server リクエストされたURL /は、このサーバー上で見つかりませんでした - - The requested URL returned error: 404 リクエストされたURLから返されたエラー: 404 - - The requested URL /server-status was not found on this server リクエストされたURL /サーバーこのサーバー上のステータスが見つかりませんでした。 - - The requested URL was not found on this server リクエストされたURLが見つかりませんでしたこのサーバー上 - - The requested URL /xampp/ was not found on this server. リクエストされたURL / XAMPPの/は、このサーバー上で見つかりませんでした。 - - apache The requested URL / was not found on this server. ApacheのリクエストされたURL /は、このサーバー上で見つかりませんでした。 - - apache the requested url was not found on this server. ApacheのリクエストされたURLはこのサーバー上で見つかりませんでした。 - - The requested URL /index_files/--WEBBOT-SELF-- was not found on this server. リクエストされたURL / index_files/--webbot-self--は、このサーバー上で見つかりませんでした。 - - The requested URL http:// was not found on this server. リクエストされたURL http://は、このサーバー上で見つかりませんでした。 - - The requested URL was not found on this server. リクエストされたURLはこのサーバー上で見つかりませんでした。 - - Apache Status URL Apacheの状態のURL - - The requested URL /apache2-default/ was not found on this server. リクエストされたURL / apache2のデフォルト/は、このサーバー上で見つかりませんでした。 - - server-status 404 サーバーのステータス404 - - The requested URL /server-status was not found on this server. リクエストされたURL /サーバーこのサーバー上のステータスが見つかりませんでした。 - - apache server-status 404 Apacheサーバ-ステータス404 - - all すべての - - wordpress The requested URL was not found on this server. WordPressのリクエストされたURLはこのサーバー上で見つかりませんでした。 - - Not Found The requested URL / was not found on this server. リクエストされたURLが見つかりませんでした/は、このサーバー上で見つかりませんでした。 - - the request url was not found on this server リクエストURLがこのサーバー上で見つかりませんでした - - url server URLのサーバー - - Not Found The requested URL was not found on this server リクエストされたURLが見つかりませんでしたが、このサーバー上で見つかりませんでした - - requested url not found on this server このサーバー上で要求されたURLが見つかりません - - apache2 The requested URL / was not found on this server. apache2のリクエストされたURL /は、このサーバー上で見つかりませんでした。 - - server-status virtualhost サーバーの状態のvirtualhost - - apache url not found ApacheのURLが見つかりません - - Not Found The requested URL was not found on this server. リクエストされたURLが見つかりませんでしたが、このサーバー上で見つかりませんでした。 - - The requested URL was not found on this server. リクエストされたURLはこのサーバー上で見つかりませんでした。 apache Apacheの - - apache server-status not working Apacheサーバの状態を正しく動作 - - The requested URL /server-status was not found on this server. リクエストされたURL /サーバーこのサーバー上のステータスが見つかりませんでした。 - - apachectl status apachectl状態 - - apache The requested URL was not found on this server. ApacheのリクエストされたURLはこのサーバー上で見つかりませんでした。 - - how to enable server-status in apache サーバーの状態を有効にする方法のApache - - apache server-status not found Apacheサーバ-ステータスが見つかりません - - Not Found The requested URL was not found on this server. リクエストされたURLが見つかりませんでしたが、このサーバー上で見つかりませんでした。 - - The requested URL was not found on this server リクエストされたURLが見つかりませんでしたこのサーバー上 - - "The requested URL / was not found on this server" "リクエストされたURL /は、このサーバー上で見つかりませんでした" - - apachectl server-status apachectlサーバーの状態 - - wordpress The requested URL was not found on this server WordPressのリクエストされたURLが見つかりませんでしたこのサーバー上 - - "The requested URL /server-status was not found on this server" "リクエストされたURL /サーバーこのサーバー上のステータスが見つかりませんでした" - - The requested URL was not found on this server wordpress リクエストされたURLが見つかりませんでしたこのサーバー上のWordPress - - mod_status 404 mod_status 404 - - the requested url was not found on this server APACHE リクエストされたURLが見つかりませんでしたこのサーバー上でApacheの - - URL not found apache ApacheのURLが見つかりませんでした - - apache page not found Apacheのページが見つかりません - - apache the requested URL was not found on this server ApacheのリクエストされたURLが見つかりませんでしたこのサーバー上 - -