Request URL /server-status or 404 Page Not Found Apache Error Solicitud URL / server-estado o 404 Page Not Found Error 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: En el servidor web Apache, cuando un administrador desea comprobar el estado del servidor Apache con el comando "apachectl" o "servicio httpd fullstatus" al intérprete de comandos, el siguiente error puede ocurrir:
Not Found No se ha encontrado
The requested URL /server-status was not found on this server. La URL solicitada / server-status no se ha encontrado en este servidor.
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. Si usted solicita el estatuto de Apache página web: http://domain_name/server-status de ubicación del enlace, un 404 no se encuentra la página de error será devuelto por el navegador web.
There are several reasons why this problem can occurred. Hay varias razones por las que este problema puede ocurrido. First thing to check is to ensure that the mod_status status handler is properly setup and loaded in httpd.conf configuration file. Primero que tiene que comprobar es asegurar que el estado mod_status manejador correcta configuración y cargado en httpd.conf fichero de configuración. Using APXS, the following 2 lines must exist: El uso de apxs, los siguientes 2 líneas debe existir:
LoadModule status_module /path/to/apache/modules/mod_status.so LoadModule status_module / ruta / al / apache / modules / mod_status.so
AddModule mod_status.c AddModule mod_status.c
If the lines exist, the problem probably lies on virtual host declaration. Si las líneas existentes, el problema probablemente se encuentra en host virtual declaración. 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): Como nota lateral, también puede comprobar si la situación es manejador sido activado para mostrar más información (pero se ralentizará un servidor ocupado) de la localización de la línea siguiente en httpd.conf (por defecto a off):
ExtendedStatus On El ExtendedStatus
For virtual host for server-status, ensure that the following line exists in your Apache configuration file: Por host virtual para el servidor, asegurarse de que la siguiente línea existe en su archivo de configuración de Apache:
SetHandler server-status SetHandler server-estado
Order allow,deny Orden allow, deny
Deny from all Denegar de todos
Allow from localhost Dejar de 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. Puede cambiar el localhost a tu nombre de dominio como. Example.com (incluyendo punto delante de dominio) para permitir el acceso de dominio de la dirección. Else localhost restrict access doesn’t allow public access to server-status, and only command shell access locally is possible. Otras localhost restringir el acceso no permite el acceso del público a la condición de servidor, y sólo el shell de comandos de acceso a nivel local es posible.
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. Tenga en cuenta que también si se utiliza NameVirtualHost *: 80 directiva, o cualquier *: puerto directiva de ejecutar múltiples virtuales basados en nombre de hosts, esta configuración no permite la condición de servidor en cualquiera de las direcciones de acceso público. 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. La razón es que el primer host virtual en la directiva se considera el "Default Virtual Host", y cualquier desconocido entradas en el espacio cuando NameVirtualHost usuario o proceso intenta acceder a puerto 80 en cualquier dirección IP, se destinarán a este host virtual por defecto . Hence the 404 page not found error is returned. De ahí que el 404 no se encuentra la página de error se devuelve. Furthermore the server-status configuration cannot be placed inside of a VirtualHost directive to be read from a full domain name. Por otra parte, el estado del servidor de configuración no puede ser colocado dentro de una directiva VirtualHost para ser leído de un nombre de dominio completo.
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. Hay 2s solución y métodos para este escenario, ya sea haciendo que el servidor escucha en un puerto alternativo (como el puerto 8080), o permitir sólo interna o de acceso local.
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. Para cambiar a otro puerto, simplemente añadiendo "Escuche 8080" para la configuración, y se puede acceder a la condición de servidor externo utilizando http://domain:8080/server-status en cualquier navegador web.
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. Para permitir sólo el acceso local para los comandos como 'apachectl estado' o 'servicio httpd fullstatus', simplemente cambie cada * a la dirección IP real al trabajo, luego de acceder a localhost (127.0.0.1).
For example, change from: Por ejemplo, cambiar de:
NameVirtualHost *:80 NameVirtualHost *: 80
to para
NameVirtualHost 10.0.0.3:80 NameVirtualHost 10.0.0.3:80
Once configuration file is modified correctly, restart Apache HTTPD server. Una vez que el archivo de configuración se ha modificado correctamente, reiniciar el servidor Apache httpd.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Se trata de una máquina que traduzca la página se proporciona "tal cual" sin garantía. Machine translation may be difficult to understand. La traducción automática puede resultar difícil de entender. Please refer to Por favor, consulte original English article artículo original Inglés whenever possible. siempre que sea posible.
Share and contribute or get technical support and help at Compartir y contribuir o recibir apoyo técnico y ayudar a My Digital Life Forums Mi vida digital Foros .
Related Articles Artículos relacionados
- cPanel WHM Failed to Receive Status Information From Apache Error cPanel WHM No se ha podido recibir la información de estado de error de Apache
- Apache Status (whm-server-status) in cPanel WebHost Manager Returns Blank Page Condición Apache (servidor-WHM-estado) en cPanel WebHost Manager Devoluciones página en blanco
- Running apachectl status Returns lynx: not found Error Atletismo apachectl estado lince Devoluciones: No se encuentra el error
- Add Trailing Slash to the End of the URL with .htaccess Rewrite Rules Añadir barra diagonal al final de la URL. Htaccess Reglas de reescritura
- SEO Friendly Rewrite Method to Move Website URL From Subdirectory to Root Parent Folder SEO Friendly reescribir método para mover la URL del sitio web de subdirectorio a raíz carpeta
- winnt_accept: Asynchronous AcceptEx failed Error in Apache Log winnt_accept: asíncrona AcceptEx no Error en registro de Apache
- WordPress Permalinks Does Not Work in xampp Setup WordPress permalinks no funciona en configuración de XAMPP
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 - Part 4 Instalación de Web Server en FreeBSD 6,0 con Apache 2,2, 5,0 MySQL y PHP 5 - Parte 4
- Starting Apache HTTPD Failed Due to Cannot Open or No Such mod_bwlimited, mod_log_bytes or mod_bandwidth Files A partir de Apache httpd Debido a Error No se puede abrir o No Such mod_bwlimited, mod_log_bytes o mod_bandwidth Archivos
- PHP 5 Unable to Open HTTP Request Stream with fopen or fsockopen Functions PHP 5 No se puede abrir la solicitud HTTP Stream con fopen o fsockopen Funciones

































