Ad Widget

Collapse

php5-mysqlnd as a dependency for deb package

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • m0ps
    Junior Member
    • Jul 2011
    • 11

    #1

    php5-mysqlnd as a dependency for deb package

    Hi!
    I don't know if this a right place, but I want to ask developers, that maintain apt repo to add php-mysqlnd package is an alternative dependency (alternative for php5-mysql) for zabbix-frontend-php package. Reason of it - that I use mysql 5.6 but php5-mysql in ubuntu repo compiled with 5.5 and >I get warning of version mismatch.

    Thanks in advance, Maxim.
  • Pada
    Senior Member
    • Apr 2012
    • 236

    #2
    zbx_newb had the same issue with the zabbix server with MySQL: https://www.zabbix.com/forum/showthread.php?t=41991

    So when you use apt-get to install the frontend, prepend the "--no-install-recommends" argument to ignore the dependencies.
    Just take note that you may need to manually install some of the other dependencies then.

    Comment

    • m0ps
      Junior Member
      • Jul 2011
      • 11

      #3
      Originally posted by Pada
      zbx_newb had the same issue with the zabbix server with MySQL: https://www.zabbix.com/forum/showthread.php?t=41991

      So when you use apt-get to install the frontend, prepend the "--no-install-recommends" argument to ignore the dependencies.
      Just take note that you may need to manually install some of the other dependencies then.
      Thx fro your reply Pada. I know about "--no-install-recommends", but only thing that need to be updated in package is new Depends string:
      OLD:
      Code:
      Depends: debconf (>= 0.5) | debconf-2.0, apache2 | httpd, php5, php5-mysql | php5-pgsql, php5-gd, ucf, dbconfig-common (>= 1.8.19), ttf-dejavu-core | ttf-japanese-gothic
      NEW:
      Code:
      Depends: debconf (>= 0.5) | debconf-2.0, apache2 | httpd, php5, php5-mysql | php5-mysqlnd | php5-pgsql, php5-gd, ucf, dbconfig-common (>= 1.8.19), ttf-dejavu-core | ttf-japanese-gothic

      Comment

      • bbrendon
        Senior Member
        • Sep 2005
        • 870

        #4
        Unofficial Zabbix Expert
        Blog, Corporate Site

        Comment

        Working...