13.01.2014, 00:13
Let me clarify here. OpenSSL plugins won't get installed when you install MySQL packages because it is a security package, not some database/miscellaneous plugin.
Firstly, I make sure to cd to plugins folder and do this, "ldd mysql_debian.so" (without quotes). You should get a list of directories in which what plugins does the MySQL plugin use. In Debian, most (if not, all) of the plugins being used is in the directory /usr/lib.
Try this -:
sudo apt-get install libssl0.9.8
If it doesn't work, here's the .deb file so you can download and install it. Do after download,
sudo dpkg -i libssl0.9.8_0.9.8o-4squeeze14_i386.deb
Firstly, I make sure to cd to plugins folder and do this, "ldd mysql_debian.so" (without quotes). You should get a list of directories in which what plugins does the MySQL plugin use. In Debian, most (if not, all) of the plugins being used is in the directory /usr/lib.
Try this -:
sudo apt-get install libssl0.9.8
If it doesn't work, here's the .deb file so you can download and install it. Do after download,
sudo dpkg -i libssl0.9.8_0.9.8o-4squeeze14_i386.deb

