Plesk 12 - Webseiten werden nicht geladen

Floezen

New Member
Hallo,

im meiner Plesk 12 Testumgebung kann ich plötzlich nicht mehr auf die Webseiten zugreifen. Die Verbindung schlägt fehl.

Ich weiß aber aktuell gar nicht wo ich den Fehler suchen soll, denn Apache läuft, und die Firewall ist deaktiviert - aber der Port 80 ist scheinbar zu...

Code:
[root@me httpd]# nmap -sT -I -p 0-100 localhost

Starting Nmap 6.40 ( http://nmap.org ) at 2015-07-16 00:14 CEST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00074s latency).
Other addresses for localhost (not scanned): 127.0.0.1
rDNS record for 127.0.0.1: xxx.dyndns.org
Not shown: 97 closed ports
PORT   STATE SERVICE
21/tcp open  ftp
22/tcp open  ssh
25/tcp open  smtp
53/tcp open  domain

Apache scheint aber zu laufen
Code:
[[root@xxx httpd]# systemctl status httpd
httpd.service - The Apache HTTP Server
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled)
   Active: active (running) since Mi 2015-07-15 23:55:51 CEST; 27min ago
 Main PID: 13185 (/usr/sbin/httpd)
   Status: "Total requests: 0; Current requests/sec: 0; Current traffic:   0 B/sec"
   CGroup: /system.slice/httpd.service
           ├─13185 /usr/sbin/httpd -DFOREGROUND
           ├─13187 /usr/sbin/httpd -DFOREGROUND
           ├─13188 /usr/sbin/httpd -DFOREGROUND
           ├─13189 /usr/sbin/httpd -DFOREGROUND
           ├─13190 /usr/sbin/httpd -DFOREGROUND
           ├─13191 /usr/sbin/httpd -DFOREGROUND
           └─13192 /usr/sbin/httpd -DFOREGROUND

Jul 15 23:55:50 xxx.dyndns.org httpd[13185]: [Wed Jul 15 23:55:50.844512 2015] [so:warn] [pid 13185] AH01574: module actions_module is already loaded, skipping
Jul 15 23:55:50 xxx.dyndns.org httpd[13185]: [Wed Jul 15 23:55:50.849478 2015] [so:warn] [pid 13185] AH01574: module headers_module is already loaded, skipping
Jul 15 23:55:50 xxx.dyndns.org httpd[13185]: [Wed Jul 15 23:55:50.850071 2015] [so:warn] [pid 13185] AH01574: module logio_module is already loaded, skipping
Jul 15 23:55:50 xxx.dyndns.org httpd[13185]: [Wed Jul 15 23:55:50.852709 2015] [so:warn] [pid 13185] AH01574: module suexec_module is already loaded, skipping
Jul 15 23:55:51 xxx.dyndns.org systemd[1]: Started The Apache HTTP Server.
Jul 16 00:23:08 xxx.dyndns.org systemd[1]: Started The Apache HTTP Server.

In den Error-Logs finde ich auch nichts ungewöhnliches.

Wo könnte ich den Fehler finden??? (Plesk 12 + CentOS)

Danke,
Flözen
 
Ging es mit localhost bisher? Iptables Regeln? Ist das eine VM? Blockt der VM-Host etwas? Wie ist die Apache Konfiguration? SELinux?
 
Last edited by a moderator:
Ob die P80er Portabfrage mit localhost bisher funktioniert hat? Ich bin der Meinung ja....

iptables wurden in CentOS 7 durch die Firewall ersetzt:

Code:
# service iptables status
Redirecting to /bin/systemctl status  iptables.service
iptables.service
   Loaded: not-found (Reason: No such file or directory)
   Active: inactive (dead)

Und es ist ein lokaler Test-Root-Server.

SElinux ist deaktiviert.


Gibt es einen Weg sich die Apache-Konfiguration für eine Domain über die Konsole anzeigen zu lassen?
Ansonsten setzt sich das bei Plesk ja aus diversen config Dateien zusammen...

Grüße
FLözen
 
netstat war ein guter Tipp!

Code:
~]# netstat -npl |grep httpd
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp6       0      0 :::7080                 :::*                    LISTEN      13185/httpd         
tcp6       0      0 :::7081                 :::*                    LISTEN      13185/httpd

Da fragt man sich warum Apache auf so komischen Ports läuft und findet zum Glück dieses Dokument http://kb.odin.com/de/114249, in dem steht, dass seit dem Release von Plesk Version 11.0 nginx als Reverse-Proxyserver Apache vorgeschaltet werden kann.

Ich dachte zwar, ich hätte das nicht gemacht, aber scheinbar habe ich nur den tatsächlichen Einsatz für statische File nicht aktiviert.
Muss man wissen...

nginx lief jedenfalls aus irgendwelchen Gründen nicht.

Code:
service nginx start
hat geholfen.


Danke für die Unterstützung!
 
Back
Top