PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Forums Hébergement > Forum Serveur - Sécurité et techniques > alt.apache.configuration > Apache and PHP configuration issues?
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
alt.apache.configuration Apache web server configuration issues.

Apache and PHP configuration issues?

Réponse
 
LinkBack Outils de la discussion
Vieux 02/10/2006, 21h19   #1
apasj06
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Apache and PHP configuration issues?

Dear group members:

apache installation problem

Dear forum members:

I installed Apache2.0.59 and PHP5.1.6 on my pc (pc using windowXP home
edition)

Apache location: C:/Program Files/Apache Group/Apache2/
PHP location: C:\Program Files\php

I have two issues
A - <os 1048> only one usage of each socket address <protocol/network
address/port> is normally permitted:
make_sock: could not bind to address 0.0.0.0:80 no listening sockets
available shutting down unable to
open logs

I first used defalut port: port 80 I got this message, then I changed
port to 8080 I still have the same
message when i click start icon on window menu.

a) I did some online research results indicates that cause of this
error message is that there are other application(s) also listen to
the same port.




result from dos-prompt:
C:\Documents and Settings\jeff shu>netstat -a -n -o



Active Connections

Proto Local Address Foreign Address State
PID
TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
1036
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
4
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING
1920


b) Apache server informatin set up:
Network Domain: localhost
Server Name: localhost
Admin Email: (your any email)

my computer name is Lutus006 I hope this won't cause any problem

-- modification I have done to the httpd.conf file
a) Listen 8080
b) NameVirtualHost *:8080
c) DocumentRoot "C:/Program Files/Apache Group/Apache2/htdocs

d) I add these lines at the end of the conf file:
<VirtualHost *:8080>
NameVirtualHost *:8080
</VirtualHost>

e) I inserted the following lines at the beginning of httpd.conf file
in order for Apache server to recognize php
LoadModule php5_module php5apache2.dll
AddType application/x-httpd-php .php
PHPIniDir "c:/program files/php"

**I noticed this line in conf file: "ServerName localhost:80" it still
point to port 80 should I change this to 8080 as well?
UseCanonicalName Off

Please give me some suggestion on which variable(s) I need to modify
once I changed port number to 8080

B - My second issue is the test.php file won't work

I installed PHP 5.1.6 at C:\Program Files\php. I used a test.php script
saved in C:/Program Files/Apache Group/Apache2/htdocs folder.

script content:

<?php
echo 'PHP is working.<br>';
echo phpinfo();
?>

I checked in IE browser the results says it couldn't find
http://localhost/ or couldn't find http://localhost/test.php
same result in Firfox browser: can't connect to server local host

Rename c:\php\php.ini-dist to php.ini

I did following modification to php .ini file

a) Changed doc_root = "C:\Program Files\Apache Group\Apache2\htdocs"
b) extension_dir = "C:\Program Files\php\ext"


c) I copied the follwing files to Apache2 folder
C:\php\php5ts.dll
C:\php\sapi\php5apache2.dll
C:\php\php.ini

d) I add php path C:\Program Files\php to system path list


Please me to troubleshoot my issues, I appreciate your suggestions
and I hope I can learn from this trial and error process



Jeff
10-2-06

  Réponse avec citation
Vieux 03/10/2006, 04h40   #2
apasj06
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Apache and PHP configuration issues?

