Ad Widget

Collapse

how to find what libraries are compiled to zabbix

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Audrius13
    Junior Member
    • Jun 2016
    • 3

    #1

    how to find what libraries are compiled to zabbix

    Hi,

    I have zabbix proxy and want to know if libcurl library was included when it was compiled. Is there any way to know it?
  • zabx_ks
    Member
    • May 2016
    • 48

    #2
    Originally posted by Audrius13
    Hi,

    I have zabbix proxy and want to know if libcurl library was included when it was compiled. Is there any way to know it?
    Hi Audrius,

    Depends on OS, but you can check with simple some commands:

    Code:
    ldconfig -p | grep libc
    or
    Code:
    rpm -qa | grep curl
    zabx_ks

    Comment

    Working...