![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| help me........... my apache can't start | yatmianto | SUN Solaris | 5 | 04-13-2008 08:19 PM |
| Start Stop Apache | MILLERJ62 | AIX | 2 | 12-27-2005 02:40 PM |
| Apache with SSL problem | b_manu78 | SUN Solaris | 2 | 03-23-2005 03:13 PM |
| Apache start (Was in:how can i?) [Split by LF] | donohd | UNIX for Dummies Questions & Answers | 1 | 03-19-2002 02:54 AM |
| Apache wont start | Alpha_Harblo | UNIX for Dummies Questions & Answers | 4 | 01-02-2002 06:26 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Apache start problem
Hi,
I have installed apache webserver on my solaris 10(x86). When I tried to start the server it gives following error, ld.so.1: /usr/local/apache2/bin/httpd: fatal: libssl.so.0.9.8: open failed: No such file or directory Killedld.so.1:: Too many arguments Can somebody please guide me how should I solve this problem. Thanks. Mahesh |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Does libssl.so.0.9.8 definitely exist on your system?
find / -name "libssl.so.0.9.8" -print If it doesn't exist, then there's your problem, install the appropriate package. If it does exist, chances are it's in a non standard path (maybe /usr/local/ssl/lib) Run the following (assuming you found the library in /usr/local/ssl/lib - change as appropriate) LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/ssl/lib export LD_LIBRARY_PATH Then try to start apache again. If that works, read man crle for details on how to make this permanent. Cheers ZB |
||||
| Google The UNIX and Linux Forums |