LINUX.ORG.RU
ФорумAdmin

Apache перестал отдавать контент определеным сетевым интерфейсам

 , ,


0

1

Всем Привет! Особенно Умным.

на сервере расположено несколько virtual хостов. на сервере есть два интерфейса и IP адреса контент отдаеться с любого из них

а настройках webserver сонфигах стоит отдавать контент любому IP

<VirtualHost *:80>

после добавление 3 третьего дополнительного интерфейса и IP

auto eth0:3
iface eth0:3 inet static
address 2.2.2.2 (пример)
netmask 255.255.255.0

c третьего интерфейса IP перестал отдаваться контент

но если вписать айпи в веб сервер тогда отдает контент

<VirtualHost 2.2.2.2:80>

произошло это все после того как добавляли новый интерфейс и допустили ошибку в добавлении интерфейса:

когда добавляли сразу допустили ощибку

auto eth0:2
iface eth0:2 inet static
address 1.1.1.1
netmask 255.255.255.0

auto eth0:3
iface eth0:2 inet static
address 2.2.2.2
netmask 255.255.255.0 

тоесть в eth0:3 указали

[iface eth0:2 inet static]

после чего исправили все.

но контент так и не отдает по 2.2.2.2 а с 1.1.1.1 отдает.

а если вписать в веб сервере

<VirtualHost 2.2.2.2:80>

тогда отдает.

Полтергейст помогите разобраться.

почему с параметрами веб конфига

<VirtualHost *:80>

