SA-MP Forums Archive
libmysqlclient_r.so.16 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: libmysqlclient_r.so.16 (/showthread.php?tid=649566)



libmysqlclient_r.so.16 - AndrewRussett - 11.02.2018

where can I download the libmysqlclient_r.so.16 file for my server in a linux vps? I use the r38.

[18:35:32] Loading plugin: mysql.so
[18:35:32] Failed (libmysqlclient_r.so.16: cannot open shared object file: No such file or directory)


Re: libmysqlclient_r.so.16 - iKarim - 11.02.2018

Use the mysql_static.so version of the plugin.

Quote:

Q: I can't install the required libmysqlclient library on my Linux distribution. What do I do now?
A: Use the mysql_static.so plugin file. It's statically linked to the libmysqlclient library.

Or install mariadb/mysql-client package with apt/yum:

Ubuntu/Debian 32 bit:

Код:
sudo apt-get install mysql-client
Ubuntu/Debian 64 bit: You will need to add the i386 architecture first (G00gle)

Код:
sudo apt-get install mysql-client:i386



Re: libmysqlclient_r.so.16 - AndrewRussett - 11.02.2018

Quote:
Originally Posted by iKarim
Посмотреть сообщение
Use the mysql_static.so version of the plugin.



Or install mariadb/mysql-client package with apt/yum:

Ubuntu/Debian 32 bit:

Код:
sudo apt-get install mysql-client
Ubuntu/Debian 64 bit: You will need to add the i386 architecture first (G00gle)

Код:
sudo apt-get install mysql-client:i386
thanks! rep