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 私のデジタルライフフォーラム .です。
Related Articles関連記事
- cPanel WHM Failed to Receive Status Information From Apache Error cpanel whmのステータス情報を受信するに失敗しましたからApacheのエラーが発生
- Apache Status (whm-server-status) in cPanel WebHost Manager Returns Blank Page Apacheのステータス( whm -サーバの状態)で空白のページcpanelウェブホスティングサービスマネージャを返します。
- Running apachectl status Returns lynx: not found Error実行中のapachectlのステータスを返します。 lynx :エラーが見つかりません
- Add Trailing Slash to the End of the URL with .htaccess Rewrite Rules末尾にスラッシュを追加されたURLの終わりにします。 htaccessのrewriteルール
- SEO Friendly Rewrite Method to Move Website URL From Subdirectory to Root Parent Folderソフレンドリー書き換えるメソッドのサブディレクトリに移動するウェブサイトのURLから親フォルダをルート
- winnt_accept: Asynchronous AcceptEx failed Error in Apache Log winnt_accept : Apacheログにエラーが発生非同期acceptexに失敗しました
- WordPress Permalinks Does Not Work in xampp Setup WordPress PermalinksはXAMPPのセットアップが機能しない
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 - Part 4 FreeBSDの6.0をインストールするWebサーバーのApache 2.2 、 MySQL 5.0以降およびPHP 5 -パート4
- Starting Apache HTTPD Failed Due to Cannot Open or No Such mod_bwlimited, mod_log_bytes or mod_bandwidth Files Apacheの起動に失敗しましたのhttpdのためにそのようなことはできません。 mod_bwlimited開いたり、ファイルmod_log_bytesまたはmod_bandwidth
- PHP 5 Unable to Open HTTP Request Stream with fopen or fsockopen Functions PHP 5へのストリームをHTTPリクエストを開くことができませんfopen関数またはにfsockopen

































December 28th, 2007 01:37 2007年12月28日01:37
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リンダ
December 28th, 2007 02:23 2007年12月28日02:23
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.お客様のサイトの構成は次のようにエラーが発生するウェブサーバーは、おそらく仮想ホストまたはリダイレクトエラーが発生します。