• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

TFS 0.X libmysqlclient.so.18 error tfs 0.4

vexler222

Active Member
Joined
Apr 22, 2012
Messages
714
Solutions
15
Reaction score
46
Hi, i have problem

Code:
./theforgottenserver: error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or directory

TFS 0.4
Debian 9

i dont have libmysqlclient-dev but i installed default-libmysqlclient-dev.
 
debian 9+ uses mariadb not mysql
here have some copy pasta

Replace libmysqlclient-dev with libmariadbclient-dev on Debian 9 and above.

MariaDB: Since MariaDB is a fork of MySQL, the database structure and indexes of MariaDB are the same as MySQL.
This allows you to switch from MySQL to MariaDB without having to alter your applications since the data and data structures will not need to change.
 
C++:
wget http://ftp.br.debian.org/debian/pool/main/m/mysql-5.5/libmysqlclient18_5.5.55-0+deb8u1_amd64.deb
dpkg -i libmysqlclient18_5.5.55-0+deb8u1_amd64.deb
Source:
Code:
Debian 9 (Stretch) libmysqlclient.so.18 cannot open shared object file
https://github.com/zammad/zammad/issues/1295
 
C++:
wget http://ftp.br.debian.org/debian/pool/main/m/mysql-5.5/libmysqlclient18_5.5.55-0+deb8u1_amd64.deb
dpkg -i libmysqlclient18_5.5.55-0+deb8u1_amd64.deb
Source:
Code:
Debian 9 (Stretch) libmysqlclient.so.18 cannot open shared object file
https://github.com/zammad/zammad/issues/1295
Do not follow up this solution. You should work with mariadb.
 
@vexler222 If anyone of these recommendations worked for you, please acknowledge the post so that someone else with the same or similar issue will know what to do, don't just leave us hanging.
 
C++:
wget http://ftp.br.debian.org/debian/pool/main/m/mysql-5.5/libmysqlclient18_5.5.55-0+deb8u1_amd64.deb
dpkg -i libmysqlclient18_5.5.55-0+deb8u1_amd64.deb
Source:
Code:
Debian 9 (Stretch) libmysqlclient.so.18 cannot open shared object file
https://github.com/zammad/zammad/issues/1295

~# wget http://ftp.br.debian.org/debian/pool/main/m/mysql-5.5/libmysqlclient18_5.5.55-0+deb8u1_amd64.deb
--2018-06-16 16:26:56-- http://ftp.br.debian.org/debian/pool/main/m/mysql-5.5/libmysqlclient18_5.5.55-0+deb8u1_amd64.deb
Resolving ftp.br.debian.org (ftp.br.debian.org)... 200.236.31.3, 2801:82:80ff:8000::4
Connecting to ftp.br.debian.org (ftp.br.debian.org)|200.236.31.3|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2018-06-16 16:26:56 ERROR 404: Not Found.
 
Back
Top