Ad Widget

Collapse

Starting over with zabbix 1.8

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mrmurdock
    Member
    • Aug 2009
    • 85

    #1

    Starting over with zabbix 1.8

    > Heres the skinny, I can configure zabbix 1.8 with the following and make and make install with no error. When I launch the frontend gui and start the pre-check, it errors out even though the errors should not be there.

    >./configure --enable-server --with-oracle --enable-agent --with-net-snmp --with-libcurl
    >I do have my $ORACLE_HOME set and it does find the OCI portion for oracle.

    >My /etc/php.ini does have the 16M un-commented out, and the 8M size un->commented out, it complains and marks it as failed.

    zabbix-slc:>cat /etc/php.ini | grep 16M
    memory_limit = 16M ; Maximum amount of memory a script may consume
    zabbix-slc:>cat /etc/php.ini | grep 8M
    post_max_size = 8M

    >Also, it fails on the php-MB string support and php-MB overload (?) eventhough its installed.

    zabbix-slc:>rpm -i php-mbstring-5.1.6-5.el5.i386.rpm
    warning: php-mbstring-5.1.6-5.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
    package php-mbstring-5.1.6-5.el5 is already installed

    >I was running 1.6.7 just fine. I did a rm -rf /home/zabbix/public_html/* and copied over the new 1.8 frontends/php/ directory structures and files.

    >I have rebooted, but it does not seem to want to read the /etc/php.ini file or parse the package catalog (not sure how zabbix determines if the pre-requisites are met).

    >The online manual has issues....for some reason the it shows the ./configure examples in a scoll up and down window...But nothing new that I was able to read. Manual still references the sqlora8 library stuff..
  • Firm
    Senior Member
    • Dec 2009
    • 342

    #2
    Create file /home/zabbix/public_html/check.php with the content:

    <?php phpinfo(); ?>

    And check if php really reads /etc/php.ini

    Comment

    Working...