You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Meir Yanovich <me...@fts-soft.com> on 2006/03/26 17:12:32 UTC

[users@httpd] is there possibility to make apache be single thread in SunOS

Hello 

in the configuration of apache 1.3.27 , is there any possibility to make
apache act like single thread process?

 

Regards
 

 


[users@httpd] auth_ldap1.6.1 (Could not connect to LDAP server no such file or directory)

Posted by jay alvarez <qm...@yahoo.com>.
Hi,

I turned on my apache to debugging level and here's
what I got:

Upon visiting the protected site...

Entering ldap_authenticate_basic_user
authenticate: using URL
ldap://192.168.0.3:389/ou=people,o=example,dc=com
authenticate: result is 401

Now, after entering my credentials in the login
form...

Entering ldap_authenticate_basic_user
authenticate: using URL
ldap://192.168.0.3:389/ou=people,o=example,dc=com
entry for `jay' is not in the cache
Entering auth_ldap_connect_to_server
Opening connection to ldap server(s) `192.168.0.3'
LDAP OP: init
Could not connect to LDAP server: No such file or
directory

Any idea what's happening here??


My Directory contains:

AuthLDAPAuthoritative on
AuthLDAPBindDN uid=jay,ou=people,o=example,dc=com
AuthLDAPBindPassword secret
AuthLDAPEnabled on
AuthLDAPUrl
ldap://192.168.0.3:389/ou=people,o=example,dc=com
require valid-user


Apache/1.3.34 (Unix) PHP/4.4.2 mod_ssl/2.8.25
OpenSSL/0.9.7
auth_ldap-1.6.1
$OpenLDAP: slapd 2.3.17


./configure 
--with-apxs=/usr/local/sbin/apxs
--with-ldap-sdk=openldap
--with-sdk-headers=/usr/local/openldap/include
--with-sdk-libs=/usr/local/openldap/lib 
--with-ssl
--with-activate

Thanks.
 
		
---------------------------------
Blab-away for as little as 1¢/min. Make  PC-to-Phone Calls using Yahoo! Messenger with Voice.
		
---------------------------------
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.

Re: [users@httpd] is there possibility to make apache be single thread in SunOS

Posted by ht...@karsites.net.
You may find this article on server processes in general 
helpfull Meir. I think it covers apache examples as well.

http://www.devshed.com/c/a/Administration/Design-and-Architecture/

HTH

Keith

In theory, theory and practice are the same;
in practice they are not.

On Sun, 26 Mar 2006, Meir Yanovich wrote:

> To: users@httpd.apache.org
> From: Meir Yanovich <um...@netvision.net.il>
> Subject: Re: [users@httpd] is there possibility to make apache be single
>     thread in SunOS
> 
> Thanks for you answer .. now its clearer
> im on my long journey to learn more and more so sorry for the beginners
> questions
> thanks

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] is there possibility to make apache be single thread in SunOS

Posted by Meir Yanovich <um...@netvision.net.il>.
Thanks for you answer .. now its clearer
im on my long journey to learn more and more so sorry for the beginners
questions
thanks
----- Original Message -----
From: "Joshua Slive" <jo...@slive.ca>
To: <us...@httpd.apache.org>
Sent: Sunday, March 26, 2006 10:07 PM
Subject: Re: [users@httpd] is there possibility to make apache be single
thread in SunOS


> On 3/26/06, Meir Yanovich <um...@netvision.net.il> wrote:
> > Really ?
> > now this is surprise .. i was sure its single thread in windows and
multi
> > thread in unix machine
> > so how does it deal with forking the server children ? how does it deal
with
> > multiple requests? and such ..
>
> If you substitute "single process" for "single thread" then what you
> say is true.  Apache 1.3 is single-process multi-threaded on win32 and
> multi-process single-threaded on unix.
>
> Joshua.
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>
>
> --
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.1.385 / Virus Database: 268.3.0/290 - Release Date: 23/03/2006
>
>


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] is there possibility to make apache be single thread in SunOS

Posted by Joshua Slive <jo...@slive.ca>.
On 3/26/06, Meir Yanovich <um...@netvision.net.il> wrote:
> Really ?
> now this is surprise .. i was sure its single thread in windows and multi
> thread in unix machine
> so how does it deal with forking the server children ? how does it deal with
> multiple requests? and such ..

If you substitute "single process" for "single thread" then what you
say is true.  Apache 1.3 is single-process multi-threaded on win32 and
multi-process single-threaded on unix.

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] is there possibility to make apache be single thread in SunOS

Posted by ht...@karsites.net.
Meir - I think you are getting confused with apache 2.0.x 
and 2.2.x series. Apache 2 series supports various different 
MPM modules - 1.3 doesn't IIRC.

Keith

In theory, theory and practice are the same;
in practice they are not.

On Sun, 26 Mar 2006, Meir Yanovich wrote:

> To: users@httpd.apache.org
> From: Meir Yanovich <um...@netvision.net.il>
> Subject: Re: [users@httpd] is there possibility to make apache be single
>     thread in SunOS
> 
> Really ?
> now this is surprise .. i was sure its single thread in windows and multi
> thread in unix machine
> so how does it deal with forking the server children ? how does it deal with
> multiple requests? and such ..
> Thanks
> ----- Original Message -----
> From: "Joshua Slive" <jo...@slive.ca>
> To: <us...@httpd.apache.org>
> Sent: Sunday, March 26, 2006 8:17 PM
> Subject: Re: [users@httpd] is there possibility to make apache be single
> thread in SunOS
> 
> 
> > On 3/26/06, Meir Yanovich <me...@fts-soft.com> wrote:
> >
> > > in the configuration of apache 1.3.27 , is there any possibility to make
> > > apache act like single thread process?
> >
> > Apache 1.3 is always single-threaded on unix, so your question doesn't
> > make much sense.
> >
> > Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] is there possibility to make apache be single thread in SunOS

Posted by Meir Yanovich <um...@netvision.net.il>.
Really ?
now this is surprise .. i was sure its single thread in windows and multi
thread in unix machine
so how does it deal with forking the server children ? how does it deal with
multiple requests? and such ..
Thanks
----- Original Message -----
From: "Joshua Slive" <jo...@slive.ca>
To: <us...@httpd.apache.org>
Sent: Sunday, March 26, 2006 8:17 PM
Subject: Re: [users@httpd] is there possibility to make apache be single
thread in SunOS


> On 3/26/06, Meir Yanovich <me...@fts-soft.com> wrote:
>
> > in the configuration of apache 1.3.27 , is there any possibility to make
> > apache act like single thread process?
>
> Apache 1.3 is always single-threaded on unix, so your question doesn't
> make much sense.
>
> Joshua.
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>
>
> --
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.1.385 / Virus Database: 268.3.0/290 - Release Date: 23/03/2006
>
>


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] is there possibility to make apache be single thread in SunOS

Posted by Joshua Slive <jo...@slive.ca>.
On 3/26/06, Meir Yanovich <me...@fts-soft.com> wrote:

> in the configuration of apache 1.3.27 , is there any possibility to make
> apache act like single thread process?

Apache 1.3 is always single-threaded on unix, so your question doesn't
make much sense.

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org