<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>NewPush &#187; RHEL 5</title> <atom:link href="http://newpush.com/tag/rhel-5/feed/" rel="self" type="application/rss+xml" /><link>http://newpush.com</link> <description>Server Hosting, Data Warehouse Hosting, Collaboration</description> <lastBuildDate>Wed, 23 May 2012 03:47:03 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Cacti Install on RHEL 5 or CentOS 5</title><link>http://newpush.com/2010/01/cacti-install-on-rhel-5-or-centos-5/</link> <comments>http://newpush.com/2010/01/cacti-install-on-rhel-5-or-centos-5/#comments</comments> <pubDate>Fri, 22 Jan 2010 19:36:48 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[Cacti]]></category> <category><![CDATA[CentOS]]></category> <category><![CDATA[RHEL 5]]></category><guid isPermaLink="false">http://www.wdream.com/?p=459</guid> <description><![CDATA[Introduction Cacti is a great tool to graph performance of the various hardware components of a network. With the use of the yum repository manager, it is very simple to install on Red Hat Enterprise Linux 5 or CentOS 5. &#8230; <a href="http://newpush.com/2010/01/cacti-install-on-rhel-5-or-centos-5/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h4>Introduction</h4><p><a href="http://www.cacti.net/">Cacti</a> is a great tool to graph performance of the various hardware components of a network.  With the use of the <code>yum</code> repository manager, it is very simple to install on <a href="http://www.redhat.com/">Red Hat Enterprise Linux 5</a> or <a href="http://centos.org/">CentOS 5</a>.</p><h4>Install steps</h4><ul><li>First make sure that you have the <code><a href="http://dag.wieers.com/rpm/">dag</a></code> repository configured in <code>yum</code>.  Edit or create the file <code>/etc/yum.repos.d/dag.repo</code>:<code><br /> [dag]<br /> name=Dag RPM Repository for Red Hat Enterprise Linux<br /> baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag<br /> gpgcheck=0<br /> enabled=1<br /> protect=0</code></li><li>Now install the required packages:<code><br /> sudo yum install net-snmp mysql mysql-server cacti</code></li><li>Edit the /etc/httpd/conf.d/cacti.conf file to allow access to cacti as needed.</li><li>Make sure Apache and MySQL are started and set to start automatically:<code><br /> sudo service mysqld start<br /> sudo service httpd start<br /> sudo chkconfig –level 345 mysqld on<br /> sudo chkconfig –level 345 httpd on</code></li><li>Set up the cacti database in <a href="http://www.mysql.com/">MySQL</a>:<code><br /> sudo mysqladmin –user=root create cacti<br /> cd /var/www/cacti<br /> sudo mysql cacti < cacti.sql<br /> sudo mysql --user=root mysql<br /> mysql> GRANT ALL ON cacti.* TO cactiuser@localhost IDENTIFIED BY ‘cactiuser’;<br /> mysql> SET PASSWORD FOR cactiuser = PASSWORD('my_super_secret_cacti_password');<br /> mysql> flush privileges;<br /> mysql> exit<br /> sudo mysqladmin –user=root password "my_super_secret_root_password"</code></li><li>Setup the cacti poll schedule in /etc/crontab:<code><br /> */5 * * * * cacti php /var/www/cacti/poller.php > /dev/null 2>&#038;1</code></li><li>Run the cacti installer in the browser:<code><br /> http://your.server.com/cacti/index.php</code> provide the user and password for the database, you can accept all defaults and just click next</li><li>That is it, you are good to go.</li></ul><h4>References</h4><p><a href="http://blogs.kranich.org/karl/2006/09/14/installing-cacti-on-centos-with-yum/">Installing Cacti on CentOS with yum</a></p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/01/cacti-install-on-rhel-5-or-centos-5/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>libstdc++.so.5 is needed by xxx</title><link>http://newpush.com/2009/01/libstdcso5-is-needed-by-xxx/</link> <comments>http://newpush.com/2009/01/libstdcso5-is-needed-by-xxx/#comments</comments> <pubDate>Wed, 07 Jan 2009 13:55:18 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[CentOS 5]]></category> <category><![CDATA[red hat 5]]></category> <category><![CDATA[RHEL 5]]></category> <category><![CDATA[yum]]></category><guid isPermaLink="false">http://www.wdream.com/archives/30</guid> <description><![CDATA[Trying to install the IBM JDK 64bit I came across the following error: libstdc++.so.5 is needed by ibm-java2-x86_64-sdk-5.0-8a.0.x86_64 It turns out that yum has a neat feature to show what package provides a given component: yum whatprovides libstdc++.so.5 gave the &#8230; <a href="http://newpush.com/2009/01/libstdcso5-is-needed-by-xxx/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Trying to install the IBM JDK 64bit I came across the following error:<pre>libstdc++.so.5 is needed by ibm-java2-x86_64-sdk-5.0-8a.0.x86_64</pre><p>It turns out that yum has a neat feature to show what package provides a given component:<pre>yum whatprovides libstdc++.so.5</pre><p>gave the answer, and<pre>yum install compat-libstdc++-33.i386</pre><p>took care of installingthe missing package.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2009/01/libstdcso5-is-needed-by-xxx/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Public key for xxx.rpm is not installed</title><link>http://newpush.com/2009/01/public-key-for-xxxrpm-is-not-installed/</link> <comments>http://newpush.com/2009/01/public-key-for-xxxrpm-is-not-installed/#comments</comments> <pubDate>Wed, 07 Jan 2009 12:56:02 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[CentOS 5]]></category> <category><![CDATA[red hat]]></category> <category><![CDATA[RHEL 5]]></category> <category><![CDATA[rpm]]></category> <category><![CDATA[yum]]></category><guid isPermaLink="false">http://www.wdream.com/archives/29</guid> <description><![CDATA[After an upgrade to CentOS 5 / RHEL 5 we got the following error: Downloading Packages: warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID e8562897 Public key for openldap-2.3.27-8.el5_2.4.x86_64.rpm is not installed It turns out that the key needs &#8230; <a href="http://newpush.com/2009/01/public-key-for-xxxrpm-is-not-installed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>After an upgrade to CentOS 5 / RHEL 5 we got the following error:</p><pre>Downloading Packages:
warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID e8562897
Public key for openldap-2.3.27-8.el5_2.4.x86_64.rpm is not installed
</pre><p>It turns out that the key needs to be loaded and yum has not tried to load the key properly.  The following manual key loading solved the issue:</p><pre>rpm --import http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
</pre>]]></content:encoded> <wfw:commentRss>http://newpush.com/2009/01/public-key-for-xxxrpm-is-not-installed/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: newpush.com @ 2012-05-23 05:32:17 by W3 Total Cache -->