December 28th, 2007 01:37 28 de diciembre de 2007 01:37
Hi, Hola,
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 !! Espero que usted no me cuenta que le pregunta, pero he estado buscando en Google para ayudar a algunos como yo estoy totalmente atascado - y luego le he encontrado!
My website went down about 3 weeks ago and I cant get in touch wih the man who set my site up for me. Mi página web bajó alrededor de 3 semanas y me cant ponerse en contacto wih el hombre que mi sitio para mí.
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. Estoy tratando de llegar a mi sitio y su justa me decían que el certificado ha caducado, pero yo dont saber qué hacer.
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. Estoy desesperada en busca de ayuda pero no soy demasiado bueno en los ordenadores a fin de comprender todos los dont la «jerga» y asesorar a cualquier tendría que ser en términos sencillos.
I would be very very grateful if you could point me in the right direction. Quiero ser muy muy agradecido si me puede señalar en la dirección correcta.
Thanks hopefully, Gracias de esperar,
Lynda
December 28th, 2007 02:23 28 de diciembre de 2007 02:23
You can still visit even though SSL certificate is expired. Todavía puede visitar, aunque SSL certificado ha caducado. Just accept the security warning. Simplemente aceptar la advertencia de seguridad. Looks like your site is having configuration error on web server, probably virtual hosts or redirection error. Parece que su sitio está teniendo error en la configuración del servidor web, probablemente hosts virtuales o la reorientación de error.