Probleme apache2

Fermé
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015 - 1 nov. 2007 à 15:28
 Bulter - 5 mai 2008 à 15:04
Bonjour à toutes et à tous,

J'ai installer debian il y a 3 jours de ça (j'ai vraiment galérer car les driver ati ne marche pas...), j'ai installer debian pour créer un serveur apache+mysql+php mais le problème est que j'ai fait une fausse manip et j'ai supprimer le dossier apache2-defaul (je l'ai envoyé dans la corbeille mais je ne le voit pas et malgrés des recherches je n'ai pas trouvé ce fichu dossier) dans /var/www à la suite de ça j'ai desinstaller via la commande:

apt-get --purge remove apache2 et j'ai supprimer le dossier apache2 dans /etc.

Donc ensuite j'ai tenter une reinstallation de apache2:

apt-get update
apt-get upgrade
apt-get install apache2 (je n'ai pas mis toute les commandes taper)

et lorsque j'ai voulu vérifier si le serveur marché, j'ai donc lancé konqueror, je tape dans la barre d'adresse: localhost, redirection vers http://localhost/apache2-default/ et je tombe sur une page d'érreur 404. Et je m'aperçois donc que le dossier apache2-default (/var/www) et apache2 (/etc) ne sont toujours pas revenu.

J'aimerais avoir des solutions à mon(mes) problème(s), je débute niveau linux c'est tout nouveau pour moi et ca fait 3 jours que je rode sur internet pour trouver des solutions à des problèmes donc j'ai quand même appris quelque notion!

En vous remerciant d'avance j'espère avoir des réponses rapidement.

Bonne journée à toutes et à tous

96 réponses

spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 00:30
#!/bin/sh -e
#
# apache2 This init.d script is used to start apache2.
# It basically just calls apache2ctl.

ENV="env -i LANG=C PATH=/usr/local/bin:/usr/bin:/bin"

#[ `ls -1 /etc/apache2/sites-enabled/ | wc -l | sed -e 's/ *//;'` -eq 0 ] && \
#echo "You haven't enabled any sites yet, so I'm not starting apache2." && \
#echo "To add and enable a host, use addhost and enhost." && exit 0

#edit /etc/default/apache2 to change this.
NO_START=0

set -e
if [ -x /usr/sbin/apache2 ] ; then
HAVE_APACHE2=1
else
echo "No apache MPM package installed"
exit 0
fi

. /lib/lsb/init-functions

test -f /etc/default/rcS && . /etc/default/rcS
test -f /etc/default/apache2 && . /etc/default/apache2
if [ "$NO_START" != "0" -a "$1" != "stop" ]; then
[ "$VERBOSE" != no ] && log_warning_msg "Not starting apache2 - edit /etc/default/apache2 and change NO_START to be 0.";
exit 0;
fi

APACHE2="$ENV /usr/sbin/apache2"
APACHE2CTL="$ENV /usr/sbin/apache2ctl"

pidof_apache() {
# if pidof is null for some reasons the script exits automagically
# classified as good/unknown feature
PIDS=`pidof apache2` || true

PID=""

# let's try to find the pid file
# apache2 allows more than PidFile entry in the config but only
# the last found in the config is used
for PFILE in `grep ^PidFile /etc/apache2/* -r | awk '{print $2}'`; do
if [ -e $PFILE ]; then
cat $PFILE
return 0
fi
done
REALPID=0
# if there is a pid we need to verify that belongs to apache2
# for real
for i in $PIDS; do
if [ "$i" = "$PID" ]; then
# in this case the pid stored in the
# pidfile matches one of the pidof apache
# so a simple kill will make it
echo $PID
return 0
fi
done
return 1
}

apache_stop() {
if `apache2 -t > /dev/null 2>&1`; then
# if the config is ok than we just stop normaly
$APACHE2 -k stop
else
# if we are here something is broken and we need to try
# to exit as nice and clean as possible
PID=$(pidof_apache)

if [ "${PID}" ]; then
# in this case it is everything nice and dandy
# and we kill apache2
kill $PID
elif [ "$(pidof apache2)" ]; then
if [ "$VERBOSE" != no ]; then
echo " ... failed!"
echo "You may still have some apache2 processes running. There are"
echo "processes named 'apache2' which do not match your pid file,"
echo "and in the name of safety, we've left them alone. Please review"
echo "the situation by hand."
fi
return 1
fi
fi
}

apache_sync_stop() {
# running ?
PIDTMP=$(pidof_apache)
if $(kill -0 "${PIDTMP:-}" 2> /dev/null); then
PID=$PIDTMP
fi

apache_stop

# wait until really stopped
if [ -n "${PID:-}" ]; then
i=0
while $(kill -0 "${PID:-}" 2> /dev/null); do
if $i == '30'; then
break;
else
if $i == '0'; then
echo -n " waiting "
else
echo -n "."
fi
i=$(($i+1))
sleep 2
fi
done
fi
}

# Stupid hack to keep lintian happy. (Warrk! Stupidhack!).
case $1 in
start)
[ -f /etc/apache2/httpd.conf ] || touch /etc/apache2/httpd.conf
[ -d /var/run/apache2 ] || mkdir -p /var/run/apache2
[ -d /var/lock/apache2 ] || mkdir -p /var/lock/apache2
#ssl_scache shouldn't be here if we're just starting up.
[ -f /var/run/apache2/ssl_scache ] && rm -f /var/run/apache2/*ssl_scache*
log_begin_msg "Starting web server (apache2)..."
if $APACHE2CTL start; then
log_end_msg 0
else
log_end_msg 1
fi
;;
stop)
log_begin_msg "Stopping web server (apache2)..."
if apache_stop; then
log_end_msg 0
else
log_end_msg 1
fi
;;
reload)
if ! $APACHE2CTL configtest > /dev/null 2>&1; then
$APACHE2CTL configtest || true
log_end_msg 1
exit 1
fi
log_begin_msg "Reloading web server config..."
if pidof_apache; then
if $APACHE2CTL graceful $2 ; then
log_end_msg 0
else
log_end_msg 1
fi
fi
;;
restart | force-reload)
log_begin_msg "Forcing reload of web server (apache2)..."
if ! apache_sync_stop; then
log_end_msg 1
fi
if $APACHE2CTL start; then
log_end_msg 0
else
log_end_msg 1
fi
;;
*)
log_success_msg "Usage: /etc/init.d/apache2 {start|stop|restart|reload|force-reload}"
;;
esac
0
lami20j Messages postés 21331 Date d'inscription jeudi 4 novembre 2004 Statut Modérateur, Contributeur sécurité Dernière intervention 30 octobre 2019 3 567
2 nov. 2007 à 00:35
affiche
 grep www /etc/passwd
tape et affiche
/usr/sbin/apache2ctl start 
ps aux | grep apache
0
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 00:38
debian:/home/spykon# grep www /etc/passwd
www-data:x:33:33:www-data:/var/www:/bin/sh


debian:/home/spykon# /usr/sbin/apache2ctl start
apache2: Syntax error on line 189 of /etc/apache2/apache2.conf: Could not open configuration file /etc/apache2/httpd.conf: No such file or directory
debian:/home/spykon# ps aux | grep apache
root 3753 0.0 0.0 2876 752 pts/2 R+ 00:38 0:00 grep apache
0
lami20j Messages postés 21331 Date d'inscription jeudi 4 novembre 2004 Statut Modérateur, Contributeur sécurité Dernière intervention 30 octobre 2019 3 567
2 nov. 2007 à 00:42
touch /etc/apache2/httpd.conf && /etc/init.d/apache2 start && ps aux | grep apache
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 00:44
debian:/home/spykon# touch /etc/apache2/httpd.conf && /etc/init.d/apache2 start && ps aux | grep apache
root 3839 0.0 0.0 2880 760 pts/2 R+ 00:44 0:00 grep apache
0
lami20j Messages postés 21331 Date d'inscription jeudi 4 novembre 2004 Statut Modérateur, Contributeur sécurité Dernière intervention 30 octobre 2019 3 567
2 nov. 2007 à 00:52
affiche
apache2 -t
sed '188,190!d' /etc/apache2/apache2.conf
0
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 00:53
debian:/home/spykon# apache2 -t
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
Syntax OK
debian:/home/spykon# sed '188,190!d' /etc/apache2/apache2.conf
# Include all the user configurations:
Include /etc/apache2/httpd.conf
0
lami20j Messages postés 21331 Date d'inscription jeudi 4 novembre 2004 Statut Modérateur, Contributeur sécurité Dernière intervention 30 octobre 2019 3 567
2 nov. 2007 à 00:57
ouvre le fichier de configuration /etc/apache2/apache2.conf et met un # avant Include /etc/apache2/httpd.conf
donc tu dois obtenir
#Include /etc/apache2/httpd.conf
ensuite essaie /etc/init.d/apache2 start et affiche ps aux | grep apache
0
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 01:00
debian:/home/spykon# /etc/init.d/apache2 start
debian:/home/spykon# ps aux | grep apache
root 4009 0.0 0.0 2876 756 pts/2 R+ 01:00 0:00 grep apache
0
lami20j Messages postés 21331 Date d'inscription jeudi 4 novembre 2004 Statut Modérateur, Contributeur sécurité Dernière intervention 30 octobre 2019 3 567
2 nov. 2007 à 01:09
affiche
grep -Ev '^(.*#|$)' /etc/apache2/apache2.conf
0
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 01:10
debian:/home/spykon# grep -Ev '^(.*#|$)' /etc/apache2/apache2.conf
ServerRoot "/etc/apache2"
LockFile /var/lock/apache2/accept.lock
PidFile /var/run/apache2.pid
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
</IfModule>
<IfModule mpm_worker_module>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
User www-data
Group www-data
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>
TypesConfig /etc/mime.types
DefaultType text/plain
HostnameLookups Off
ErrorLog /var/log/apache2/error.log
LogLevel warn
Include /etc/apache2/mods-enabled/*.load
Include /etc/apache2/mods-enabled/*.conf
Include /etc/apache2/ports.conf
Include /etc/apache2/conf.d/
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
ServerTokens Full
ServerSignature On
<IfModule alias_module>
Alias /icons/ "/usr/share/apache2/icons/"
<Directory "/usr/share/apache2/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</IfModule>
<IfModule mod_autoindex.c>
IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=*
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
DefaultIcon /icons/unknown.gif
ReadmeName README.html
HeaderName HEADER.html
</IfModule>
<IfModule mod_mime.c>
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddLanguage ca .ca
AddLanguage cs .cz .cs
AddLanguage da .dk
AddLanguage de .de
AddLanguage el .el
AddLanguage en .en
AddLanguage eo .eo
AddLanguage es .es
AddLanguage et .et
AddLanguage fr .fr
AddLanguage he .he
AddLanguage hr .hr
AddLanguage it .it
AddLanguage ja .ja
AddLanguage ko .ko
AddLanguage ltz .ltz
AddLanguage nl .nl
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pl .po
AddLanguage pt .pt
AddLanguage pt-BR .pt-br
AddLanguage ru .ru
AddLanguage sv .sv
AddLanguage zh-CN .zh-cn
AddLanguage zh-TW .zh-tw
</IfModule>
<IfModule mod_negotiation.c>
LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
ForceLanguagePriority Prefer Fallback
</IfModule>
<IfModule mod_mime.c>
AddCharset us-ascii .ascii .us-ascii
AddCharset ISO-8859-1 .iso8859-1 .latin1
AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
AddCharset ISO-8859-3 .iso8859-3 .latin3
AddCharset ISO-8859-4 .iso8859-4 .latin4
AddCharset ISO-8859-5 .iso8859-5 .cyr .iso-ru
AddCharset ISO-8859-6 .iso8859-6 .arb .arabic
AddCharset ISO-8859-7 .iso8859-7 .grk .greek
AddCharset ISO-8859-8 .iso8859-8 .heb .hebrew
AddCharset ISO-8859-9 .iso8859-9 .latin5 .trk
AddCharset ISO-8859-10 .iso8859-10 .latin6
AddCharset ISO-8859-13 .iso8859-13
AddCharset ISO-8859-14 .iso8859-14 .latin8
AddCharset ISO-8859-15 .iso8859-15 .latin9
AddCharset ISO-8859-16 .iso8859-16 .latin10
AddCharset ISO-2022-JP .iso2022-jp .jis
AddCharset ISO-2022-KR .iso2022-kr .kis
AddCharset ISO-2022-CN .iso2022-cn .cis
AddCharset Big5 .Big5 .big5 .b5
AddCharset cn-Big5 .cn-big5
AddCharset WINDOWS-1251 .cp-1251 .win-1251
AddCharset CP866 .cp866
AddCharset KOI8 .koi8
AddCharset KOI8-E .koi8-e
AddCharset KOI8-r .koi8-r .koi8-ru
AddCharset KOI8-U .koi8-u
AddCharset KOI8-ru .koi8-uk .ua
AddCharset ISO-10646-UCS-2 .ucs2
AddCharset ISO-10646-UCS-4 .ucs4
AddCharset UTF-7 .utf7
AddCharset UTF-8 .utf8
AddCharset UTF-16 .utf16
AddCharset UTF-16BE .utf16be
AddCharset UTF-16LE .utf16le
AddCharset UTF-32 .utf32
AddCharset UTF-32BE .utf32be
AddCharset UTF-32LE .utf32le
AddCharset euc-cn .euc-cn
AddCharset euc-gb .euc-gb
AddCharset euc-jp .euc-jp
AddCharset euc-kr .euc-kr
AddCharset EUC-TW .euc-tw
AddCharset gb2312 .gb2312 .gb
AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2
AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4
AddCharset shift_jis .shift_jis .sjis
AddHandler type-map var
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
</IfModule>
<IfModule mod_setenvif.c>
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "MS FrontPage" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
BrowserMatch "^gnome-vfs/1.0" redirect-carefully
BrowserMatch "^XML Spy" redirect-carefully
BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
</IfModule>
Include /etc/apache2/sites-enabled/
0
Utilisateur anonyme
2 nov. 2007 à 01:15
Bonsoir bonsoir! Désolé de m'immiscer dans votre conversation mais j'ai un évènement important dont je voudrai vous faire part: Needkiller crée son site et a besoin d'une team et d'un peu de pub.
Pour plus d'info: http://www.commentcamarche.net/forum/affich 3930147 cr ation d une nouvelle team#dernier


Life is life! never changes...
0
lami20j Messages postés 21331 Date d'inscription jeudi 4 novembre 2004 Statut Modérateur, Contributeur sécurité Dernière intervention 30 octobre 2019 3 567
2 nov. 2007 à 01:18
tape
 /usr/sbin/apache2
et regarde ce que te donne ps aux | grep apache
0
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 01:20
debian:/home/spykon# /usr/sbin/apache2
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 [::]:80
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs

debian:/home/spykon# ps aux | grep apache
root 4148 0.0 0.0 2876 756 pts/2 R+ 01:20 0:00 grep apache
0
lami20j Messages postés 21331 Date d'inscription jeudi 4 novembre 2004 Statut Modérateur, Contributeur sécurité Dernière intervention 30 octobre 2019 3 567
2 nov. 2007 à 01:24
affiche
netstat -taupen | grep :80
0
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 01:24
debian:/home/spykon# netstat -taupen | grep :80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 0 9106 3020/lighttpd
tcp 0 0 192.168.0.3:32873 80.118.149.122:80 TIME_WAIT 0 0 -
udp 0 0 0.0.0.0:808 0.0.0.0:* 0 9508 3176/rpc.statd
0
lami20j Messages postés 21331 Date d'inscription jeudi 4 novembre 2004 Statut Modérateur, Contributeur sécurité Dernière intervention 30 octobre 2019 3 567
2 nov. 2007 à 01:29
ok, je crois qu'on a trouvé
tu as un server déjà en écoute sur le port 80 et tu n'as pas besoin de lui
/etc/init.d/lighttpd stop
aptitude purge lighttpd
/etc/init.d/apache2 start
ps aux | grep apache
0
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 01:32
C'est vrai que tout à l'heure lorsque j'ai reboot mon pc j'ai vu dans une ligne lighttpd stop (server web) ou un truc du genre mais j'ai oublié de t'en parler ......

debian:/home/spykon# /etc/init.d/apache2 start
debian:/home/spykon# ps aux | grep apache
root 4250 0.0 0.0 2876 756 pts/2 R+ 01:31 0:00 grep apache
0
lami20j Messages postés 21331 Date d'inscription jeudi 4 novembre 2004 Statut Modérateur, Contributeur sécurité Dernière intervention 30 octobre 2019 3 567
2 nov. 2007 à 01:33
affiche à nouveau
 netstat -taupen | grep :80
et tape aussi pour voir
/usr/sbin/apache2
0
spykoN Messages postés 55 Date d'inscription jeudi 1 novembre 2007 Statut Membre Dernière intervention 14 juillet 2015
2 nov. 2007 à 01:36
debian:/home/spykon# netstat -taupen | grep :80
tcp 0 0 192.168.0.3:36818 209.85.129.166:80 ESTABLISHED1000 27167 3417/firefox-bin
tcp 0 0 192.168.0.3:36817 209.85.129.166:80 ESTABLISHED1000 27166 3417/firefox-bin
tcp 0 0 192.168.0.3:34630 195.8.215.131:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:48522 80.89.112.91:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:57307 80.89.112.76:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:57294 80.89.112.76:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:57144 80.89.112.76:80 TIME_WAIT 0 0 -
tcp 1 0 192.168.0.3:50695 213.251.138.24:80 CLOSE_WAIT 1000 27454 3417/firefox-bin
tcp 0 0 192.168.0.3:50538 213.251.138.24:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:42336 70.86.88.42:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:39268 213.251.176.85:80 TIME_WAIT 0 0 -
tcp 1 0 192.168.0.3:39434 213.251.176.85:80 CLOSE_WAIT 1000 27467 3417/firefox-bin
tcp 0 0 192.168.0.3:39424 213.251.176.85:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44686 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44682 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44676 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44678 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44679 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44672 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44673 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44693 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44716 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44718 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44707 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44732 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44733 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44735 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44727 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44721 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44744 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44742 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44738 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44764 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44766 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44761 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44762 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44776 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44774 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44775 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44653 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44648 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44650 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44669 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44671 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44665 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44667 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44662 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44658 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:44659 194.169.240.130:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:51978 213.186.62.44:80 TIME_WAIT 0 0 -
tcp 0 0 192.168.0.3:51723 80.118.149.105:80 TIME_WAIT 0 0 -
tcp 1 0 192.168.0.3:53283 80.89.112.200:80 CLOSE_WAIT 1000 27452 3417/firefox-bin
tcp 1 0 192.168.0.3:53284 80.89.112.200:80 CLOSE_WAIT 1000 27453 3417/firefox-bin
udp 0 0 0.0.0.0:808 0.0.0.0:* 0 9508 3176/rpc.statd


debian:/home/spykon# /usr/sbin/apache2
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
0