по обращению с 1.1.1.1 контент отдает. А с 2.2.2.2 не отдает =(

Всем Спасибо.


Что подразумевается под не отдачей контента. Вобще отсутствие tcp-соединения или ошибка от apach'а?

Смотрите вывод ″ ss -t -n -l -p | grep 80″ при ″<VirtualHost *:80>″. Если там *:80, значит проблема в чём-то другом.

P.S. Это у вас не интерфейсы, а алиасы.

mky ★★★★★
()
Ответ на: комментарий от mky

в ДНС запрос к сайту идет:

к примеру sites.com ip 2.2.2.2

контент apache не отдает страница не отрывается. также логи пустые.

если в DNS А-Записи указать 1.1.1.1 тогда контент отдает сайт успешно открывается.

но если в настройках виртуал хоста указать

  <VirtualHost 2.2.2.2:80>

тогда отдает в этом и есть не понятка.

может ли когда я попутал интерфейсы в системе ubuntu где осталось информация о напутаных интерфейсах ?

shrmvl
() автор топика
Ответ на: комментарий от mky

ss -t -n -l -p | grep 80
LISTEN     0      128                      :::80                      :::*      users:(("apache2",18614,4),("apa                 che2",6173,4),("apache2",6167,4),("apache2",6163,4),("apache2",6158,4),("apache2",6151,4),("apache2",6140,4),("a                 pache2",6137,4),("apache2",5856,4),("apache2",5838,4),("apache2",5837,4))

shrmvl
() автор топика
Ответ на: комментарий от shrmvl

Ты просто копируешь что тебе пишут? А подумать? Зачем ты грепаешь кусок конфига apache в выводе ss? Его там не будет.

BOOBLIK ★★★★
()
Ответ на: комментарий от BOOBLIK

Друг я только учусь! вот и задаю вопрос в поисках помощи.

вся ситуация такая есть 3 IP на сервере.

eth0     ip 0.0.0.0
eth0:2   ip 1.1.1.1
eth0:3   ip 2.2.2.2

если к сайту по А-записи обращаться c айпи eth0 eth:3 с настройками вебсервера

<VirtualHost *:80>
eth0     ip 0.0.0.0
или
eth0:2   ip 1.1.1.1

то сайты Apache отдает все работает.

а если обратиться IP

eth0:3   ip 2.2.2.2

Тогда не работает.

а если вписать в конфиг <VirtualHost 2.2.2.2:80> тогда работает вот и не понятно почему двум айпи отдает а третьему нет

shrmvl
() автор топика
Ответ на: комментарий от shrmvl

вся ситуация такая есть 3 IP на сервере.
eth0 ip 0.0.0.0

Вот реально так? Никаких больше бриджей на нем?

eth0:2 ip 1.1.1.1
eth0:3 ip 2.2.2.2

Это ip алиасы а не интерфейсы отдельные, просто так, что бы не путали терминологию.

Конфиги апача покажем?

anc ★★★★★
()
Ответ на: комментарий от anc
ServerName localhost


# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.4/ for detailed information about
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific
# hints.
#
#
# Summary of how the Apache 2 configuration works in Debian:
# The Apache 2 web server configuration in Debian is quite different to
# upstream's suggested way to configure the web server. This is because Debian's
# default Apache2 installation attempts to make adding and removing modules,
# virtual hosts, and extra configuration directives as flexible as possible, in
# order to make automating the changes and administering the server as easy as
# possible.

# It is split into several files forming the configuration hierarchy outlined
# below, all located in the /etc/apache2/ directory:
#
#       /etc/apache2/
#       |-- apache2.conf
#       |       `--  ports.conf
#       |-- mods-enabled
#       |       |-- *.load
#       |       `-- *.conf
#       |-- conf-enabled
#       |       `-- *.conf
#       `-- sites-enabled
#               `-- *.conf
#
#
# * apache2.conf is the main configuration file (this file). It puts the pieces
#   together by including all remaining configuration files when starting up the
#   web server.
#
# * ports.conf is always included from the main configuration file. It is
#   supposed to determine listening ports for incoming connections which can be
#   customized anytime.
#
# * Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/
#   directories contain particular configuration snippets which manage modules,
#   global configuration fragments, or virtual host configurations,
#   respectively.
#
#   They are activated by symlinking available configuration files from their
#   respective *-available/ counterparts. These should be managed by using our
#   helpers a2enmod/a2dismod, a2ensite/a2dissite and a2enconf/a2disconf. See
#   their respective man pages for detailed information.
#
# * The binary is called apache2. Due to the use of environment variables, in
#   the default configuration, apache2 needs to be started/stopped with
#   /etc/init.d/apache2 or apache2ctl. Calling /usr/bin/apache2 directly will not
#   work with the default configuration.


# Global configuration
#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the Mutex documentation (available
# at <URL:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
#ServerRoot "/etc/apache2"

#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
Mutex file:${APACHE_LOCK_DIR} default

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "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


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


#
# 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 severity of messages logged to the error_log.
# Available values: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the log level for particular modules, e.g.
# "LogLevel info ssl:warn"
#
LogLevel warn

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

# Include list of ports to listen on
Include ports.conf


# Sets the default security model of the Apache2 HTTPD server. It does
# not allow access to the root filesystem outside of /usr/share and /var/www.
# The former is used by web applications packaged in Debian,
# the latter may be used for local directories served by the web server. If
# your system is serving content from a sub-directory in /srv you must allow
# access here, or in any related virtual host.
<Directory />
        Options FollowSymLinks
        AllowOverride All
        Require all denied
</Directory>

<Directory /usr/share>
        AllowOverride All
        Require all granted
</Directory>

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>

#<Directory /srv/>
#       Options Indexes FollowSymLinks
#       AllowOverride All
#       Require all granted
#</Directory>


<IfModule mime_module>
TypesConfig /etc/apache2/mime.types

AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddHandler application/x-httpd-php .php .htm .html .phtml
AddType application/x-httpd-php .php .php3 .php4 .php5 .html .htm .phtml .shtml

</IfModule>



# 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.
#
<FilesMatch "^\.ht">


shrmvl
() автор топика
Ответ на: комментарий от shrmvl

удивительно одно! что не работает именно с 1 айпи со всех остальных работает!, вот еше один прикрутил айпи и все работает.

именно с 1 айпи. может где-то в фаерволе

shrmvl
() автор топика
Ответ на: комментарий от shrmvl

все началось с того что когда добавляли новый алиас перепутали

auto eth0:2
iface eth0:2 inet static
address 1.1.1.1
netmask 255.255.255.0

auto eth0:3
iface eth0:2 inet static
address 2.2.2.2
netmask 255.255.255.0 

ошибка была в

auto eth0:3 iface eth0:2 inet static

но потом все исправили. где его система могла запомнить эту ошибку не ясно. Логи apache молчат. с этого айпи вообще не отдается контент. а если вписать сам айпи в конфиге веб сервера

<VirtualHost 2.2.2.2:80> тогда работает

shrmvl
() автор топика
Ответ на: комментарий от anc


<VirtualHost *:80>

ServerName site.com
DocumentRoot /var/www/site.com

ServerAlias site.com
ServerAlias www.site.com

ErrorLog /var/www/site.com/logs/error.log
LogLevel warn
CustomLog /var/www/site.com/logs/access.log common

<Directory />
    DirectoryIndex index.php
    Options +FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>
</VirtualHost>
shrmvl
() автор топика
Ответ на: комментарий от anc

такой точно! точно путь к сайтам другой.! дело не в виратул хостах.

Этот же Хост работает также.

на сервере 3 айпи.

если в A-зависит указать айпи 0.0.0.0 или 1.1.1.1 работает

если спрашивать сайт по айпи 2.2.2.2 тогда не работает.

но если укзать <VirtualHost 2.2.2.2:80>

Тогда работает. Глюк не понятный.

Спасибо!. будем закрывать тему.

скорей всего когда напутал алисы когда добалял где-то в системе остался этот айпи и Apache не случает если через * только принудительно VirtualHost 2.2.2.2:80

shrmvl
() автор топика
Ответ на: комментарий от deep-purple

100 раз делал,! тупо вот айпи 2.2.2.2 неработает!. решений другое купил еше дополнительный айпи подвязал к сервере а он работает ) Чудеса. а тот так и не работает.

shrmvl
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.