Ad Widget

Collapse

help installing zabbix

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • davet47
    Junior Member
    • Apr 2009
    • 7

    #1

    help installing zabbix

    I'm trying to install zabbix on fedora 10, and when I enter the following command:

    ./configure --enable-server --with-mysql --with-net-snmp --with-libcurl

    I get an error that says:

    checking for getopt_long... yes
    checking for mysql_config... /usr/bin/mysql_config
    checking for main in -lmysqlclient ... no
    configure: error: Not found mysqlclient library

    I have the mysql client library installed but it's not finding it. I'm new to linux, and trying to learn so any help would be great.

    Thanks!
  • caarts
    Member
    Zabbix Certified Specialist
    • Aug 2008
    • 37

    #2
    Try adding the path during configure

    --with-mysql=/usr/lib/mysql

    Installing mysql-devel might do the trick too
    Last edited by caarts; 23-04-2009, 10:54.

    Comment

    • davet47
      Junior Member
      • Apr 2009
      • 7

      #3
      I was missing the mysql-devel package. Installed that and it worked beautifully. Thanks for the tip!

      Originally posted by caarts
      Try adding the path during configure

      --with-mysql=/usr/lib/mysql

      Installing mysql-devel might do the trick too

      Comment

      Working...