Re: Test Server

2007-10-16 Thread Issac Goldstand
I've had amazing experience setting up development sandboxes with VMWare Workstation and deploying them on Player (which means less investment in licenses). I use MySQL replication from the live server for keeping the DBs in sync and SVN for file management. If I've got people who use win32 as

Test Server

2007-10-15 Thread jk jk
Recently we transitioned a rather large webapp from vanilla CGI to MP2. On our test server, each developer has his own checkout and his own URI. To eliminate the need to constantly restart the server, we installed Apache2::Reload. Unfortunately, we use a custom @ISA for each developer's copy

Re: Test Server

2007-10-15 Thread Perrin Harkins
On 10/15/07, jk jk [EMAIL PROTECTED] wrote: On our test server, each developer has his own checkout and his own URI. To eliminate the need to constantly restart the server, we installed Apache2::Reload. Unfortunately, we use a custom @ISA for each developer's copy, which Apache2::Reload

Re: Test Server

2007-10-15 Thread jk jk
Sorry, 1 server under which all developers run a separate copy of the app using their own URI. Thanks. --JK On 10/15/07, Perrin Harkins [EMAIL PROTECTED] wrote: On 10/15/07, jk jk [EMAIL PROTECTED] wrote: On our test server, each developer has his own checkout and his own URI

Re: Test Server

2007-10-15 Thread Perrin Harkins
On 10/15/07, jk jk [EMAIL PROTECTED] wrote: Sorry, 1 server under which all developers run a separate copy of the app using their own URI. I think you have your answer then: run a separate server for each developer. That's what I consider the normal way to do it, and it's easy. You don't even

Re: [mp2] test server cannot start as non-root user with worker mpm

2004-11-25 Thread Stas Bekman
Stas Bekman wrote: [...] I've added this into TestConfig.pm, and am testing right now... IfModule !mpm_winnt.c IfModule !mpm_netware.c Lockfile @t_logs@/accept.lock /IfModule /IfModule OK, let us know if that has worked. I hope we can add that for any mpm, and not just netware, since

Re: [mp2] test server cannot start as non-root user with worker mpm

2004-11-04 Thread Cory Omand
On Tue, 2004-11-02 at 17:43, Stas Bekman wrote: Cory Omand wrote: On Tue, 2004-11-02 at 16:19, Stas Bekman wrote: Does your global httpd.conf has an AcceptMutex entry which specifies a location which is only root accessible? So A-T should probably detect that and rewrite the path to

Re: [mp2] test server cannot start as non-root user with worker mpm

2004-11-04 Thread Stas Bekman
Cory Omand wrote: [...] Oh, you mean we were talking about LockFile all this time, which is wrong when run under non-root user, right? So your global httpd.conf has: LockFile logs/accept.lock No, my global httpd.conf doesn't have an active LockFile directive (there is one in there, but it's

[mp2] test server cannot start as non-root user with worker mpm

2004-11-02 Thread Cory Omand
-8-- Start Bug Report 8-- 1. Problem Description: When running 'make test' as a non-root user, apache fails to create the default AcceptMutex. All tests fail, and the following is output to the error_log: [Tue Nov 02 17:16:22 2004] [emerg] (13)Permission

Re: [mp2] test server cannot start as non-root user with worker mpm

2004-11-02 Thread Stas Bekman
Cory Omand wrote: -8-- Start Bug Report 8-- 1. Problem Description: When running 'make test' as a non-root user, apache fails to create the default AcceptMutex. All tests fail, and the following is output to the error_log: [Tue Nov 02 17:16:22 2004] [emerg]

Re: [mp2] test server cannot start as non-root user with worker mpm

2004-11-02 Thread Stas Bekman
Cory Omand wrote: [First of all, don't forget to reply-all, when following up on list's threads. Thanks.] On Tue, 2004-11-02 at 14:44, Stas Bekman wrote: Cory Omand wrote: -8-- Start Bug Report 8-- 1. Problem Description: When running 'make test' as a

Re: [mp2] test server cannot start as non-root user with worker mpm

2004-11-02 Thread Cory Omand
On Tue, 2004-11-02 at 15:35, Stas Bekman wrote: Cory Omand wrote: [First of all, don't forget to reply-all, when following up on list's threads. Thanks.] Sorry -- force of habit. It has nothing to do with either A-T or mod_perl, A-T just per-uses the globally installed httpd.conf for

Re: [mp2] test server cannot start as non-root user with worker mpm

2004-11-02 Thread Stas Bekman
Cory Omand wrote: [... explanation snipped ...] Does the above clarify where I'm coming from? Yes, thanks for the explanation, Cory. Now I more or less understand what is the problem. Does your global httpd.conf has an AcceptMutex entry which specifies a location which is only root accessible?

Re: [mp2] test server cannot start as non-root user with worker mpm

2004-11-02 Thread Cory Omand
On Tue, 2004-11-02 at 16:19, Stas Bekman wrote: Does your global httpd.conf has an AcceptMutex entry which specifies a location which is only root accessible? So A-T should probably detect that and rewrite the path to something local (e.g. t/logs/acceptmutex)? The global httpd.conf file,

Re: [mp2] test server cannot start as non-root user with worker mpm

2004-11-02 Thread Stas Bekman
Cory Omand wrote: On Tue, 2004-11-02 at 16:19, Stas Bekman wrote: Does your global httpd.conf has an AcceptMutex entry which specifies a location which is only root accessible? So A-T should probably detect that and rewrite the path to something local (e.g. t/logs/acceptmutex)? The global