I have created 2 conf files httpd.conf and httpd1.conf in my apache server. In order to run two instances of it.
When I try to start both apache instance
httpd -f /etc/httpd/conf/httpd1.conf -k start
and
httpd -f /etc/httpd/conf/httpd.conf -k start
only one instance starts. I am able to run either first instance or second. But unable to run them parallel.
The error I am getting httpd (pid 51415) already running
.
Where as a server should not have any problem in running multiple instance of any application.