On Thu, 2008-12-11 at 08:45 -0800, Taylor Dondich wrote: > Thanks for the notes Mattias. If anyone would be willing to write > quickstart guides for using Lilac with popular distributions, that > would be fantastic, and I'd post the documentation on the website, > along with credit. > > Taylor > > On Thu, Dec 11, 2008 at 6:52 AM, Mattias Ryrlén <[email protected]> > wrote: > > On Thu, 2008-12-11 at 10:10 +0000, Randal, Phil wrote: > >> Shame it requires PHP 5.2. > >> > >> Any chance of re-engineering it so it works out of the box with a > >> standard RedHat / CentOS 5.2 install? > > yum install php-devel php-pear > > pear install json > > > > vi /etc/php.ini > > change 'memmory_limit' to -1 or > 64M > > add 'extension=json.so' > > > > service httpd restart
Since CentOS has php 5.1.6 it won't work with Lilac to get it to work you have to install newer version of php (as mention before) Long version: http://bluhaloit.wordpress.com/2008/03/13/installing-php-52x-on-redhat-es5-centos-5-etc/ short version: wget http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-2.noarch.rpm wget http://rpms.famillecollet.com/el5.i386/remi-release-5-4.el5.remi.noarch.rpm rpm -Uvh remi-release-5*.rpm epel-release-5*.rpm yum --enablerepo=remi update php you will need to remove the extension=json.so from your /etc/php.ini if you added it. service httpd restart php -v PHP 5.2.6 (cli) (built: May 7 2008 00:50:43) Copyright (c) 1997-2008 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2008 Zend Technologies > > > > > > -- > > Vänliga hälsningar / Best Regards > > Mattias Ryrlén > > > > __________________________ > > op5 AB > > Första Långgatan 19 > > SE-413 27 Göteborg > > Mobil: +46 735-17 70 99 > > Support: +46 31-774 09 24 > > www.op5.com > > > > > > ------------------------------------------------------------------------------ > > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. > > The future of the web can't happen without you. Join us at MIX09 to help > > pave the way to the Next Web now. Learn more and register at > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > > _______________________________________________ > > Nagios-users mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > -- Vänliga hälsningar / Best Regards Mattias Ryrlén __________________________ op5 AB Första Långgatan 19 SE-413 27 Göteborg Mobil: +46 735-17 70 99 Support: +46 31-774 09 24 www.op5.com ------------------------------------------------------------------------------ SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't happen without you. Join us at MIX09 to help pave the way to the Next Web now. Learn more and register at http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ _______________________________________________ Nagios-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null
