ubuntu natty, installato gnome 3, problema apache2
Inviato: martedì 4 ottobre 2011, 15:43
ho installato come da titolo gnome 3 tutto bene solo che prima dell'avvio mi da una schermata nera con il seguente errore
could not reliably determine the server's fully qualified domain name using :: 1 for servername
ho provato a cercare e modificare ma niente...questi sono i file che penso siano incasinati:
could not reliably determine the server's fully qualified domain name using :: 1 for servername
Codice: Seleziona tutto
osiride@asus:~$ sudo /etc/init.d/apache2 restart
[sudo] password for osiride:
* Restarting web server apache2 apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
... waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[ OK ]
osiride@asus:~$ ^C
osiride@asus:~$
Codice: Seleziona tutto
GNU nano 2.2.6 File: /etc/hosts
192.168.1.79 asus # Added by NetworkManager
127.0.0.1 localhost localdomain localhost
::1 asus localhost6 localdomain6 localhost6
127.0.1.1 asus
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhostsCodice: Seleziona tutto
cat /etc/apache2/sites-available/default
<VirtualHost *:80>
ServerName osiride
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>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
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>