O Apache Server não pode ser acessado no Ubuntu VM

3

Eu sou novo no linux / ubuntu, mas eu quero configurar um servidor web apache em uma VM ubuntu. Eu criei uma VM na amazon AWS, instalei o apache. Mas agora não consigo alcançá-lo via navegador. Não tenho certeza se o servidor apache está sendo executado corretamente ou se alguma porta está bloqueada.

Eu verifiquei a versão do apache. Parece ser instalado com "apache -version" e mostra-me uma versão válida e data de instalação.

Eu verifico as portas abertas. Parece que o apache está escutando em algumas portas (3609, 3614, 3615), mas não na porta 80? Que poderia ser o problema? Como pode ser corrigido?

Editar 1: Acutally eu queria adicionar alguns sceenshots, mas eu não posso fazer isso com menos de dez.

Editar 2:

  • "sudo /etc/init.d/apache2 status" informa que está sendo executado
  • O error.log também parece bom. Diz apenas: "Apache / 2.2.22 (Ubuntu) configurado - retomando as operações normais

Editar 3: Localhost é acessível a partir do servidor. Então, parece ser um problema de firewall / conexão. Mas o estranho é: eu posso pingar a porta 80 no servidor ip via telnet de fora.

Editar 4: Posso acessar meu servidor da Web de outra VM da Amazon! Então, o que isso significa: isso é um problema com os grupos de segurança da amazônia? Eu abordo muitas portas no meu grupo de segurança para fins de teste:

Oapache2.conféassim:

##TheacceptserializationlockfileMUSTBESTOREDONALOCALDISK.#LockFile${APACHE_LOCK_DIR}/accept.lock##PidFile:Thefileinwhichtheservershouldrecorditsprocess#identificationnumberwhenitstarts.#Thisneedstobesetin/etc/apache2/envvars#PidFile${APACHE_PID_FILE}##Timeout:Thenumberofsecondsbeforereceivesandsendstimeout.#Timeout300##KeepAlive:Whetherornottoallowpersistentconnections(morethan#onerequestperconnection).Setto"Off" to deactivate.
#
KeepAlive On

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 5

##
## Server-Pool Size Regulation (MPM specific)
## 

# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_prefork_module>
    StartServers          5
    MinSpareServers       5
    MaxSpareServers      10
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>

# worker MPM
# StartServers: initial number of server processes to start
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadLimit: ThreadsPerChild can be changed to this maximum value during a
#              graceful restart. ThreadLimit can only be changed by stopping
#              and starting Apache.
# ThreadsPerChild: constant number of worker threads in each server process
# MaxClients: maximum number of simultaneous client connections
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_worker_module>
    StartServers          2
    MinSpareThreads      25
    MaxSpareThreads      75
    ThreadLimit          64
    ThreadsPerChild      25
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>

# event MPM
# StartServers: initial number of server processes to start
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxClients: maximum number of simultaneous client connections
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_event_module>
    StartServers          2
    MinSpareThreads      25
    MaxSpareThreads      75
 ThreadLimit          64
    ThreadsPerChild      25
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>

# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#

AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being 
# viewed by Web clients. 
#
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy all
</Files>

#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
# It is also possible to omit any default MIME type and let the
# client's browser guess an appropriate action instead. Typically the
# browser will decide based on the file's extension then. In cases
# where no good assumption can be made, letting the default MIME type
# unset is suggested  instead of forcing the browser to accept
# incorrect  metadata.
#
DefaultType None


#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog ${APACHE_LOG_DIR}/error.log

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

# Include module configuration:
Include mods-enabled/*.load
Include mods-enabled/*.conf

# Include list of ports to listen on and which to use for name based vhosts
Include ports.conf
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
# If you are behind a reverse proxy, you might want to change %h into %{X-Forwarded-For}i
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include of directories ignores editors' and dpkg's backup files,
# see the comments above for details.

# Include generic snippets of statements
Include conf.d/

# Include the virtual host configurations:
Include sites-enabled/

O ports.conf se parece com isto:

NameVirtualHost *:80
Listen 80

<IfModule mod_ssl.c>
    # If you add NameVirtualHost *:443 here, you will also have to change
    # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
    # to <VirtualHost *:443>
    # Server Name Indication for SSL named virtual hosts is currently not
    # supported by MSIE on Windows XP.
    Listen 443
</IfModule>

<IfModule mod_gnutls.c>
    Listen 443
</IfModule>

Editar 5:

Se eu tentar acessar o servidor da web, recebo a mensagem: "Website não disponível:"

Editar6:

"etc / apache2 / sites-available / default" é assim:

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
            AllowOverride None
            Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>

Editar 7:

Na verdade eu não consigo pingar meu host, apenas telnet na porta 80 funciona.

Editar 8:

resultados locais do telnet "localhost 80" e "netstat -l":

"telnet":

"netstat -l":    

Editar9:

Porqueparecequeowebserverestáescutandonoip6ip,eumudeimeu"ports.conf" e adicionei a entrada "Listen YOUR_AWS_IP: 80" como "Christoph Eicke" sugerido. Agora o servidor web parece ouvir no endereço ip4. Mas ainda não consigo acessar o servidor.

    
por jan 12.08.2013 / 15:32

4 respostas

3

No comando netstat -l , não vejo nada escutando na porta 80 para o IPv4. Você, no entanto, o servidor da Web escuta na interface IPv6.

Faz sentido que, localmente, você possa se conectar a ele, porque suas ferramentas provavelmente já falam IPv6 e o host local resolve um IP IPv6 válido através de /etc/hosts . Mas a sua rede provavelmente ainda não fala IPv6.

    
por 13.08.2013 / 17:41
2

Não é 100% óbvio da sua pergunta, então posso perguntar se você iniciou o Apache depois de instalá-lo? "sudo /etc/init.d/apache2 status" informará se realmente está sendo executado ou não.

O próximo lugar que eu verificaria seria o arquivo de log do Apache, que você encontrará em / var / log / apache2 /.

Editar : Já que ambos são check-out, você consegue ver o Apache localmente no servidor? Execute um navegador da Web no servidor, aponte-o para http://localhost e veja o que acontece.

Editar 2 : Se o Apache estiver em execução e não houver regras de firewall, é hora de examinar a própria configuração do Apache para obter diretivas que permitiriam conexões locais, mas não remotas. Os arquivos de configuração variados devem estar em / etc / apache2; procure linhas como "negar de todos" ou "permitir de < intervalo de endereços >".

    
por 12.08.2013 / 15:37
2

Provavelmente você tem um conjunto padrão de grupos de segurança, bem como uma instância do EC2, mas lembre-se de que é possível criar vários grupos de segurança e várias instâncias do EC2, portanto:

Você tem que considerar o Security Group para a instância do EC2.

Acesse o site da AWS - > EC2 - > Instâncias - > selecione sua instância - > Botão Ações - > Rede / Alterar grupos de segurança - > aqui você pode, na maioria dos casos, apenas marcar 'default' e salvar.

    
por 04.07.2014 / 20:56
0

Eu estava com dificuldades para me conectar à porta 8080. Instalei o Apache2 sudo apt-get instala o Apache2

e foi capaz de escutar na porta 8080. Parece que, por padrão, o Apache2 não está instalado no EC2.

    
por 04.06.2017 / 18:10