Re: How to enable my Apache module with root access?

2008-08-07 Thread Milinda Pathirage
Hi, If your running Apache on Linux try to add apache user to root users group. In debian based distros you can try to add Apache user to group that have sudo access. But it's not recommended to run Apache with root privileges. Thanks Milinda On Thu, Aug 7, 2008 at 9:57 AM, Dumindu Pallewela

Re: How to enable my Apache module with root access?

2008-08-06 Thread Ellen Chou
Hi Supun, I tried to run Apache as root, but Apache exit out right away with a prompt Please rebuild httpd.exe compile with -D BIG_SECURITY_HOLE I guess Apache doesn't allow to run as root. What else can I do? Thanks, Ellen On Tue, Aug 5, 2008 at 9:27 PM, Supun Kamburugamuva [EMAIL

Re: How to enable my Apache module with root access?

2008-08-06 Thread Supun Kamburugamuva
Hi, Yes, you are right. It seems that Apace doesn't allow running with root access. There is another directive called LoadFile. You can specify the other libraries that require root access in the LoadFile directive. I'm not sure weather this will work. But please give it a try. Supun.. On Thu,

Re: How to enable my Apache module with root access?

2008-08-06 Thread Dumindu Pallewela
On Wed, Aug 6, 2008 at 3:25 AM, Ellen Chou [EMAIL PROTECTED] wrote: Dear Apache developers, I have developped an Axis2C Soap service and successfully deployed in Axis2C simple http server. But when I deployed my service in Apache web server 2.2, my service is not functioning properly. The

How to enable my Apache module with root access?

2008-08-05 Thread Ellen Chou
Dear Apache developers, I have developped an Axis2C Soap service and successfully deployed in Axis2C simple http server. But when I deployed my service in Apache web server 2.2, my service is not functioning properly. The reason is because my service needs to call some in-house library that

Re: How to enable my Apache module with root access?

2008-08-05 Thread Supun Kamburugamuva
Hi, AFAIK the only way to load the mod_axis2.so as root is to run Apache as the root. There is a directive in the httpd.conf specifying the user under which Apache runs. The directive is user. Please change the value to root and give it a try. Supun.. On Wed, Aug 6, 2008 at 2:55 AM, Ellen Chou