Apache Web Server
-
How do I start Apache as a thread from my process. Does it require any change in the configuration? Can you please guide me through it . Regards,
-
How do I start Apache as a thread from my process. Does it require any change in the configuration? Can you please guide me through it . Regards,
-
You have to have the rights to do so. In perl I usually use back ticks to execute a command. Just assign the results to a variable. I think you are supposed to use exec, but .... well, I learned the other way :D
If it moves, compile it
The exec() call creates a new process and will not be a thread of the program from where I am calling. I am concerned about starting apache as a thread . Can you please give some more info ... Regards
-
How do I start Apache as a thread from my process. Does it require any change in the configuration? Can you please guide me through it . Regards,
Short answer: you can't. Apache is multithreaded/multiprocess depending on which MPM is configured. There is no way it can run as a single thread in some other process. Peter
Software rusts. Simon Stephenson, ca 1994.
-
The exec() call creates a new process and will not be a thread of the program from where I am calling. I am concerned about starting apache as a thread . Can you please give some more info ... Regards
-
How do I start Apache as a thread from my process. Does it require any change in the configuration? Can you please guide me through it . Regards,
After install Apache web server, you should be done little change in some file like port change(8080) and any other change...Thanks