I was having an unresolvable issue with MYSQL where the root password would reset to null every 5 minutes. In my quest to remove anything sql related I accidentally removed anything with the letters sql in the file name. ls -la On a working server:
lrwxrwxrwx 1 root root 19 Jul 11 02:23 libsqlite3.so.0 -> libsqlite3.so.0.8.6
-rwxr-xr-x 1 root root 385180 Jan 9 2007 libsqlite3.so.0.8.6
On my server that isn't working:
lrwxrwxrwx 1 root root 19 Jul 11 09:45 libsqlite3.so.0 -> libsqlite3.so.0.8.6*
-rwxr-xr-x 1 root root 385180 Jul 11 11:44 libsqlite3.so.0.8.6*
I have copied the files that yum complains about from the new server that I have to the old one. This is what I get when trying to run yum update:
root@ns1 [/usr/lib]# yum update
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
libsqlite3.so.0: cannot open shared object file: No such file or directory
Please install a package which provides this module, or
verify that the module is installed correctly.
It's possible that the above module doesn't match the
current version of Python, which is:
2.4.3 (#1, Jan 21 2009, 01:11:33)
[GCC 4.1.2 20071124 (Red Hat 4.1.2-42)]
If you cannot solve this problem yourself, please go to
the yum faq at:
http://wiki.linux.duke.edu/YumFaq
root@ns1 [/usr/lib]#
Python versions are identical on both servers. Any Ideas?
I would like to not have to reinstall this server.
Thanks,
Steve