Pages : 1
#1 Le 20/03/2008, à 20:20
- fuentes
http://localhost/ 404 Not Found
Bonjour,
J'ai suivis un tutoriel de ce forum afin d'installer apache2, tout c'est bien passer. Or quand j'essaie d'acceder à http://localhost/ firefox me retourne cette erreur :
Not Found
The requested URL / was not found on this server.
Apache/2.2.4 (Ubuntu) Server at localhost Port 80
Quelqu'un aurait-il une solution?
________________________
La ligne "ServerName localhost" figure bien dans mon fichier /etc/apache2/apache2.conf
Le contenu du dossier /var/www
ls -l /var/www/*
/var/www/apache2-default:
total 24
-rw-r--r-- 1 root root 2205 2005-12-14 17:25 apache_pb22_ani.gif
-rw-r--r-- 1 root root 2410 2005-12-14 17:25 apache_pb22.gif
-rw-r--r-- 1 root root 1502 2005-12-14 17:25 apache_pb22.png
-rw-r--r-- 1 root root 2326 2004-11-20 21:16 apache_pb.gif
-rw-r--r-- 1 root root 1385 2004-11-20 21:16 apache_pb.png
-rw-r--r-- 1 root root 44 2004-11-20 21:16 index.html
/var/www/Site:
total 36
-rw-r--r-- 1 root root 2582 2008-03-20 19:08 cinema.html
drwxr-xr-x 2 root root 4096 2008-03-20 19:08 Image
-rw-r--r-- 1 root root 699 2008-03-20 19:08 index.php
-rw-r--r-- 1 root root 3119 2008-03-20 19:08 projet.html
-rw-r--r-- 1 root root 7161 2008-03-20 19:08 rechercher.html
-rw-r--r-- 1 root root 1909 2008-03-20 19:08 style.css
-rw-r--r-- 1 root root 774 2008-03-20 19:08 test.html
-rw-r--r-- 1 root root 936 2008-03-20 19:08 test.php
-rw-r--r-- 1 root root 0 2008-03-20 19:08 verification.js
http://localhost/index.html et http://localhost/Site me renvoient la meme erreur.
Merci par avance.
#2 Le 20/03/2008, à 20:51
- best_friend_fr
Re : http://localhost/ 404 Not Found
Salut
ls -l /var
Quel est le dossier vers lequel pointe apache (tu as ca dans /etc/apache2/sites-enabled)
sudo apt-get replace langage_sms by grammaire orthographe ponctuation
La documentation est avant tout faite pour ceux qui posent les questions, et non ceux qui y répondent
Best_friend_fr
Hors ligne
#3 Le 20/03/2008, à 21:09
- fuentes
Re : http://localhost/ 404 Not Found
ls -l /var
drwxr-xr-x 2 root root 4096 2008-03-16 12:50 backups
drwxr-xr-x 16 root root 4096 2008-03-06 19:05 cache
drwxrwxrwt 2 root root 4096 2008-03-16 12:50 crash
drwxr-xr-x 2 root root 4096 2007-11-06 19:04 games
drwxr-xr-x 51 root root 4096 2008-03-20 17:19 lib
drwxrwsr-x 2 root staff 4096 2007-10-08 12:47 local
drwxrwxrwt 3 root root 60 2008-03-20 16:20 lock
drwxr-xr-x 14 root root 4096 2008-03-20 16:25 log
drwxrwsr-x 2 root mail 4096 2007-10-17 00:04 mail
drwxr-xr-x 2 root root 4096 2007-10-17 00:04 opt
drwxr-xr-x 19 root root 640 2008-03-20 19:02 run
drwxr-xr-x 7 root root 4096 2007-10-17 00:09 spool
drwxrwxrwt 4 root root 4096 2008-03-20 16:20 tmp
drwxr-xr-x 4 root root 4096 2008-03-20 19:08 www
Mon dossier /etc/apache2/sites-enabled est vide.
#4 Le 21/03/2008, à 13:22
- best_friend_fr
Re : http://localhost/ 404 Not Found
Bon, ben tu as ta réponse
qu'est ce que tu as dans sites-available ?
Dernière modification par best_friend_fr (Le 21/03/2008, à 13:22)
sudo apt-get replace langage_sms by grammaire orthographe ponctuation
La documentation est avant tout faite pour ceux qui posent les questions, et non ceux qui y répondent
Best_friend_fr
Hors ligne
#5 Le 22/03/2008, à 20:08
- fuentes
Re : http://localhost/ 404 Not Found
J'ai un fichier default dans site-available
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
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
Faut-il que je fasse des liens quelquepart?
#6 Le 22/03/2008, à 20:13
- best_friend_fr
Re : http://localhost/ 404 Not Found
que dit
sudo a2ensite default
sudo /etc/init.d/apache2 restart
sudo apt-get replace langage_sms by grammaire orthographe ponctuation
La documentation est avant tout faite pour ceux qui posent les questions, et non ceux qui y répondent
Best_friend_fr
Hors ligne
#7 Le 22/03/2008, à 20:15
- fuentes
Re : http://localhost/ 404 Not Found
sudo a2ensite default
Site default installed; run /etc/init.d/apache2 reload to enable.
* Restarting web server apache2 grep: /etc/apache2/mods-available/userdir.load: Aucun fichier ou répertoire de ce type
grep: /etc/apache2/mods-available/userdir.conf: Aucun fichier ou répertoire de ce type
* We failed to correctly shutdown apache, so we're now killing all running apache processes. This is almost certainly suboptimal, so please make sure your system is working as you'd expect now!
Syntax error on line 13 of /etc/apache2/sites-enabled/000-default:
Invalid command 'Order', perhaps misspelled or defined by a module not included in the server configuration
#8 Le 22/03/2008, à 20:22
- best_friend_fr
Re : http://localhost/ 404 Not Found
salut
les paquets
apache2-utils et apache2-modules et apache2.2-common sont ils installes ?
sudo apt-get replace langage_sms by grammaire orthographe ponctuation
La documentation est avant tout faite pour ceux qui posent les questions, et non ceux qui y répondent
Best_friend_fr
Hors ligne
#9 Le 22/03/2008, à 20:23
- fuentes
Re : http://localhost/ 404 Not Found
Non je n'ai installé que apache2 apache2-doc et apache2.2-common.
#10 Le 22/03/2008, à 20:34
- best_friend_fr
Re : http://localhost/ 404 Not Found
ben installes les 2 que je t'ai dit et refais le restart
sudo apt-get replace langage_sms by grammaire orthographe ponctuation
La documentation est avant tout faite pour ceux qui posent les questions, et non ceux qui y répondent
Best_friend_fr
Hors ligne
#11 Le 22/03/2008, à 20:41
- fuentes
Re : http://localhost/ 404 Not Found
J'ai un soucis pour le paquet apache2-modules
E: Impossible de trouver le paquet apache2-modules
Sinon pour les restarts :
* Restarting web server apache2 grep: /etc/apache2/mods-available/userdir.load: Aucun fichier ou répertoire de ce type
grep: /etc/apache2/mods-available/userdir.conf: Aucun fichier ou répertoire de ce type
Syntax error on line 13 of /etc/apache2/sites-enabled/000-default:
Invalid command 'Order', perhaps misspelled or defined by a module not included in the server configuration
Merci.
#12 Le 22/03/2008, à 21:40
- best_friend_fr
Re : http://localhost/ 404 Not Found
que dit
ls /etc/apache2/mods-enabled
sudo apt-get replace langage_sms by grammaire orthographe ponctuation
La documentation est avant tout faite pour ceux qui posent les questions, et non ceux qui y répondent
Best_friend_fr
Hors ligne
#13 Le 26/03/2008, à 19:27
- fuentes
Re : http://localhost/ 404 Not Found
Bonjour,
Désolé pour le retard mais je n'étais pas chez moi.
En re-installant le paquet apache2.2-common j'arrive enfin à afficher le contenu de /var/www.
Cependant lorsque je clic sur un fichier ou un dossier je ne peux que le telecharger et non le visionner.
Même si je pense que ce n'est plus utile :
ls /etc/apache2/mods-enabled
alias.conf authn_file.load authz_host.load autoindex.load dir.conf mime.conf negotiation.load status.conf
alias.load authz_default.load authz_user.load cgid.conf dir.load mime.load setenvif.conf status.load
auth_basic.load authz_groupfile.load autoindex.conf cgid.load env.load negotiation.conf setenvif.load
#14 Le 26/03/2008, à 23:20
- A.A.K.
Re : http://localhost/ 404 Not Found
bonjour
la solution est tres simple c'est que ton server peut avoir un autre nom comme dans mon cas moi par exemple je dois mettre http://desktop
pour voir le "nom de ton server" va a /etc/hosts
tu dois y trouver quelque chose comme
127.0.1.1 desktop
192.168.0.1 desktop
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
le "nom de ton server dois etre celui a cote de l'IP "desktop"
et j'ai oublier tu dois etre dans la meme machine ou tu as le server
sinon tu dois mettre le ip a la place de "localhost"
si ca resolu ton probleme stp change le titre en [resolu]
Hors ligne
Pages : 1