Trisquel 8(Ubuntuベース)を実行しているデスクトップマシンでApache Webサーバーを実行しています。ローカルネットワーク上の他のマシン/デバイスからサーバーにアクセスできるようにしたいのですが、方法がわかりません。
ApacheサーバーのローカルIPアドレスを使用して別のデバイスから接続しようとすると、ブラウザーに次のようなエラーメッセージが表示されます。Mac上のFirefoxでは、「接続できません。 Firefoxはlocalhostにあるサーバーへの接続を確立できません。 Android電話でDuckDuckGoブラウザを使用して接続しようとすると、「Webページが利用できません。 http:// localhost / のWebページをロードできませんでした理由:net :: ERR_CONNECTION_REFUSED '。
回答の1つは、どのポートが開いているかを確認するためにnmap
を使用することを提案し、次の結果を返しました。
$ nmap [LOCAL IP ADDRESS]
Starting Nmap 7.01 ( https://nmap.org ) at 2019-10-12 09:25 EDT
Nmap scan report for [LOCAL IP ADDRESS]
Host is up (0.00013s latency).
Not shown: 998 closed ports
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
Nmap done: 1 IP address (1 Host up) scanned in 0.09 seconds
したがって、ポート80がhttp用に開いていることがわかります。ローカルネットワーク上の別のマシンからpingを実行でき、nmapの出力が示すように、ssh用に別のポートが開いていることにも言及する価値があるでしょう。私はこのマシンに数か月間sshしてきましたが、それはうまくいきます。そのために、私はssh-serverをインストールしただけで、ほとんど問題なく動作しました。
では、sshが問題なく動作していることを考えると、(iptables/firewallではなく)Apache2の設定に問題があることを意味しますか?
Iptablesの内容:
$ Sudo iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:http ctstate NEW,ESTABLISHED
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Apache2.confの内容:
# 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 None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
# Require local
# Require ip 192.168.1
Require all granted
</Directory>
#<Directory /srv/>
# Options Indexes FollowSymLinks
# AllowOverride None
# Require all granted
#</Directory>
# 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">
Require all denied
</FilesMatch>
#
# The following directives define some format nicknames for use with
# a CustomLog directive.
#
# These deviate from the Common Log Format definitions in that they use %O
# (the actual bytes sent including headers) instead of %b (the size of the
# requested file), because the latter makes it impossible to detect partial
# requests.
#
# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.
# Use mod_remoteip instead.
#
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 README.Debian for details.
# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf
# Include the virtual Host configurations:
IncludeOptional sites-enabled/*.conf
# vim: syntax=Apache ts=4 sw=4 sts=4 sr noet
Wordpressのインスタンスを実行しようとしているため、AllowOverride All
の下に/var/www
が必要であり、Apacheサーバーに書き込みできる必要があります。
ローカルマシンのブラウザーから 'localhost'を使用してWebコンテンツにアクセスできるため、Apache2は確実に実行されています。また、systemctl status Apache2
は実行中であることを示しています。
~$ systemctl status Apache2
● Apache2.service - LSB: Apache2 web server
Loaded: loaded (/etc/init.d/Apache2; bad; vendor preset: enabled)
Drop-In: /lib/systemd/system/Apache2.service.d
└─Apache2-systemd.conf
Active: active (running) since Thu 2019-10-10 20:01:44 EDT; 5min ago
Docs: man:systemd-sysv-generator(8)
Process: 1562 ExecStart=/etc/init.d/Apache2 start (code=exited, status=0/SUCCESS)
CGroup: /system.slice/Apache2.service
├─1621 /usr/sbin/Apache2 -k start
├─1624 /usr/sbin/Apache2 -k start
├─1625 /usr/sbin/Apache2 -k start
├─1626 /usr/sbin/Apache2 -k start
├─1627 /usr/sbin/Apache2 -k start
├─1628 /usr/sbin/Apache2 -k start
└─2102 /usr/sbin/Apache2 -k start
Oct 10 20:01:42 lee-Desktop systemd[1]: Starting LSB: Apache2 web server...
Oct 10 20:01:42 lee-Desktop Apache2[1562]: * Starting Apache httpd web server Apache2
Oct 10 20:01:43 lee-Desktop Apache2[1562]: AH00558: Apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
Oct 10 20:01:44 lee-Desktop Apache2[1562]: *
Oct 10 20:01:44 lee-Desktop systemd[1]: Started LSB: Apache2 web server.
コメントで示唆されているように、netstat --inet -a | grep Apache2
を試しましたが、何も返されませんでした。 Apache2が実行されている場合、ポート80でリッスンしているため、これは異常なようです。netstat -plunt | grep :80
を実行して、次の出力を取得しました。
$ Sudo netstat -plunt | grep :80
tcp6 0 0 :::80 :::* LISTEN 1557/Apache2
これは、Apacheが聞いているが何も聞いていないということですか?
同様に要求されたvirtualhost構成に関しては、/etc/Apache2/sites-enabled/
の唯一のファイルは000-default.confであり、その内容は次のとおりです。
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual Host. For the default virtual Host (this file) this
# value is not decisive as it is used as a last resort Host regardless.
# However, you must set it for any further virtual Host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${Apache_LOG_DIR}/error.log
CustomLog ${Apache_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual Host. For example the
# following line enables the CGI configuration for this Host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=Apache ts=4 sw=4 sts=4 sr noet
tail -f /var/log/Apache2/*.log
の実行も試みましたが、リモートマシンから接続しようとしたときにログに何も出力されません。
それで、接続をブロックしているものをトラブルシューティングするにはどうすればよいですか?なぜ接続が拒否されたのか、そしてどのような理由で私を啓発する可能性のあるログがありますか?
ジェイコブの答えを参考にしてみましたが、残念ながら問題は解決しませんでした。他の提案やガイダンスは大歓迎です!
別のデバイスから接続しようとすると、ApacheサーバーのローカルIPアドレスを使用します
ip addr
またはifconfig
)コマンドの出力を投稿してください以下の理由ルーターとサーバーの構成に関する他の遠い可能性についてはPostscriptも参照してください。
ブラウザにApacheサーバーのローカルIPを入力しましたが、なんらかの理由で、接続を試みてエラーが発生した後、アドレスバーに
http://localhost/
が表示されました。
これは本当に臭いにおいがします、それはローカルIPアドレス接続に使用したものは非常に間違っていると言っています。
上記のローカルIPアドレスが127.0.0.1
または::1
によく似ている場合、アドレス自体が問題の根本的な原因である可能性があります。 「実際の」IPアドレスではない ...
IPv4アドレス127.0.0.1
または省略されたIPv6アドレス::1
手段このデバイス、およびホスト名localhost
は常にこのアドレスの同義語としてローカルに定義されます。
サーバー自体以外のデバイスからこのアドレスに接続しようとした場合、自体(サーバーマシンのポート80ではない)のポート80に接続するように指示しています。
他のデバイス自体でHTTPサーバーを実行しなかったため、接続試行は確実にTCP RST
失敗で終了します。つまり、「接続が拒否されました"ブラウザで発生したエラー。
救済策:他のマシンから接続する場合は、正しいLAN IPアドレスを使用する必要があります。確かにlocalhost
ではなく、127.0.0.1
ではなく、::1
ではありません...
コマンドifconfig
をrootとして実行サーバー上で、lo
という名前ではないブロックを探します。 IPアドレスはinet addr:
というフィールドになります。
eth
の後に番号が付いた名前になります(例:eth0
)。wlan
の後に番号が続きます(例:wlan0
)。RUNNING
ステータスも含まれます(LAN接続が有効で使用可能であることを示します)。ブラウザを起動してみてくださいサーバー上。次に、手順1で見つけたIPアドレスをアドレスバーに入力し、 Enter。
使用したIPアドレスが正しい場合は、次のような、この問題を引き起こす可能性のある他のそれほど明白ではない理由がある可能性があります。
ホームルーターは、 "仮想LAN"または ポート分離 —で構成できます。これにより、各LANポートと各ワイヤレスLANデバイスが独自の小さなネットワークに分離されます。各デバイスは制限されており、は相互に接続できません(インターネットに直接接続することのみが許可されています)。
ホームルーターに レイヤー3スイッチ 機能が組み込まれている可能性があり、アクセス制御リスト(つまりファイアウォール)を使用してrejectプライベートLAN IPアドレスへの「着信接続」を構成しますトラフィックの起源に関係なく。
したがって、デバイスがサーバーに接続しようとすると、ルーター(またはスイッチではなく)が代行受信し、代わりにTCP RST
で返信しました—結果として、「接続が拒否されました"エラー。
サーバー上にhttp://localhost/
へのHTTP 301/302リダイレクトを生成するものがある可能性があります。これは、入力した場合でも、アドレスバーに他のデバイスlocalhost
と表示される理由を説明する可能性があります実際のLAN IPアドレス。
つまり、最初のリクエストは大丈夫;しかし、サーバーまたはサーバー側のスクリプトでいくつかの誤設定/誤解が発生したため、クライアントはhttp://localhost/
にリダイレクトされました。これは、回答のメインセクションにすでに記載されている理由により、アドレスが正しくありません...
最終結果は、2番目のリクエストで「接続が拒否されました」エラーであり、アドレスバーにhttp://localhost/
が含まれています。
ブラウザでこれをデバッグしない、HTTP 301リダイレクトがキャッシュされるため。 GNU wget
または同様のツールを使用して他のデバイスからのリクエストを発行し、その出力を注意深く確認します。リダイレクトステータスが "接続が拒否されました"エラー—これはネットワークの問題ではなく、サーバーの問題です。
このような場合は、サーバーがリダイレクトを生成する原因を見つけて修正する必要があります。
このWebルートを別の場所から取得した場合、クライアントが非正規のホスト名を使用してアクセスしたことが検出されたときにリダイレクトを生成する構成が含まれている可能性があります。 (これは非常に一般的です。たとえば、www.stackexchange.comにアクセスすると、stackexchange.comへのHTTP 301リダイレクトが生成されます。 )
Webアプリケーションが正規のホスト名を単にlocalhost
であると認識した場合、それは誤ってhttp://localhost/
への問題のあるリダイレクトを生成します。
この場合、特に.htaccess
とアプリケーションの構成を確認してください。次に、上記のリダイレクトを無効にします。
まず、httpdがSudo systemctl httpd status
で実行されていることを確認します。誤って重複ルールを追加する前に、iptables -L
を使用してiptablesルールを確認しましょう
すべての着信httpを確実に受け入れるために、テーブルにACCEPTを追加しましょう
Sudo iptables -A INPUT -p tcp --dport 80 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
これで問題が解決しない場合は、/etc/Apache2/Apache2.conf
にあるApacheの設定を確認してください。 confファイルの下部に基本的なセキュリティモデルが必要です。たとえば、これは私のものです
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
Ports.confで、すべてのデバイスのポート80をリッスンしていることを確認してください(今のところ、セットアップが完了するまで)Listen *:80
これらのどれもが問題を引き起こしていない場合は、Apache2も実行されていることを確認してください
ApacheサーバーのローカルIPアドレスを使用して別のデバイスから接続しようとすると、ブラウザーに次のようなエラーメッセージが表示されます。Mac上のFirefoxでは、「接続できません。 Firefoxはlocalhost。でサーバーへの接続を確立できません。 Android電話でDuckDuckGoブラウザを使用して接続しようとすると、「Webページが利用できません。http://localhost/ net :: ERR_CONNECTION_REFUSED 'のため、ロードできませんでした。
他のマシンからのホスト名としてlocalhostを使用すると、それらは自身に接続しようとします...他のマシンでは、実際のアドレスを使用する必要がありますサーバーの。そう
ip address show
これにより、すべてのネットインターフェイスとアドレスが一覧表示されます(inet
のような行:inet 192.168.0.44/24 brd 192.168.0.255 scope global dynamic enp0s31f6
)。 lo
インターフェース(アドレス127.0.0.1にあるインターフェース)を無視し、enp*
またはwlp*
を使用します。これらのアドレスは192.168...
で始まる可能性がありますinet
行のアドレスを使用: http://192.168.0.44/アドレスを直接使用すると、次の2つの不都合があります。
Macでは、サーバー名とアドレスを/etc/hosts
ファイル(またはOSXで同等のもの)に追加することで、問題#2を修正できる可能性があります。これはAndroidでは実行できない場合があります。
#1の場合、非常に運が良ければ、すべてのデバイスがNETBIOS名前解決をサポートし、NETBIOS名(通常はホスト名)を使用できます。
問題が何であったかを明確にするために、自分の答えを投稿します:
Macのターミナルからcurl --verbose [local-IP]
を使用しましたが、出力からApacheサーバーに到達していることは明らかでしたが、Wordpressがhttp://localhost/
にリダイレクトしていました。 Wordpress設定を確認したところ、http://localhost/
が「サイトアドレス」として設定されていました。これをhttp://[local-IP]
に変更すると、正常に機能します。役立つ提案をした人!
(この話の教訓は、次回のデバッグにコマンドラインツールを使用することだと思います...)
同じ問題に一度遭遇しました。仮想マシンを使用してローカルWebサーバーをセットアップしていると思います。これがあなたがやっていることであるならば、あなたのウェブサーバーのファイアウォール構成をチェックしてください。
同じマシンからApacheサーバーにアクセスでき、リモートマシンから同じサーバーにアクセスしているときにエラーが発生する場合は、WebサーバーでファイアウォールでApacheを許可を使用してください。
下記のコマンドを実行します(CentOS-7で動作しました)
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
引き続き同じ問題が発生しているかどうかをお知らせください。