apasj06 wrote:
> Dear group members:
>
> apache installation problem
>
> Dear forum members:
>
> I installed Apache2.0.59 and PHP5.1.6 on my pc (pc using windowXP home
> edition)
>
> Apache location: C:/Program Files/Apache Group/Apache2/
> PHP location: C:\Program Files\php
>
> I have two issues
> A - <os 1048> only one usage of each socket address <protocol/network
> address/port> is normally permitted:
> make_sock: could not bind to address 0.0.0.0:80 no listening sockets
> available shutting down unable to
> open logs
>
> I first used defalut port: port 80 I got this message, then I changed
> port to 8080 I still have the same
> message when i click start icon on window menu.
>
> a) I did some online research results indicates that cause of this
> error message is that there are other application(s) also listen to
> the same port.
>
>
>
>
> result from dos-prompt:
> C:\Documents and Settings\jeff shu>netstat -a -n -o
>
>
>
> Active Connections
>
> Proto Local Address Foreign Address State
> PID
> TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
> 1036
> TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
> 4
> TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING
> 1920
>
>
> b) Apache server informatin set up:
> Network Domain: localhost
> Server Name: localhost
> Admin Email: (your any email)
>
> my computer name is Lutus006 I hope this won't cause any problem
>
> -- modification I have done to the httpd.conf file
> a) Listen 8080
> b) NameVirtualHost *:8080
> c) DocumentRoot "C:/Program Files/Apache Group/Apache2/htdocs
>
> d) I add these lines at the end of the conf file:
> <VirtualHost *:8080>
> NameVirtualHost *:8080
> </VirtualHost>
>
> e) I inserted the following lines at the beginning of httpd.conf file
> in order for Apache server to recognize php
> LoadModule php5_module php5apache2.dll
> AddType application/x-httpd-php .php
> PHPIniDir "c:/program files/php"
>
> **I noticed this line in conf file: "ServerName localhost:80" it still
> point to port 80 should I change this to 8080 as well?
> UseCanonicalName Off
>
> Please give me some suggestion on which variable(s) I need to modify
> once I changed port number to 8080
>
> B - My second issue is the test.php file won't work
>
> I installed PHP 5.1.6 at C:\Program Files\php. I used a test.php script
> saved in C:/Program Files/Apache Group/Apache2/htdocs folder.
>
> script content:
>
> <?php
> echo 'PHP is working.<br>';
> echo phpinfo();
> ?>
>
> I checked in IE browser the results says it couldn't find
> http://localhost/ or couldn't find http://localhost/test.php
> same result in Firfox browser: can't connect to server local host
>
> Rename c:\php\php.ini-dist to php.ini
>
> I did following modification to php .ini file
>
> a) Changed doc_root = "C:\Program Files\Apache Group\Apache2\htdocs"
> b) extension_dir = "C:\Program Files\php\ext"
>
>
> c) I copied the follwing files to Apache2 folder
> C:\php\php5ts.dll
> C:\php\sapi\php5apache2.dll
> C:\php\php.ini
>
> d) I add php path C:\Program Files\php to system path list
>
>
> Please me to troubleshoot my issues, I appreciate your suggestions
> and I hope I can learn from this trial and error process
>
>
>
> Jeff
> 10-2-06


This is jeff again I run netstat -ano in DOS got the following ouput:
C:\Documents and Settings\jeff shu>netstat -ano

Active Connections

Proto Local Address Foreign Address State PID
TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
1036
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING 4
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING -pid
1916 1916
TCP 127.0.0.1:110 0.0.0.0:0 LISTENING
276
TCP 127.0.0.1:1031 0.0.0.0:0 LISTENING
5464
TCP 127.0.0.1:1046 127.0.0.1:1047 ESTABLISHED
3060
TCP 127.0.0.1:1047 127.0.0.1:1046 ESTABLISHED
3060
TCP 127.0.0.1:2010 0.0.0.0:0 LISTENING
276
TCP 192.168.0.6:139 0.0.0.0:0 LISTENING
4
UDP 0.0.0.0:445 *:*
4
UDP 0.0.0.0:1036 *:*
1204
UDP 0.0.0.0:1059 *:*
1204
UDP 127.0.0.1:123 *:*
1144
UDP 127.0.0.1:1045 *:*
2516
UDP 127.0.0.1:1688 *:*
4812
UDP 127.0.0.1:1691 *:*
4040
UDP 127.0.0.1:1900 *:*
1576
UDP 192.168.0.6:123 *:*
1144
UDP 192.168.0.6:137 *:*
4
UDP 192.168.0.6:138 *:*
4
UDP 192.168.0.6:1900 *:*
1576

I run netstat -ovb in DOS get the following output

Active Connections

Proto Local Address Foreign Address State
PID
TCP lotus006:1046 localhost:1047 ESTABLISHED
3060
C:\WINDOWS\system32\mclsp.dll
C:\WINDOWS\system32\mclsphlr\gdlsphlr.dll
C:\WINDOWS\system32\WS2_32.dll
C:\Program Files\Mozilla Firefox\nspr4.dll
C:\Program Files\Mozilla Firefox\xpcom_core.dll
C:\Program Files\Mozilla Firefox\firefox.exe
C:\Program Files\Mozilla Firefox\xpcom_core.dll
C:\Program Files\Mozilla Firefox\firefox.exe
C:\Program Files\Mozilla Firefox\xpcom_core.dll
[firefox.exe]

TCP lotus006:1047 localhost:1046 ESTABLISHED
3060
C:\WINDOWS\system32\mswsock.dll
C:\PROGRA~1\Google\GOOGLE~1\GOEC62~1.DLL
C:\WINDOWS\system32\mclsp.dll
C:\WINDOWS\system32\mclsphlr\gdlsphlr.dll
C:\WINDOWS\system32\WS2_32.dll
C:\Program Files\Mozilla Firefox\nspr4.dll
C:\Program Files\Mozilla Firefox\xpcom_core.dll
C:\Program Files\Mozilla Firefox\firefox.exe
C:\Program Files\Mozilla Firefox\xpcom_core.dll
C:\Program Files\Mozilla Firefox\firefox.exe
[firefox.exe]

how do I kill the process with pid under dosprompt?
-- kill pid won't work in this case.

-- In DOS which command shall I use to find out which process name is
running on port 80/8080?

  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 02h53.


Édité par : vBulletin® version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,11730 seconds with 10 queries