[...] Thank you very much for the reply. I am using what you said and what Stephen posted to solve the problem.... but, and this seems so simple, I am embarrassed to ask, how do I determine what userid apache is running under?
Questions are always simple to people who already know the answers. To others, they are often hard. In your case, you can check this with the "ps" command. If the app name is actually apache (it usually is these days, though older versions sometimes ran under the name httpd), this will find it:
ps aux | grep apache
The userid will be the leftmost column.
- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
