mysql-proxy: error while loading shared libraries: libmysql-proxy.so.0 or libmysql-chassis.so
Getting the below errors:
$ ./agent/sbin/mysql-proxy -V mysql-proxy: error while loading shared libraries: libmysql-chassis.so.0: cannot open shared object file: No such file or directory mysql-proxy: error while loading shared libraries: libmysql-proxy.so.0: cannot open shared object file: No such file or directory
The error occurred because the mysql-proxy can’t find the library files needed for it. So copy the needed files to necessary directory.
$ sudo cp /usr/local/lib/libmysql-* /usr/lib/i486-linux-gnu/
$ mysql-proxy -V
mysql-proxy 0.7.2
glib2: 2.20.1
libevent: 1.3e
lua: Lua 5.1.4
LUA_PATH: /usr/local/lib/mysql-proxy/lua/?.lua
LUA_CPATH: /usr/local/lib/mysql-proxy/lua/?.so
== plugins ==
admin: 0.7.0
proxy: 0.7.0
Posted by Shahid
One response to "mysql-proxy: error while loading shared libraries: libmysql-proxy.so.0 or libmysql-chassis.so"
10:40 on February 10th, 2010
What a great resource!