Apache php5 mysql

Konfiguracja serwerów, usług, itp.
F.E.O.S
Posty: 19
Rejestracja: 14 października 2007, 20:18
Lokalizacja: Kielce

Apache php5 mysql

Post autor: F.E.O.S »

witka mam taki problem zainstalowałem apache php5 mysql i statystyki awstats?

niby wszystko jest ok ale jak wchodzę do http://localhost pokazuję mi coś takiego

Kod: Zaznacz cały

Not Found

The requested URL / was not found on this server
a jak w chodzę do swojego profilu : http//localhost/~fesos pokazuje mi konfigurację php jaka wersja

dlaczego nie ma nic w localhost
Awatar użytkownika
qbsiu
Beginner
Posty: 491
Rejestracja: 19 marca 2007, 19:47
Lokalizacja: £DZ

Post autor: qbsiu »

Pokaż konfigurację.... /etc/apache2/sites-enabled/000-default
F.E.O.S
Posty: 19
Rejestracja: 14 października 2007, 20:18
Lokalizacja: Kielce

Post autor: F.E.O.S »

Kod: Zaznacz cały

NameVirtualHost *
<VirtualHost *>
	ServerAdmin [email][email protected][/email]
	
	DocumentRoot /var/www/
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /var/www/>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride None
		Order allow,deny
		allow from all
		# This directive allows us to have apache2's default start page
                # in /apache2-default/, but still have / go to the right place
                #RedirectMatch ^/$ /apache2-default/
	</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>

	ErrorLog /var/log/apache2/error.log

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog /var/log/apache2/access.log combined
	ServerSignature On

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>
<virtualhost *> 
ServerName localhost 
CustomLog /var/log/apache2/localhost.access.log 
combined DocumentRoot /var/www/
 </virtualhost>
do tego do instalowałem certyfikat SSL

Kod: Zaznacz cały

gedit /etc/apache2/sites-available/ssl 

Kod: Zaznacz cały

NameVirtualHost *:443
<VirtualHost *:443>
	ServerAdmin [email][email protected][/email]
        SSLEngine On
        SSLCertificateFile /etc/apache2/ssl/apache.pem
	
	DocumentRoot /var/www/
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /var/www/>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride None
		Order allow,deny
		allow from all
		# This directive allows us to have apache2's default start page
                # in /apache2-default/, but still have / go to the right place
                #RedirectMatch ^/$ /apache2-default/
	</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>

	ErrorLog /var/log/apache2/error.log

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog /var/log/apache2/access.log combined
	ServerSignature On

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>
apache nie uruchamia się

Kod: Zaznacz cały

sudo /etc/init.d/apache2 force-reload
 * Forcing reload of web server (apache2)...                                    apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
httpd (no pid file) not running
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:443
no listening sockets available, shutting down
Unable to open logs
                                                                         [fail]
chyl-o
Junior Member
Posty: 621
Rejestracja: 24 maja 2006, 21:06
Lokalizacja: Lublin

Post autor: chyl-o »

poubijaj działające procesy apache2 i dopiero restart. No i zrób coś z konfiguracją apache, a konkretnie z Vhostami.
ODPOWIEDZ