|
64 Bit Centos 5 Linux Sunucuda PHPKurulumu Sırasındaki 'configure: error: Cannot find libmysqlclient under /usr.' hatası
2009-07-17 16:40:32
64 Bit Linux sunucu üzerinde kaynak koddan PHP kurulumu sırasında aşağıdaki hatayı alabilirsiniz :
checking for MING support... no checking for mSQL support... no checking for MSSQL support via FreeTDS... no checking for MySQL support... yes checking for specified location of the MySQL UNIX socket... no checking for MySQL UNIX socket location... /var/lib/mysql/mysql.sock configure: error: Cannot find libmysqlclient under /usr. Note that the MySQL client library is not bundled anymore!
Bu hata mysql lib dosyalarının dogru yerini göstermediğinden kaynaklanmaktadır. Hatayı gidermek için aşağıdaki komutlarla sembolik link olusturabilirsiniz.
ln -s /usr/lib64/libmysqlclient.so /usr/lib/libmysqlclient.so ln -s /usr/lib64/libmysqlclient.so /usr/local/libmysqlclient.so
|