NetXMS Support Forum

English Support => General Support => Topic started by: hamad on December 19, 2011, 10:09:03 AM

Title: configure: error: libmysqlclient is required for MySQL support
Post by: hamad on December 19, 2011, 10:09:03 AM
Hello
I get the following error when I try to install netxms-1.1.7 on CentOS

./configure  --with-server --with-mysql --with-agent   

checking for mysql_init in -lmysqlclient... no
configure: error: libmysqlclient is requred for MySQL support

configure:20702: checking for mysql_init in -lmysqlclient
configure:20727: gcc -o conftest -g -O2  -D_THREAD_SAFE -I/usr/local/mysql/include -I/usr/include/mysql -I/usr/mysql/include -I/usr/local/include/mysql -I/us
r/local/mysql/include/mysql -I/usr/mysql/include/mysql -D_GNU_SOURCE -Wno-unused-result -I/usr/local/include -lm -L/usr/local/mysql/lib -L/usr/lib64/mysql -L
/usr/lib/mysql -L/usr/mysql/lib -L/usr/local/lib/mysql -L/usr/local/mysql/lib/mysql -L/usr/mysql/lib/mysql -L/usr/local/lib conftest.c -lmysqlclient  -lz -ld
l  -lpthread >&5
/usr/bin/ld: cannot find -lmysqlclient


Help Please
Title: Re: configure: error: libmysqlclient is required for MySQL support
Post by: Victor Kirhenshtein on December 19, 2011, 11:26:22 AM
Hi!

You have to install mysql client library package. For CentOS 5 it probably would be mysql-devel.

Best regards,
Victor
Title: Re: configure: error: libmysqlclient is required for MySQL support
Post by: testos on December 19, 2011, 11:33:22 AM
To check advised by Victor, you can run the following command:

# rpm -qa | grep -i mysql


And if not, you can install it with:

# yum install mysql-devel


Best regards.
Title: Re: configure: error: libmysqlclient is required for MySQL support
Post by: hamad on December 19, 2011, 11:51:29 AM
It worked :)

Thanks for the support