Page 1 of 1

configure : install apache php jsp mysql tomcat windows xp

Posted: Mon Oct 11, 2004 4:36 am
by pelegk2
does any 1 know of manualls hat teach how to configure :
install apache php jsp mysql tomcat windows xp

Posted: Mon Oct 11, 2004 8:48 am
by timvw
i have them all installed, just folling the INSTALL.TXT and README.TXT files in the packages

how can i make iis and apache 2 run on winxp?

Posted: Mon Oct 11, 2004 12:01 pm
by pelegk2
how can i make iis and apache 2 run on winxp?
is it possible?then how?
thnaks i nadvance
peleg

Posted: Mon Oct 11, 2004 12:54 pm
by mudkicker
yes it is, just change the port in apache(httpd.conf) or iis..

Posted: Mon Oct 11, 2004 12:54 pm
by timvw
I have IIS on port 80, and apache on 8080.

httpd.conf -> Listen 8080

Posted: Tue Oct 12, 2004 4:41 am
by pelegk2
can i call the apache on another name then localhost?then how?

Posted: Tue Oct 12, 2004 5:42 am
by timvw
can you read the manual? :P

Posted: Tue Oct 12, 2004 8:42 am
by pelegk2
i did and there is param called servername
i changed it and it didnt help

Posted: Tue Oct 12, 2004 9:33 am
by timvw
a snipped from my httpd.conf

Code: Select all

Listen 8080
ServerName localhost:8080
UseCanonicalName Off

NameVirtualhost *:8080

<VirtualHost *:8080>
  ServerName localhost
  DocumentRoot "C:/websites/localhost"
  <Directory "C:/websites/localhost">
    AllowOverride All
    Options All
  </Directory>
</Virtualhost>

<VirtualHost *:8080>
  ServerName test
  DocumentRoot "C:/websites/test"
  <Directory "C:/websites/test">
    AllowOverride All
    Options All
  </Directory>
</Virtualhost>

Posted: Tue Oct 12, 2004 10:01 am
by pelegk2
nice more Q :
can i make the apache and the tomcat to listen to the same port?
so if i reffer for example
localhost/1.php
or
localhost/1.jsp
i will recive a respose
thanks in advance
peleg

Posted: Tue Oct 12, 2004 10:52 am
by timvw

Posted: Wed Oct 13, 2004 1:43 am
by pelegk2
yesp thanks alot
nut the way where can i readdocumentation for begginers about how to congfigure thing on the httpd.conf file