Hi Christoph,
The libs libdl.so.2 and libc.so.6 are two common system libraries. You may not actually have them installed in the new version of SUSE.
Verify this with:
find / -name 'libc.so.6' and: find / -name 'libdl.so.2'
If they are installed, just either modify /etc/ld.so.conf or the env. variable LD_LIBRARY_PATH to reflect the paths that get printed from above.
If not, you can fix it two ways:
#1 The dirty way: (not guaranteed to work all the time, but it's quick!)
Copy your current libc.so to /usr/lib/libc.so.6 Copy your current libdl.so.2 to /usr/lib/libdl.so.2
This is dirty, but it works in a pitch.
#2 The right way:
Install the proper versions of libc.so and libdl.
cheers, JLS
+-------------------------------------------------------------------+
| Liked my Post? Then you're sure to love my book on MaxDB. | | You can signup to be notified when it's available at: | | http://www.johnsingleton.com/maxdb/signup.html | | Or you can check out my semi-regular column on MaxDB at: | | http://www.johnsingleton.com/maxdb/ +-------------------------------------------------------------------+
Christoph Weser wrote:
Hello!
I have the following problem:
When creating a database, I got the error:
create database... ./dbmcli: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
create testdb failed: ./dbmcli: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
Everyting works fine with SuSE 9.1!
Any help? Do I have to set a special environment variable or something like this?
Thanx in advance!
Chris
-- MaxDB Discussion Mailing List For list archives: http://lists.mysql.com/maxdb To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
