You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Param <kp...@yahoo.com> on 2003/02/15 17:29:35 UTC

[users@httpd] Need help : libdb-3.1.so: open failed

Hi all,

Please help me to resolve following issue while
starting up my apache webserver:

I am trying to install httpd-2.0.44 on a Solaris 9
system.

I did following procedures:

1) Downloaded httpd-2.0.44.tar.gz from
http://httpd.apache.org/download.cgi to 

2) ./configure --prefix=/export/apache

3) make 

4) make install

5)/export/apache/bin/apachectl start

Iam getting following error:

# /export/apache/bin/apachectl start
ld.so.1: /export/apache/bin/httpd: fatal:
libdb-3.1.so: open failed: No such file or directory
Killed
# 


Am i doing anything wrong  ? Please help me.

Thanks a lot,
_param


__________________________________________________
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com

---------------------------------------------------------------------
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] Need help : libdb-3.1.so: open failed

Posted by Param <kp...@yahoo.com>.
Hi Tim,

Thanks a lot :-) It worked after i did what you have
said.

I found libdb-3.1.so under /opt/sfw/bin and defined
LD_LIBRARY_PATH=/opt/sfw/bin;export LD_LIBRARY_PATH

After that i tried to start my webserver, but got
following error:

[Sat Feb 15 09:12:49 2003] [alert] (22)Invalid
argument: setgid: unable to set group id to Group
4294967295

----

I fixed this problem by creating a new user  and 
defined that user/group in httpd.conf file:

User NEWUSER
Group NEWUSERGROUP

--------


Thanks a lot for your prompt help :-)

-Param







--- Tim Wort <ti...@pobox.com> wrote:
> On Sat, 15 Feb 2003, Param wrote:
> 
> 
> I would run a find command to determine if
> libdb-3.1.so is on the system.
> I don't have it on my Solaris 8 box, I beleive that
> it is the Berkely DB
> package. If you don't have it, I would check
> www.sunfreeware.com or google
> to find and install.
> 
> Once you find or install it I would define and
> export a LD_LIBRARY_PATH in
> the start up script that point to the lib dir it is
> in. There are other
> ways to define the lib files but I use
> LD_LIBRARY_PATH.
> 
> Others may have more information.
> 
> 
> HTH
> 
> 
> > Hi all,
> >
> > Please help me to resolve following issue while
> > starting up my apache webserver:
> >
> > I am trying to install httpd-2.0.44 on a Solaris 9
> > system.
> >
> > I did following procedures:
> >
> > 1) Downloaded httpd-2.0.44.tar.gz from
> > http://httpd.apache.org/download.cgi to
> >
> > 2) ./configure --prefix=/export/apache
> >
> > 3) make
> >
> > 4) make install
> >
> > 5)/export/apache/bin/apachectl start
> >
> > Iam getting following error:
> >
> > # /export/apache/bin/apachectl start
> > ld.so.1: /export/apache/bin/httpd: fatal:
> > libdb-3.1.so: open failed: No such file or
> directory
> > Killed
> > #
> >
> >
> > Am i doing anything wrong  ? Please help me.
> >
> > Thanks a lot,
> > _param
> >
> >
> > __________________________________________________
> > Do you Yahoo!?
> > Yahoo! Shopping - Send Flowers for Valentine's Day
> > http://shopping.yahoo.com
> >
> >
>
---------------------------------------------------------------------
> > 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
> >
> >
> >
> 
> =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> =        Inkling Research Inc.      =
> =    Tim.Wort@InklingResearch.com   =
> =        Tim.Wort@pobox.com         =
> =                                   =
> =        Eschew Obfuscation         =
> =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> 
> 
> 
> 
>
---------------------------------------------------------------------
> 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
> 


__________________________________________________
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com

---------------------------------------------------------------------
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] Need help : libdb-3.1.so: open failed

Posted by Tim Wort <ti...@pobox.com>.
On Sat, 15 Feb 2003, Param wrote:


I would run a find command to determine if libdb-3.1.so is on the system.
I don't have it on my Solaris 8 box, I beleive that it is the Berkely DB
package. If you don't have it, I would check www.sunfreeware.com or google
to find and install.

Once you find or install it I would define and export a LD_LIBRARY_PATH in
the start up script that point to the lib dir it is in. There are other
ways to define the lib files but I use LD_LIBRARY_PATH.

Others may have more information.


HTH


> Hi all,
>
> Please help me to resolve following issue while
> starting up my apache webserver:
>
> I am trying to install httpd-2.0.44 on a Solaris 9
> system.
>
> I did following procedures:
>
> 1) Downloaded httpd-2.0.44.tar.gz from
> http://httpd.apache.org/download.cgi to
>
> 2) ./configure --prefix=/export/apache
>
> 3) make
>
> 4) make install
>
> 5)/export/apache/bin/apachectl start
>
> Iam getting following error:
>
> # /export/apache/bin/apachectl start
> ld.so.1: /export/apache/bin/httpd: fatal:
> libdb-3.1.so: open failed: No such file or directory
> Killed
> #
>
>
> Am i doing anything wrong  ? Please help me.
>
> Thanks a lot,
> _param
>
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Shopping - Send Flowers for Valentine's Day
> http://shopping.yahoo.com
>
> ---------------------------------------------------------------------
> 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
>
>
>

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=        Inkling Research Inc.      =
=    Tim.Wort@InklingResearch.com   =
=        Tim.Wort@pobox.com         =
=                                   =
=        Eschew Obfuscation         =
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=




---------------------------------------------------------------------
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