Request URL /server-status or 404 Page Not Found Apache Error Pedido URL / server-status ou 404 Página não encontrada Apache Error
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: No servidor web Apache, quando um administrador pretende verificar o status servidor Apache com o comando "apachectl estado" ou "serviço httpd fullstatus" no prompt shell, o seguinte erro pode ocorrer:
Not Found Não Encontrado
The requested URL /server-status was not found on this server. O URL solicitado / server-status não foi encontrado neste 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. Se você solicitar o estatuto de página web Apache por visualização http://domain_name/server-status ligação local, página 404 não encontrado um erro será retornado ao navegador.
There are several reasons why this problem can occurred. Há vários motivos para este problema pode ocorreu. First thing to check is to ensure that the mod_status status handler is properly setup and loaded in httpd.conf configuration file. Primeira coisa a verificar é a de assegurar que o estatuto mod_status manipulador está corretamente configurado e carregado no arquivo de configuração httpd.conf. Using APXS, the following 2 lines must exist: Usando APXS, as seguintes linhas devem existir 2:
LoadModule status_module /path/to/apache/modules/mod_status.so LoadModule status_module / caminho / para / 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. Se as linhas existentes, provavelmente o problema reside no host virtual declaração. 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 uma nota lateral, você também pode verificar se o estado é manipulador sido activado para mostrar mais informações (mas vai abrandar um servidor ocupado), por localizar a seguinte linha em httpd.conf (padrão para fora):
ExtendedStatus On Em ExtendedStatus
For virtual host for server-status, ensure that the following line exists in your Apache configuration file: Para virtual host para servidores de estatuto, assegurar que existe a seguinte linha em seu arquivo de configuração do Apache:
SetHandler server-status SetHandler server-status
Order allow,deny Ordem permitir, negar
Deny from all Negar a partir de todos os
Allow from localhost Permitir a partir 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. Você pode alterar o seu nome de domínio a localhost como. Example.com (incluindo dot na frente de domínio) para permitir o acesso de domínio endereço. Else localhost restrict access doesn’t allow public access to server-status, and only command shell access locally is possible. Else localhost restringir o acesso não permite o acesso do público aos servidores-estado, e só comando shell acesso localmente é possível.
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. Note também que se você usar NameVirtualHost *: 80 directiva, ou de qualquer *: porta directiva para executar várias nome baseado virtual hosts, essa configuração não permite servidor-estado em qualquer um dos endereços publicamente acessível. 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. A razão é que a primeira Virtual Host na directiva é considerada o "padrão Virtual Host", e qualquer desconhecido entradas sobre o espaço sempre NameVirtualHost usuário ou processo tenta acessar porta 80 em qualquer endereço IP, irá para este host virtual por omissão . Hence the 404 page not found error is returned. Daí a 404 página não encontrada erro é retornado. Furthermore the server-status configuration cannot be placed inside of a VirtualHost directive to be read from a full domain name. Além disso, o servidor de configuração estado não pode ser colocado dentro de uma directiva VirtualHost para ser lido a partir de um nome completo do domínio.
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. Não há solução 2s e soluções para este cenário, tanto por fazer o servidor escutar a uma porta alternativa (como o porto 8080), ou apenas internos ou locais que permitam o acesso.
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 mudar para outro porto, simplesmente adicionando "Listen 8080" para a configuração, e você pode acessar o status de servidor externo, utilizando http://domain:8080/server-status em qualquer navegador.
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 que apenas o acesso local para comandos tais como "apachectl estado" ou "serviço httpd fullstatus', basta alternar * para cada real a partir de endereço IP para o trabalho e, em seguida, acessando a partir de localhost (127.0.0.1) irá trabalhar.
For example, change from: Por exemplo, mudar a partir 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. Uma vez arquivo de configuração é modificado corretamente, reinicie o Apache HTTPD servidor.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Esta é uma página traduzida máquina que é fornecida "como está" sem garantia. Machine translation may be difficult to understand. A tradução automática pode ser difícil de compreender. Please refer to Por favor, consulte a original English article Inglês original article whenever possible. sempre que possível.
Share and contribute or get technical support and help at Compartilhe e contribuir ou obter suporte técnico e ajudar a My Digital Life Forums Minha vida digital Fóruns .
Related Articles Artigos relacionados
- cPanel WHM Failed to Receive Status Information From Apache Error cPanel WHM falhou estado a receber informações de erro Apache
- Apache Status (whm-server-status) in cPanel WebHost Manager Returns Blank Page Status Apache (whm-server-status), em cPanel WebHost Manager Retorna página em branco
- Running apachectl status Returns lynx: not found Error Correndo apachectl Retorna lince status: não encontrado Error
- Add Trailing Slash to the End of the URL with .htaccess Rewrite Rules Adicionar barra final para o final da URL com. Htaccess Regras de regravação
- SEO Friendly Rewrite Method to Move Website URL From Subdirectory to Root Parent Folder SEO friendly reescrever método para mover URL do site de subdiretório raiz pasta pai
- winnt_accept: Asynchronous AcceptEx failed Error in Apache Log winnt_accept: Asynchronous AcceptEx falhou Erro no Apache Log
- WordPress Permalinks Does Not Work in xampp Setup WordPress permalinks não funciona na configuração xampp
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 - Part 4 Instalando Web Server no FreeBSD 6,0 a 2,2 Apache, MySQL e 5,0 PHP 5 - Parte 4
- PHP 5 Unable to Open HTTP Request Stream with fopen or fsockopen Functions PHP 5 não foi possível abrir a solicitação HTTP Stream fopen ou fsockopen Funções
- Starting Apache HTTPD Failed Due to Cannot Open or No Such mod_bwlimited, mod_log_bytes or mod_bandwidth Files Iniciando o Apache HTTPD falhou devido a Não consigo abrir ou no Tais mod_bwlimited, mod_log_bytes ou mod_bandwidth Files
















December 28th, 2007 01:37 28 de dezembro de 2007 01:37
Hi, Oi,
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 você não mente-me pedir-lhe, mas eu tenho sido pesquisar no Google por alguma ajuda como eu estou totalmente furado - e então eu achei que você!
My website went down about 3 weeks ago and I cant get in touch wih the man who set my site up for me. Meu site caiu cerca de 3 semanas atrás, e eu consigo entrar em contato wih o homem que definir o meu site até para mim.
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. Estou a tentar que no meu site e seu apenas me dizendo que o certificado expirou, mas Eu não sei o que fazer.
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. Estou desesperado por ajuda, mas não sou muito bom em todos os computadores de forma dont compreender a "linguagem" e qualquer aconselhar teria de ser, em termos simples.
I would be very very grateful if you could point me in the right direction. Ficaria muito muito grato se pudessem me indicar o caminho certo.
Thanks hopefully, Graças esperamos,
Lynda
December 28th, 2007 02:23 28 de dezembro de 2007 02:23
You can still visit even though SSL certificate is expired. Você ainda pode visitar apesar de certificado SSL está vencido. Just accept the security warning. Basta aceitar o aviso de segurança. Looks like your site is having configuration error on web server, probably virtual hosts or redirection error. Parece que o seu site está com erro na configuração do servidor da web, provavelmente virtual hosts ou redirecionamento erro.