Hi,
I have been given a server which runs Apache2. Its working fine by itself. What I need to do is run another apache server in port (say)8000 is folder /home/myname (in the same machine). From what I know, if I have proper configuration files in my folder we should be able to run another apache server from there. Please correct me if I am wrong. I tried copying the already existing config files in the server to my folder and changing the Port to 8000. This doesn't seem to work as I cannot write to many files because I do not have permission to do so. Also there seem to be too many interconnected files that I do not have permission to write on.

Can someone guide me to write a config file (httpd.conf) for the server at port 8000!!!

my final aim will be to communicate between these two servers (Hopefully urllib will help me do that).

I was wondering if the whole idea of running second apache in a different folder just by using configuration file/s (httpd.conf) as mentioned above work or not!!

If I make the same version of Apache listen to two ports (8000 and 80 lets say) using virtural hosts, can they be assigned different configuration?? e.g. making these two run different file by default!!

Where in the config file do we make apache run a specific file on receiving a request???


Anand

Recommended Answers

All 2 Replies

Hi,
I have been given a server which runs Apache2. Its working fine by itself. What I need to do is run another apache server in port (say)8000 is folder /home/myname (in the same machine). From what I know, if I have proper configuration files in my folder we should be able to run another apache server from there. Please correct me if I am wrong. I tried copying the already existing config files in the server to my folder and changing the Port to 8000. This doesn't seem to work as I cannot write to many files because I do not have permission to do so. Also there seem to be too many interconnected files that I do not have permission to write on.

Can someone guide me to write a config file (httpd.conf) for the server at port 8000!!!

my final aim will be to communicate between these two servers (Hopefully urllib will help me do that).

I was wondering if the whole idea of running second apache in a different folder just by using configuration file/s (httpd.conf) as mentioned above work or not!!

If I make the same version of Apache listen to two ports (8000 and 80 lets say) using virtural hosts, can they be assigned different configuration?? e.g. making these two run different file by default!!

Where in the config file do we make apache run a specific file on receiving a request???


Anand

You should be able to place both ports on the same configuration file then seperate the requests using a virtualhost entry.

Example:
NameVirtualhost 192.168.0.1:80
NameVirtualhost 192.168.0.1:8000

<VirtualHost 192.168.0.1:80>
Servername main.servername.com
Serveralias servername.com www.servername.com
DocumentRoot /home/path/documents1/
</VirtualHost>

<VirtualHost 192.168.0.1:8000>
Servername main.otherservername.com
Serveralias otherservername.com www.otherservername.com
DocumentRoot /home/path/documents2/
</VirtualHost>

Big thanks ;) It really does help. Now I can treat 49 port as SVN repository, 80 as web server.)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.