[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Webalizer - Webazolver Errors - Continued
- Subject: Re: [cobalt-users] Webalizer - Webazolver Errors - Continued
- From: "John D. Gorena" <Support@xxxxxxxxxxxxxxxxxxx>
- Date: Sun May 5 09:46:07 2002
- Organization: http://www.JMG-Enterprises.com
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
For the list to fix two types of Errors:
1) For Errors:
webalizer: error in loading shared libraries: libpng.so.2: cannot open
shared object file: No such file or directory
AND
webazolver: error in loading shared libraries: libpng.so.2: cannot open
shared object file: No such file or directory
TO FIX THIS:
I located libpng.so.3 and I created a link to it for the libpng.so.2 as
follows:
Telnet or ssh to the server as admin and su - to root.
Change directory to /usr/bin
Type these steps:
cd /usr/bin
ln -s libpng.so.3 libpng.so.2
2)For the Error:
Read file error: ./resolv.conf.5 No such file or directory
Looking in /usr/man/man5 I no resolver.5
lrwxrwxrwx 1 root root 10 resolv.conf.5 -> resolver.5
lrwxrwxrwx 1 root root 13 resolv.conf.5.gz -> resolver.5.gz
-r--r--r-- 1 root root 2983 resolver.5.gz
TO FIX THIS:
Telnet or ssh to the server as admin and su - to root.
Change directory to /usr/man/man5
Type these steps:
cd /usr/man/man5
cp resolver.5.gz resolver.5.gz.bak
gunzip resolver.5.gz
mv resolver.5.gz.bak resolver.5.gz
I hope that this helps.
John