<?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>www.linuxismybff.com</title>
	<atom:link href="http://www.linuxismybff.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxismybff.com</link>
	<description></description>
	<lastBuildDate>Mon, 04 Oct 2010 22:27:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>mysql basic replication setup</title>
		<link>http://www.linuxismybff.com/howto/mysql/mysql-basic-replication-setup/</link>
		<comments>http://www.linuxismybff.com/howto/mysql/mysql-basic-replication-setup/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 02:48:25 +0000</pubDate>
		<dc:creator>trunty</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=35</guid>
		<description><![CDATA[mysql replication is fairly common and the benefits go without saying.  Below is what I have found to be the best process for configuring replication on two vanilla mysql devices. Install mysql on both nodes. yum install mysql-server -y On both nodes confirm that mysql is started and listening for remote connection, not bound to [...]]]></description>
			<content:encoded><![CDATA[<p>mysql replication is fairly common and the benefits go without saying.  Below is what I have found to be the best process for configuring replication on two vanilla mysql devices.</p>
<p>Install mysql on both nodes.</p>
<pre class="brush: bash; title: ;">yum install mysql-server -y</pre>
<p>On both nodes confirm that mysql is started and listening for remote connection, not bound to loopback.</p>
<pre class="brush: bash; title: ;">/etc/init.d/mysqld start
chkconfig mysqld on
netstat -ntlp | grep mysqld</pre>
<p><span id="more-35"></span></p>
<blockquote></blockquote>
<p>Add the below to '/etc/my.cnf' on the master</p>
<pre class="brush: plain; title: ;">#####Added for replication######
log-bin = /var/lib/mysqllogs/mysql-bin.log
log-bin-index = /var/lib/mysqllogs/mysql-bin.index
server-id=1
expire_logs_days=10
#####replication specific options completed#####</pre>
<p>Create this directory on the master</p>
<pre class="brush: bash; title: ;">mkdir /var/lib/mysqllogs
chown mysql:mysql /var/lib/mysqllogs</pre>
<p>Restart mysql on the master to apply net settings</p>
<pre class="brush: bash; title: ;">/etc/init.d/mysqld restart</pre>
<p>Add replication user to mysql</p>
<pre class="brush: sql; title: ;">mysql

GRANT REPLICATION SLAVE ON *.* TO 'replication'@'%' IDENTIFIED BY 'replicationpass';

flush privileges;

mysql&gt; show master status;
+------------------+----------+--------------+------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000001 |       98 |              |                  |
+------------------+----------+--------------+------------------+
1 row in set (0.00 sec)</pre>
<p>Backup master data to sync up slave</p>
<blockquote><p>mysqldump --all-databases --master-data=1 | gzip -1 &gt; /root/all.sql.gz</p></blockquote>
<p>SCP data over to the slave</p>
<blockquote><p>[root@master ~]# scp /root/all.sql.gz root@slave.linuxismybff.com:~<br />
root@slave.linuxismybff.com's password:<br />
all.sql.gz                                                                                                                         100%  133KB 132.8KB/s   00:00</p></blockquote>
<p>Configure the slaves my.cnf</p>
<blockquote><p>####Added for replication####<br />
relay-log=/var/lib/mysqllogs/slave-relay-log<br />
relay-log-index=/var/lib/mysqllogs/slave-relay-log.index<br />
read_only=1 #This is option but suggested<br />
server-id=2<br />
####End of replication options####</p></blockquote>
<p>Create this directory on the slave</p>
<blockquote><p>mkdir /var/lib/mysqllogs</p>
<p>chown mysql:mysql /var/lib/mysqllogs</p></blockquote>
<p>Restart mysql on the master to apply net settings</p>
<blockquote><p>/etc/init.d/mysqld restart</p></blockquote>
<p>Initialize replication on the slave</p>
<blockquote><p>[root@slave ~]# mysql<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 2<br />
Server version: 5.0.77 Source distribution</p>
<p>Type 'help;' or '\h' for help. Type '\c' to clear the buffer.</p>
<p>mysql&gt; stop slave;<br />
Query OK, 0 rows affected, 1 warning (0.00 sec)</p>
<p>mysql&gt; CHANGE MASTER TO MASTER_HOST='10.176.2.180', MASTER_USER='replication', MASTER_PASSWORD='replicationpass';<br />
Query OK, 0 rows affected (0.08 sec)</p></blockquote>
<p>On slave import the previous master dump.  Be aware that this will overwrite any databases that are already there.</p>
<blockquote><p>[root@slave ~]# zcat /root/all.sql.gz | mysql<br />
[root@slave ~]#</p></blockquote>
<p>Start slave</p>
<blockquote><p>[root@slave ~]# mysql<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 4<br />
Server version: 5.0.77 Source distribution</p>
<p>Type 'help;' or '\h' for help. Type '\c' to clear the buffer.</p>
<p>mysql&gt; start slave;<br />
Query OK, 0 rows affected (0.00 sec)</p>
<p>mysql&gt; show slave status \G<br />
*************************** 1. row ***************************<br />
Slave_IO_State: Waiting for master to send event<br />
Master_Host: 10.176.2.180<br />
Master_User: replication<br />
Master_Port: 3306<br />
Connect_Retry: 60<br />
Master_Log_File: mysql-bin.000001<br />
Read_Master_Log_Pos: 169<br />
Relay_Log_File: slave-relay-log.000002<br />
Relay_Log_Pos: 235<br />
Relay_Master_Log_File: mysql-bin.000001<br />
Slave_IO_Running: Yes<br />
Slave_SQL_Running: Yes<br />
Replicate_Do_DB:<br />
Replicate_Ignore_DB:<br />
Replicate_Do_Table:<br />
Replicate_Ignore_Table:<br />
Replicate_Wild_Do_Table:<br />
Replicate_Wild_Ignore_Table:<br />
Last_Errno: 0<br />
Last_Error:<br />
Skip_Counter: 0<br />
Exec_Master_Log_Pos: 169<br />
Relay_Log_Space: 235<br />
Until_Condition: None<br />
Until_Log_File:<br />
Until_Log_Pos: 0<br />
Master_SSL_Allowed: No<br />
Master_SSL_CA_File:<br />
Master_SSL_CA_Path:<br />
Master_SSL_Cert:<br />
Master_SSL_Cipher:<br />
Master_SSL_Key:<br />
Seconds_Behind_Master: 0<br />
1 row in set (0.01 sec)</p></blockquote>
<p>Confirm that it is working, on both nodes confirm that listed databases are in sync</p>
<blockquote><p>[root@master ~]# mysql -e "show databases;"<br />
+--------------------+<br />
| Database           |<br />
+--------------------+<br />
| information_schema |<br />
| mysql              |<br />
| test               |<br />
+--------------------+</p>
<p>[root@slave ~]# mysql -e "show databases;"<br />
+--------------------+<br />
| Database           |<br />
+--------------------+<br />
| information_schema |<br />
| mysql              |<br />
| test               |<br />
+--------------------+</p></blockquote>
<p>Add a database on the master to confirm this change is replicated</p>
<blockquote><p>[root@master ~]# mysql -e "create database repl;"<br />
[root@master ~]# mysql -e "show databases;"<br />
+--------------------+<br />
| Database           |<br />
+--------------------+<br />
| information_schema |<br />
| mysql              |<br />
| repl               |<br />
| test               |<br />
+--------------------+</p>
<p>[root@slave ~]# mysql -e "show databases;"<br />
+--------------------+<br />
| Database           |<br />
+--------------------+<br />
| information_schema |<br />
| mysql              |<br />
| repl               |<br />
| test               |<br />
+--------------------+</p></blockquote>
<p>Drop database on master and confirm that it is removed</p>
<blockquote><p>[root@master ~]# mysql -e "drop database repl;"<br />
[root@master ~]# mysql -e "show databases;"<br />
+--------------------+<br />
| Database           |<br />
+--------------------+<br />
| information_schema |<br />
| mysql              |<br />
| test               |<br />
+--------------------+</p>
<p>[root@slave ~]# mysql -e "show databases;"<br />
+--------------------+<br />
| Database           |<br />
+--------------------+<br />
| information_schema |<br />
| mysql              |<br />
| test               |<br />
+--------------------+</p></blockquote>
<p>All done!  It is important to note that I did not think of all of this stuff up on my own.  It is a collection of data I have collected from mysql's page, how-to-forge, and misc notes I had laying around.  Hopefully it helps someone and I know that I'll refer to it on future installations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/howto/mysql/mysql-basic-replication-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install cacti on rhel-5/centos-5</title>
		<link>http://www.linuxismybff.com/howto/cacti/install-cacti-on-rhel-5centos-5-2/</link>
		<comments>http://www.linuxismybff.com/howto/cacti/install-cacti-on-rhel-5centos-5-2/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:22:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=28</guid>
		<description><![CDATA[Hopefully this short and simple how-to will be useful to someone. There may be inaccuracies so please feel free to let me know if you see anything that needs correcting. Download all necessary packages yum install httpd php php-mysql php-snmp mysql mysql-server net-snmp net-snmp-utils rrdtool libart_lgpl -y rrd-tool can be obtained from dag (http://dag.wieers.com/rpm/packages/rrdtool/perl-rrdtool-1.2.23-1.el5.rf.x86_64.rpm and [...]]]></description>
			<content:encoded><![CDATA[<p>Hopefully this short and simple how-to will be useful to someone. There may be inaccuracies so please feel free to let me know if you see anything that needs correcting.</p>
<p>Download all necessary packages</p>
<blockquote><p>yum install httpd php php-mysql php-snmp mysql mysql-server net-snmp net-snmp-utils rrdtool libart_lgpl -y</p></blockquote>
<p>rrd-tool can be obtained from dag (http://dag.wieers.com/rpm/packages/rrdtool/perl-rrdtool-1.2.23-1.el5.rf.x86_64.rpm and http://dag.wieers.com/rpm/packages/rrdtool/rrdtool-1.2.23-1.el5.rf.x86_64.rpm for 64-bit) if it is not in your repos.</p>
<p>Verify that the required daemons are started and configured to start on boot</p>
<blockquote><p>chkconfig httpd on<br />
chkconfig snmpd on<br />
chkconfig mysqld on<br />
/etc/init.d/httpd restart<br />
/etc/init.d/mysqld restart<br />
/etc/init.d/snmpd restart</p></blockquote>
<p>Configure mysql daemon to listen only on localhost (optional)</p>
<blockquote><p>vi /etc/my.cnf<br />
add 'bind=127.0.0.1'<br />
restart mysql '/etc/init.d/mysqld restart'<br />
confirm that it is listening on localhost 'netstat -ntlp | grep :3306'</p></blockquote>
<p>Configure mysql users</p>
<blockquote><p>mysql -u root<br />
set mysql password for root user<br />
use mysql;<br />
update user set Password=PASSWORD('selectapw') where User='root';<br />
create cacti database<br />
create database cacti;<br />
create cacti user and grant them permissions to the cacti database<br />
grant all privileges on cacti.* to 'cacti'@'localhost' identified by 'selectpw' with grant option;<br />
apply all new permission changes<br />
flush privileges;<br />
or you can simply restart mysql</p></blockquote>
<p>Get and extract the cacti tarball</p>
<blockquote><p>cd /var/www/html/<br />
wget http://www.cacti.net/downloads/cacti-0.8.7d.tar.gz<br />
tar -xvzf cacti-0.8.7d.tar.gz</p></blockquote>
<p>Create symbolic link and change the owernship to apache</p>
<blockquote><p>ln -s /var/www/html/cacti-0.8.7d.tar.gz<br />
chown -R apache:apache /var/www/html/cacti</p></blockquote>
<p>Create the necessary cacti tables</p>
<blockquote><p>mysql -u root -p cacti &lt; /var/www/html/cacti/cacti.sql</p></blockquote>
<p>Create cacti user and create the poller cron</p>
<blockquote><p>useradd cacti<br />
passwd cacti<br />
crontab -e -u cacti<br />
insert `*/5 * * * * php /var/www/html/cacti/poller.php &gt; /dev/null 2&gt;&amp;1` and save `:wq`</p></blockquote>
<p>Change ownership of rra and log to cacti</p>
<blockquote><p>chown -R cacti /var/www/html/cacti/rra/ /var/www/html/cacti/log/</p></blockquote>
<p>Populate the cacti config with mysql information</p>
<blockquote><p>vi /var/www/html/cacti/include/config.php<br />
update the below accordingly<br />
$database_type = "mysql";<br />
$database_default = "cacti";<br />
$database_hostname = "127.0.0.1";<br />
$database_username = "cacti";<br />
$database_password = "createdpass";</p></blockquote>
<p>Point your web browser to `http://your-server/cacti/` and follow the on-screen instructions</p>
<blockquote><p>accept defaults<br />
when prompted the default usernamd and password is admin</p></blockquote>
<blockquote><p>Current repolist<br />
repo id              repo name                                status<br />
addons               CentOS-5 - Addons                        enabled :       0<br />
base                 CentOS-5 - Base                          enabled :   3,272<br />
centosplus           CentOS-5 - Plus                          enabled :      63<br />
contrib              CentOS-5 - Contrib                       enabled :       0<br />
epel                 Epel from fedora                         enabled :   4,970<br />
extras               CentOS-5 - Extras                        enabled :     266<br />
updates              CentOS-5 - Updates                       enabled :     25</p></blockquote>
<p>For the sake of convenience I have also included the raw output of a complete install below...</p>
<blockquote><p>[root@testme ~]# yum repolist<br />
Loaded plugins: fastestmirror<br />
Determining fastest mirrors<br />
* addons: hpc.arc.georgetown.edu<br />
* base: mirrors.cmich.edu<br />
* extras: updates.interworx.info<br />
* updates: updates.interworx.info<br />
addons                                                                                                                                                                                                                              |  951 B     00:00<br />
addons/primary                                                                                                                                                                                                                      |  204 B     00:00<br />
base                                                                                                                                                                                                                                | 2.1 kB     00:00<br />
base/primary_db                                                                                                                                                                                                                     | 2.1 MB     00:03<br />
extras                                                                                                                                                                                                                              | 2.1 kB     00:00<br />
extras/primary_db                                                                                                                                                                                                                   | 226 kB     00:00<br />
updates                                                                                                                                                                                                                             | 1.9 kB     00:00<br />
updates/primary_db                                                                                                                                                                                                                  | 508 kB     00:00<br />
repo id                                                                                                          repo name                                                                                                                   status<br />
addons                                                                                                           CentOS-5 - Addons                                                                                                           enabled:     0<br />
base                                                                                                             CentOS-5 - Base                                                                                                             enabled: 3,434<br />
extras                                                                                                           CentOS-5 - Extras                                                                                                           enabled:   298<br />
updates                                                                                                          CentOS-5 - Updates                                                                                                          enabled:   541<br />
repolist: 4,273<br />
[root@testme ~]# cat /etc/redhat-release; uname -m<br />
CentOS release 5.4 (Final)<br />
x86_64<br />
[root@testme ~]# rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-3.noarch.rpm<br />
Retrieving http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-3.noarch.rpm<br />
warning: /var/tmp/rpm-xfer.zXdqQj: Header V3 DSA signature: NOKEY, key ID 217521f6<br />
Preparing...                ########################################### [100%]<br />
1:epel-release           ########################################### [100%]<br />
[root@testme ~]# yum repolist<br />
Loaded plugins: fastestmirror<br />
Loading mirror speeds from cached hostfile<br />
* addons: hpc.arc.georgetown.edu<br />
* base: mirrors.cmich.edu<br />
* epel: mirrors.rit.edu<br />
* extras: updates.interworx.info<br />
* updates: updates.interworx.info<br />
epel                                                                                                                                                                                                                                | 3.4 kB     00:00<br />
epel/primary_db                                                                                                                                                                                                                     | 3.3 MB     00:00<br />
repo id                                                                                            repo name                                                                                                                                 status<br />
addons                                                                                             CentOS-5 - Addons                                                                                                                         enabled:     0<br />
base                                                                                               CentOS-5 - Base                                                                                                                           enabled: 3,434<br />
epel                                                                                               Extra Packages for Enterprise Linux 5 - x86_64                                                                                            enabled: 5,675<br />
extras                                                                                             CentOS-5 - Extras                                                                                                                         enabled:   298<br />
updates                                                                                            CentOS-5 - Updates                                                                                                                        enabled:   541<br />
repolist: 9,948<br />
[root@testme ~]# yum install httpd php php-mysql php-snmp mysql mysql-server net-snmp net-snmp-utils rrdtool libart_lgpl -y<br />
Loaded plugins: fastestmirror<br />
Loading mirror speeds from cached hostfile<br />
* addons: hpc.arc.georgetown.edu<br />
* base: mirrors.cmich.edu<br />
* epel: mirrors.rit.edu<br />
* extras: updates.interworx.info<br />
* updates: updates.interworx.info<br />
Setting up Install Process<br />
Resolving Dependencies<br />
--&gt; Running transaction check<br />
---&gt; Package httpd.x86_64 0:2.2.3-43.el5.centos set to be updated<br />
addons/filelists                                                                                                                                                                                                                    |  197 B     00:00<br />
base/filelists_db                                                                                                                                                                                                                   | 4.0 MB     00:10<br />
epel/filelists_db                                                                                                                                                                                                                   | 4.5 MB     00:01<br />
extras/filelists_db                                                                                                                                                                                                                 | 220 kB     00:00<br />
updates/filelists_db                                                                                                                                                                                                                | 1.4 MB     00:00<br />
--&gt; Processing Dependency: /etc/mime.types for package: httpd<br />
--&gt; Processing Dependency: libaprutil-1.so.0()(64bit) for package: httpd<br />
--&gt; Processing Dependency: libapr-1.so.0()(64bit) for package: httpd<br />
---&gt; Package libart_lgpl.i386 0:2.3.17-4 set to be updated<br />
---&gt; Package libart_lgpl.x86_64 0:2.3.17-4 set to be updated<br />
---&gt; Package mysql.i386 0:5.0.77-4.el5_5.3 set to be updated<br />
--&gt; Processing Dependency: perl(DBI) for package: mysql<br />
--&gt; Processing Dependency: libncurses.so.5 for package: mysql<br />
---&gt; Package mysql.x86_64 0:5.0.77-4.el5_5.3 set to be updated<br />
---&gt; Package mysql-server.x86_64 0:5.0.77-4.el5_5.3 set to be updated<br />
--&gt; Processing Dependency: perl-DBD-MySQL for package: mysql-server<br />
---&gt; Package net-snmp.x86_64 1:5.3.2.2-9.el5_5.1 set to be updated<br />
--&gt; Processing Dependency: net-snmp-libs = 1:5.3.2.2-9.el5_5.1 for package: net-snmp<br />
--&gt; Processing Dependency: libnetsnmpmibs.so.10()(64bit) for package: net-snmp<br />
--&gt; Processing Dependency: libnetsnmpagent.so.10()(64bit) for package: net-snmp<br />
--&gt; Processing Dependency: libnetsnmp.so.10()(64bit) for package: net-snmp<br />
--&gt; Processing Dependency: libsensors.so.3()(64bit) for package: net-snmp<br />
--&gt; Processing Dependency: libnetsnmptrapd.so.10()(64bit) for package: net-snmp<br />
--&gt; Processing Dependency: libnetsnmphelpers.so.10()(64bit) for package: net-snmp<br />
---&gt; Package net-snmp-utils.x86_64 1:5.3.2.2-9.el5_5.1 set to be updated<br />
---&gt; Package php.x86_64 0:5.1.6-27.el5 set to be updated<br />
--&gt; Processing Dependency: php-common = 5.1.6-27.el5 for package: php<br />
--&gt; Processing Dependency: php-cli = 5.1.6-27.el5 for package: php<br />
--&gt; Processing Dependency: libaspell.so.15()(64bit) for package: php<br />
--&gt; Processing Dependency: libpspell.so.15()(64bit) for package: php<br />
--&gt; Processing Dependency: libcurl.so.3()(64bit) for package: php<br />
--&gt; Processing Dependency: libidn.so.11()(64bit) for package: php<br />
--&gt; Processing Dependency: libgmp.so.3()(64bit) for package: php<br />
---&gt; Package php-mysql.x86_64 0:5.1.6-27.el5 set to be updated<br />
--&gt; Processing Dependency: php-pdo for package: php-mysql<br />
---&gt; Package php-snmp.x86_64 0:5.1.6-27.el5 set to be updated<br />
---&gt; Package rrdtool.i386 0:1.2.27-3.el5 set to be updated<br />
--&gt; Processing Dependency: libfreetype.so.6 for package: rrdtool<br />
--&gt; Processing Dependency: libpng12.so.0(PNG12_0) for package: rrdtool<br />
--&gt; Processing Dependency: libpng12.so.0 for package: rrdtool<br />
---&gt; Package rrdtool.x86_64 0:1.2.27-3.el5 set to be updated<br />
--&gt; Processing Dependency: libpng12.so.0(PNG12_0)(64bit) for package: rrdtool<br />
--&gt; Processing Dependency: libpng12.so.0()(64bit) for package: rrdtool<br />
--&gt; Processing Dependency: libfreetype.so.6()(64bit) for package: rrdtool<br />
--&gt; Running transaction check<br />
---&gt; Package apr.x86_64 0:1.2.7-11.el5_3.1 set to be updated<br />
---&gt; Package apr-util.x86_64 0:1.2.7-11.el5 set to be updated<br />
--&gt; Processing Dependency: libpq.so.4()(64bit) for package: apr-util<br />
---&gt; Package aspell.x86_64 12:0.60.3-7.1 set to be updated<br />
--&gt; Processing Dependency: aspell-en for package: aspell<br />
---&gt; Package curl.x86_64 0:7.15.5-9.el5 set to be updated<br />
---&gt; Package freetype.i386 0:2.2.1-26.el5_5 set to be updated<br />
---&gt; Package freetype.x86_64 0:2.2.1-26.el5_5 set to be updated<br />
---&gt; Package gmp.x86_64 0:4.1.4-10.el5 set to be updated<br />
---&gt; Package libidn.x86_64 0:0.6.5-1.1 set to be updated<br />
---&gt; Package libpng.i386 2:1.2.10-7.1.el5_5.3 set to be updated<br />
---&gt; Package libpng.x86_64 2:1.2.10-7.1.el5_5.3 set to be updated<br />
---&gt; Package lm_sensors.x86_64 0:2.10.7-9.el5 set to be updated<br />
--&gt; Processing Dependency: /usr/sbin/dmidecode for package: lm_sensors<br />
---&gt; Package mailcap.noarch 0:2.1.23-1.fc6 set to be updated<br />
---&gt; Package ncurses.i386 0:5.5-24.20060715 set to be updated<br />
---&gt; Package net-snmp-libs.x86_64 1:5.3.2.2-9.el5_5.1 set to be updated<br />
---&gt; Package perl-DBD-MySQL.x86_64 0:3.0007-2.el5 set to be updated<br />
---&gt; Package perl-DBI.x86_64 0:1.52-2.el5 set to be updated<br />
---&gt; Package php-cli.x86_64 0:5.1.6-27.el5 set to be updated<br />
---&gt; Package php-common.x86_64 0:5.1.6-27.el5 set to be updated<br />
---&gt; Package php-pdo.x86_64 0:5.1.6-27.el5 set to be updated<br />
--&gt; Running transaction check<br />
---&gt; Package aspell-en.x86_64 50:6.0-2.1 set to be updated<br />
---&gt; Package dmidecode.x86_64 1:2.10-3.el5 set to be updated<br />
---&gt; Package postgresql-libs.x86_64 0:8.1.21-1.el5_5.1 set to be updated<br />
--&gt; Finished Dependency Resolution</p>
<p>Dependencies Resolved</p>
<p>===========================================================================================================================================================================================================================================================<br />
Package                                                         Arch                                                   Version                                                              Repository                                               Size<br />
===========================================================================================================================================================================================================================================================<br />
Installing:<br />
httpd                                                           x86_64                                                 2.2.3-43.el5.centos                                                  base                                                    1.2 M<br />
libart_lgpl                                                     i386                                                   2.3.17-4                                                             base                                                     76 k<br />
libart_lgpl                                                     x86_64                                                 2.3.17-4                                                             base                                                     75 k<br />
mysql                                                           i386                                                   5.0.77-4.el5_5.3                                                     updates                                                 4.8 M<br />
mysql                                                           x86_64                                                 5.0.77-4.el5_5.3                                                     updates                                                 4.8 M<br />
mysql-server                                                    x86_64                                                 5.0.77-4.el5_5.3                                                     updates                                                 9.8 M<br />
net-snmp                                                        x86_64                                                 1:5.3.2.2-9.el5_5.1                                                  updates                                                 702 k<br />
net-snmp-utils                                                  x86_64                                                 1:5.3.2.2-9.el5_5.1                                                  updates                                                 188 k<br />
php                                                             x86_64                                                 5.1.6-27.el5                                                         base                                                    2.3 M<br />
php-mysql                                                       x86_64                                                 5.1.6-27.el5                                                         base                                                     89 k<br />
php-snmp                                                        x86_64                                                 5.1.6-27.el5                                                         base                                                     30 k<br />
rrdtool                                                         i386                                                   1.2.27-3.el5                                                         epel                                                    464 k<br />
rrdtool                                                         x86_64                                                 1.2.27-3.el5                                                         epel                                                    466 k<br />
Installing for dependencies:<br />
apr                                                             x86_64                                                 1.2.7-11.el5_3.1                                                     base                                                    118 k<br />
apr-util                                                        x86_64                                                 1.2.7-11.el5                                                         base                                                     79 k<br />
aspell                                                          x86_64                                                 12:0.60.3-7.1                                                        base                                                    946 k<br />
aspell-en                                                       x86_64                                                 50:6.0-2.1                                                           base                                                    1.6 M<br />
curl                                                            x86_64                                                 7.15.5-9.el5                                                         base                                                    230 k<br />
dmidecode                                                       x86_64                                                 1:2.10-3.el5                                                         base                                                     74 k<br />
freetype                                                        i386                                                   2.2.1-26.el5_5                                                       updates                                                 311 k<br />
freetype                                                        x86_64                                                 2.2.1-26.el5_5                                                       updates                                                 310 k<br />
gmp                                                             x86_64                                                 4.1.4-10.el5                                                         base                                                    201 k<br />
libidn                                                          x86_64                                                 0.6.5-1.1                                                            base                                                    195 k<br />
libpng                                                          i386                                                   2:1.2.10-7.1.el5_5.3                                                 updates                                                 241 k<br />
libpng                                                          x86_64                                                 2:1.2.10-7.1.el5_5.3                                                 updates                                                 234 k<br />
lm_sensors                                                      x86_64                                                 2.10.7-9.el5                                                         base                                                    525 k<br />
mailcap                                                         noarch                                                 2.1.23-1.fc6                                                         base                                                     14 k<br />
ncurses                                                         i386                                                   5.5-24.20060715                                                      base                                                    1.1 M<br />
net-snmp-libs                                                   x86_64                                                 1:5.3.2.2-9.el5_5.1                                                  updates                                                 1.3 M<br />
perl-DBD-MySQL                                                  x86_64                                                 3.0007-2.el5                                                         base                                                    148 k<br />
perl-DBI                                                        x86_64                                                 1.52-2.el5                                                           base                                                    600 k<br />
php-cli                                                         x86_64                                                 5.1.6-27.el5                                                         base                                                    2.2 M<br />
php-common                                                      x86_64                                                 5.1.6-27.el5                                                         base                                                    153 k<br />
php-pdo                                                         x86_64                                                 5.1.6-27.el5                                                         base                                                     66 k<br />
postgresql-libs                                                 x86_64                                                 8.1.21-1.el5_5.1                                                     updates                                                 196 k</p>
<p>Transaction Summary<br />
===========================================================================================================================================================================================================================================================<br />
Install     35 Package(s)<br />
Update       0 Package(s)<br />
Remove       0 Package(s)</p>
<p>Total download size: 36 M<br />
Downloading Packages:<br />
(1/35): mailcap-2.1.23-1.fc6.noarch.rpm                                                                                                                                                                                             |  14 kB     00:00<br />
(2/35): php-snmp-5.1.6-27.el5.x86_64.rpm                                                                                                                                                                                            |  30 kB     00:00<br />
(3/35): php-pdo-5.1.6-27.el5.x86_64.rpm                                                                                                                                                                                             |  66 kB     00:00<br />
(4/35): dmidecode-2.10-3.el5.x86_64.rpm                                                                                                                                                                                             |  74 kB     00:00<br />
(5/35): libart_lgpl-2.3.17-4.x86_64.rpm                                                                                                                                                                                             |  75 kB     00:00<br />
(6/35): libart_lgpl-2.3.17-4.i386.rpm                                                                                                                                                                                               |  76 kB     00:00<br />
(7/35): apr-util-1.2.7-11.el5.x86_64.rpm                                                                                                                                                                                            |  79 kB     00:00<br />
(8/35): php-mysql-5.1.6-27.el5.x86_64.rpm                                                                                                                                                                                           |  89 kB     00:00<br />
(9/35): apr-1.2.7-11.el5_3.1.x86_64.rpm                                                                                                                                                                                             | 118 kB     00:00<br />
(10/35): perl-DBD-MySQL-3.0007-2.el5.x86_64.rpm                                                                                                                                                                                     | 148 kB     00:00<br />
(11/35): php-common-5.1.6-27.el5.x86_64.rpm                                                                                                                                                                                         | 153 kB     00:00<br />
(12/35): net-snmp-utils-5.3.2.2-9.el5_5.1.x86_64.rpm                                                                                                                                                                                | 188 kB     00:00<br />
(13/35): libidn-0.6.5-1.1.x86_64.rpm                                                                                                                                                                                                | 195 kB     00:00<br />
(14/35): postgresql-libs-8.1.21-1.el5_5.1.x86_64.rpm                                                                                                                                                                                | 196 kB     00:00<br />
(15/35): gmp-4.1.4-10.el5.x86_64.rpm                                                                                                                                                                                                | 201 kB     00:00<br />
(16/35): curl-7.15.5-9.el5.x86_64.rpm                                                                                                                                                                                               | 230 kB     00:01<br />
(17/35): libpng-1.2.10-7.1.el5_5.3.x86_64.rpm                                                                                                                                                                                       | 234 kB     00:00<br />
(18/35): libpng-1.2.10-7.1.el5_5.3.i386.rpm                                                                                                                                                                                         | 241 kB     00:00<br />
(19/35): freetype-2.2.1-26.el5_5.x86_64.rpm                                                                                                                                                                                         | 310 kB     00:00<br />
(20/35): freetype-2.2.1-26.el5_5.i386.rpm                                                                                                                                                                                           | 311 kB     00:00<br />
(21/35): rrdtool-1.2.27-3.el5.i386.rpm                                                                                                                                                                                              | 464 kB     00:00<br />
(22/35): rrdtool-1.2.27-3.el5.x86_64.rpm                                                                                                                                                                                            | 466 kB     00:00<br />
(23/35): lm_sensors-2.10.7-9.el5.x86_64.rpm                                                                                                                                                                                         | 525 kB     00:01<br />
(24/35): perl-DBI-1.52-2.el5.x86_64.rpm                                                                                                                                                                                             | 600 kB     00:01<br />
(25/35): net-snmp-5.3.2.2-9.el5_5.1.x86_64.rpm                                                                                                                                                                                      | 702 kB     00:00<br />
(26/35): aspell-0.60.3-7.1.x86_64.rpm                                                                                                                                                                                               | 946 kB     00:02<br />
(27/35): ncurses-5.5-24.20060715.i386.rpm                                                                                                                                                                                           | 1.1 MB     00:03<br />
(28/35): httpd-2.2.3-43.el5.centos.x86_64.rpm                                                                                                                                                                                       | 1.2 MB     00:01<br />
(29/35): net-snmp-libs-5.3.2.2-9.el5_5.1.x86_64.rpm                                                                                                                                                                                 | 1.3 MB     00:00<br />
(30/35): aspell-en-6.0-2.1.x86_64.rpm                                                                                                                                                                                               | 1.6 MB     00:03<br />
(31/35): php-cli-5.1.6-27.el5.x86_64.rpm                                                                                                                                                                                            | 2.2 MB     00:04<br />
(32/35): php-5.1.6-27.el5.x86_64.rpm                                                                                                                                                                                                | 2.3 MB     00:06<br />
(33/35): mysql-5.0.77-4.el5_5.3.i386.rpm                                                                                                                                                                                            | 4.8 MB     00:00<br />
(34/35): mysql-5.0.77-4.el5_5.3.x86_64.rpm                                                                                                                                                                                          | 4.8 MB     00:00<br />
(35/35): mysql-server-5.0.77-4.el5_5.3.x86_64.rpm                                                                                                                                                                                   | 9.8 MB     00:01<br />
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<br />
Total                                                                                                                                                                                                                      1.0 MB/s |  36 MB     00:35<br />
warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID 217521f6<br />
epel/gpgkey                                                                                                                                                                                                                         | 1.7 kB     00:00<br />
Importing GPG key 0x217521F6 "Fedora EPEL &lt;epel@fedoraproject.org&gt;" from /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL<br />
Running rpm_check_debug<br />
Running Transaction Test<br />
Finished Transaction Test<br />
Transaction Test Succeeded<br />
Running Transaction<br />
Installing     : php-common                                                                                                                                                                                                                         1/35<br />
Installing     : perl-DBI                                                                                                                                                                                                                           2/35<br />
Installing     : mysql                                                                                                                                                                                                                              3/35<br />
Installing     : libidn                                                                                                                                                                                                                             4/35<br />
Installing     : net-snmp-libs                                                                                                                                                                                                                      5/35<br />
Installing     : curl                                                                                                                                                                                                                               6/35<br />
Installing     : gmp                                                                                                                                                                                                                                7/35<br />
Installing     : libpng                                                                                                                                                                                                                             8/35<br />
Installing     : apr                                                                                                                                                                                                                                9/35<br />
Installing     : perl-DBD-MySQL                                                                                                                                                                                                                    10/35<br />
Installing     : php-pdo                                                                                                                                                                                                                           11/35<br />
Installing     : dmidecode                                                                                                                                                                                                                         12/35<br />
Installing     : lm_sensors                                                                                                                                                                                                                        13/35<br />
Installing     : net-snmp                                                                                                                                                                                                                          14/35<br />
Installing     : freetype                                                                                                                                                                                                                          15/35<br />
Installing     : postgresql-libs                                                                                                                                                                                                                   16/35<br />
Installing     : apr-util                                                                                                                                                                                                                          17/35<br />
Installing     : libart_lgpl                                                                                                                                                                                                                       18/35<br />
Installing     : libpng                                                                                                                                                                                                                            19/35<br />
Installing     : ncurses                                                                                                                                                                                                                           20/35<br />
Installing     : freetype                                                                                                                                                                                                                          21/35<br />
Installing     : libart_lgpl                                                                                                                                                                                                                       22/35<br />
Installing     : mailcap                                                                                                                                                                                                                           23/35<br />
Installing     : httpd                                                                                                                                                                                                                             24/35<br />
Installing     : rrdtool                                                                                                                                                                                                                           25/35<br />
Installing     : net-snmp-utils                                                                                                                                                                                                                    26/35<br />
Installing     : php-snmp                                                                                                                                                                                                                          27/35<br />
Installing     : php-mysql                                                                                                                                                                                                                         28/35<br />
Installing     : mysql-server                                                                                                                                                                                                                      29/35<br />
Installing     : rrdtool                                                                                                                                                                                                                           30/35<br />
Installing     : mysql                                                                                                                                                                                                                             31/35<br />
Installing     : aspell                                                                                                                                                                                                                            32/35<br />
Installing     : php-cli                                                                                                                                                                                                                           33/35<br />
Installing     : php                                                                                                                                                                                                                               34/35<br />
Installing     : aspell-en                                                                                                                                                                                                                         35/35</p>
<p>Installed:<br />
httpd.x86_64 0:2.2.3-43.el5.centos         libart_lgpl.i386 0:2.3.17-4  libart_lgpl.x86_64 0:2.3.17-4    mysql.i386 0:5.0.77-4.el5_5.3   mysql.x86_64 0:5.0.77-4.el5_5.3  mysql-server.x86_64 0:5.0.77-4.el5_5.3  net-snmp.x86_64 1:5.3.2.2-9.el5_5.1<br />
net-snmp-utils.x86_64 1:5.3.2.2-9.el5_5.1  php.x86_64 0:5.1.6-27.el5    php-mysql.x86_64 0:5.1.6-27.el5  php-snmp.x86_64 0:5.1.6-27.el5  rrdtool.i386 0:1.2.27-3.el5      rrdtool.x86_64 0:1.2.27-3.el5</p>
<p>Dependency Installed:<br />
apr.x86_64 0:1.2.7-11.el5_3.1          apr-util.x86_64 0:1.2.7-11.el5         aspell.x86_64 12:0.60.3-7.1          aspell-en.x86_64 50:6.0-2.1                     curl.x86_64 0:7.15.5-9.el5                 dmidecode.x86_64 1:2.10-3.el5<br />
freetype.i386 0:2.2.1-26.el5_5         freetype.x86_64 0:2.2.1-26.el5_5       gmp.x86_64 0:4.1.4-10.el5            libidn.x86_64 0:0.6.5-1.1                       libpng.i386 2:1.2.10-7.1.el5_5.3           libpng.x86_64 2:1.2.10-7.1.el5_5.3<br />
lm_sensors.x86_64 0:2.10.7-9.el5       mailcap.noarch 0:2.1.23-1.fc6          ncurses.i386 0:5.5-24.20060715       net-snmp-libs.x86_64 1:5.3.2.2-9.el5_5.1        perl-DBD-MySQL.x86_64 0:3.0007-2.el5       perl-DBI.x86_64 0:1.52-2.el5<br />
php-cli.x86_64 0:5.1.6-27.el5          php-common.x86_64 0:5.1.6-27.el5       php-pdo.x86_64 0:5.1.6-27.el5        postgresql-libs.x86_64 0:8.1.21-1.el5_5.1</p>
<p>Complete!<br />
[root@testme ~]# chkconfig httpd on<br />
[root@testme ~]# chkconfig snmpd on<br />
[root@testme ~]# chkconfig mysqld on<br />
[root@testme ~]# /etc/init.d/httpd restart<br />
Stopping httpd:                                            [FAILED]<br />
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using 184.106.212.215 for ServerName<br />
[  OK  ]<br />
[root@testme ~]# /etc/init.d/mysqld restart<br />
Stopping MySQL:                                            [FAILED]<br />
Initializing MySQL database:  Installing MySQL system tables...<br />
OK<br />
Filling help tables...<br />
OK</p>
<p>To start mysqld at boot time you have to copy<br />
support-files/mysql.server to the right place for your system</p>
<p>PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !<br />
To do so, start the server, then issue the following commands:<br />
/usr/bin/mysqladmin -u root password 'new-password'<br />
/usr/bin/mysqladmin -u root -h testme password 'new-password'</p>
<p>Alternatively you can run:<br />
/usr/bin/mysql_secure_installation</p>
<p>which will also give you the option of removing the test<br />
databases and anonymous user created by default.  This is<br />
strongly recommended for production servers.</p>
<p>See the manual for more instructions.</p>
<p>You can start the MySQL daemon with:<br />
cd /usr ; /usr/bin/mysqld_safe &amp;</p>
<p>You can test the MySQL daemon with mysql-test-run.pl<br />
cd mysql-test ; perl mysql-test-run.pl</p>
<p>Please report any problems with the /usr/bin/mysqlbug script!</p>
<p>The latest information about MySQL is available on the web at</p>
<p>http://www.mysql.com</p>
<p>Support MySQL by buying support/licenses at http://shop.mysql.com<br />
[  OK  ]<br />
Starting MySQL:                                            [  OK  ]<br />
[root@testme ~]# /etc/init.d/snmpd restart<br />
Stopping snmpd:                                            [FAILED]<br />
Starting snmpd:                                            [  OK  ]<br />
[root@testme ~]# rpm -qa | grep rrd<br />
rrdtool-1.2.27-3.el5<br />
rrdtool-1.2.27-3.el5<br />
[root@testme ~]# vi /etc/my.cnf<br />
[root@testme ~]# /etc/init.d/mysqld restart<br />
Stopping MySQL:                                            [  OK  ]<br />
Starting MySQL:                                            [  OK  ]<br />
[root@testme ~]# netstat -ntlp | grep :3306<br />
tcp        0      0 127.0.0.1:3306              0.0.0.0:*                   LISTEN      1350/mysqld<br />
[root@testme ~]# mysql -u root<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 2<br />
Server version: 5.0.77 Source distribution</p>
<p>Type 'help;' or '\h' for help. Type '\c' to clear the buffer.</p>
<p>mysql&gt; use mysql;<br />
Reading table information for completion of table and column names<br />
You can turn off this feature to get a quicker startup with -A</p>
<p>Database changed<br />
mysql&gt; update user set Password=PASSWORD('password') where User='root';<br />
Query OK, 3 rows affected (0.00 sec)<br />
Rows matched: 3  Changed: 3  Warnings: 0</p>
<p>mysql&gt; create database cacti;<br />
Query OK, 1 row affected (0.00 sec)</p>
<p>mysql&gt; grant all privileges on cacti.* to 'cacti'@'localhost' identified by 'password' with grant option;<br />
Query OK, 0 rows affected (0.00 sec)</p>
<p>mysql&gt; flush privileges;<br />
Query OK, 0 rows affected (0.00 sec)</p>
<p>mysql&gt; exit<br />
Bye<br />
[root@testme ~]# cd /var/www/html/<br />
[root@testme html]# wget http://www.cacti.net/downloads/cacti-0.8.7g.tar.gz<br />
--15:20:40--  http://www.cacti.net/downloads/cacti-0.8.7g.tar.gz<br />
Resolving www.cacti.net... 140.211.167.231, 209.242.232.5<br />
Connecting to www.cacti.net|140.211.167.231|:80... connected.<br />
HTTP request sent, awaiting response... 200 OK<br />
Length: 2236916 (2.1M) [application/x-gzip]<br />
Saving to: `cacti-0.8.7g.tar.gz'</p>
<p>100%[==================================================================================================================================================================================================================&gt;] 2,236,916    131K/s   in 19s</p>
<p>15:20:59 (114 KB/s) - `cacti-0.8.7g.tar.gz' saved [2236916/2236916]</p>
<p>[root@testme html]# tar -xvzf cacti-0.8.7g.tar.gz<br />
cacti-0.8.7g/<br />
cacti-0.8.7g/poller.php<br />
cacti-0.8.7g/docs/<br />
cacti-0.8.7g/docs/html/<br />
cacti-0.8.7g/docs/html/delete_users.html<br />
cacti-0.8.7g/docs/html/unix_apply_patches.html<br />
cacti-0.8.7g/docs/html/cli_add_data_query.html<br />
cacti-0.8.7g/docs/html/new_graphs.html<br />
cacti-0.8.7g/docs/html/cli_poller_output_empty.html<br />
cacti-0.8.7g/docs/html/testing_script_in_script_server.html<br />
cacti-0.8.7g/docs/html/data_presentation.html<br />
cacti-0.8.7g/docs/html/basics.html<br />
cacti-0.8.7g/docs/html/bsd_ports.html<br />
cacti-0.8.7g/docs/html/data_queries.html<br />
cacti-0.8.7g/docs/html/host_variables.html<br />
cacti-0.8.7g/docs/html/faq.html<br />
cacti-0.8.7g/docs/html/copying_user.html<br />
cacti-0.8.7g/docs/html/install_unix.html<br />
cacti-0.8.7g/docs/html/migration_php_scripts_to_script_server.html<br />
cacti-0.8.7g/docs/html/user_management.html<br />
cacti-0.8.7g/docs/html/check_rrd_graph.html<br />
cacti-0.8.7g/docs/html/check_cacti_poller.html<br />
cacti-0.8.7g/docs/html/variables.html<br />
cacti-0.8.7g/docs/html/cacti_help.html<br />
cacti-0.8.7g/docs/html/debug_rpm_installation.html<br />
cacti-0.8.7g/docs/html/installation.html<br />
cacti-0.8.7g/docs/html/graph_viewing.html<br />
cacti-0.8.7g/docs/html/check_rrd_owner.html<br />
cacti-0.8.7g/docs/html/script_query_xml.html<br />
cacti-0.8.7g/docs/html/scripts.html<br />
cacti-0.8.7g/docs/html/templates.html<br />
cacti-0.8.7g/docs/html/data_input_methods.html<br />
cacti-0.8.7g/docs/html/how_to.html<br />
cacti-0.8.7g/docs/html/check_data_gathering.html<br />
cacti-0.8.7g/docs/html/rrdtool_features.html<br />
cacti-0.8.7g/docs/html/cdefs.html<br />
cacti-0.8.7g/docs/html/using_spine.html<br />
cacti-0.8.7g/docs/html/advanced_topics.html<br />
cacti-0.8.7g/docs/html/php_script_server.html<br />
cacti-0.8.7g/docs/html/check_rrd_updating.html<br />
cacti-0.8.7g/docs/html/batch_copy_users.html<br />
cacti-0.8.7g/docs/html/debugging.html<br />
cacti-0.8.7g/docs/html/graph_snmp_oid.html<br />
cacti-0.8.7g/docs/html/unix_configure_httpd.html<br />
cacti-0.8.7g/docs/html/template_import.html<br />
cacti-0.8.7g/docs/html/cli_add_graphs.html<br />
cacti-0.8.7g/docs/html/create_new_user.html<br />
cacti-0.8.7g/docs/html/check_rrd_numbers.html<br />
cacti-0.8.7g/docs/html/upgrade.html<br />
cacti-0.8.7g/docs/html/images/<br />
cacti-0.8.7g/docs/html/images/user_management_delete_1.png<br />
cacti-0.8.7g/docs/html/images/user_management_enable_disable_2.png<br />
cacti-0.8.7g/docs/html/images/host_template.png<br />
cacti-0.8.7g/docs/html/images/user_management_delete_2.png<br />
cacti-0.8.7g/docs/html/images/user_management_batch_copy_2.png<br />
cacti-0.8.7g/docs/html/images/data_source_title_template.png<br />
cacti-0.8.7g/docs/html/images/user_management_edit.png<br />
cacti-0.8.7g/docs/html/images/graph_template.png<br />
cacti-0.8.7g/docs/html/images/principles_of_operation.png<br />
cacti-0.8.7g/docs/html/images/data_template.png<br />
cacti-0.8.7g/docs/html/images/import_template.png<br />
cacti-0.8.7g/docs/html/images/user_management_copy_1.png<br />
cacti-0.8.7g/docs/html/images/graph_tree.png<br />
cacti-0.8.7g/docs/html/images/user_management_copy_2.png<br />
cacti-0.8.7g/docs/html/images/user_management_enable_disable_1.png<br />
cacti-0.8.7g/docs/html/images/user_management_new.png<br />
cacti-0.8.7g/docs/html/images/user_management_batch_copy_1.png<br />
cacti-0.8.7g/docs/html/images/data_source_title_example2.png<br />
cacti-0.8.7g/docs/html/images/data_source_title_example1.png<br />
cacti-0.8.7g/docs/html/images/new_graphs.png<br />
cacti-0.8.7g/docs/html/images/new_device.png<br />
cacti-0.8.7g/docs/html/images/user_management_list.png<br />
cacti-0.8.7g/docs/html/images/export_template.png<br />
cacti-0.8.7g/docs/html/graph_templates.html<br />
cacti-0.8.7g/docs/html/cli_copy_user.html<br />
cacti-0.8.7g/docs/html/template_export.html<br />
cacti-0.8.7g/docs/html/cli_poller_reindex_hosts.html<br />
cacti-0.8.7g/docs/html/check_mysql_updating.html<br />
cacti-0.8.7g/docs/html/reference.html<br />
cacti-0.8.7g/docs/html/install_windows.html<br />
cacti-0.8.7g/docs/html/unix_configure_php.html<br />
cacti-0.8.7g/docs/html/unix_configure_cacti.html<br />
cacti-0.8.7g/docs/html/snmp_query_xml.html<br />
cacti-0.8.7g/docs/html/data_storage.html<br />
cacti-0.8.7g/docs/html/graph_overview.html<br />
cacti-0.8.7g/docs/html/host_templates.html<br />
cacti-0.8.7g/docs/html/cli_poller_graphs_reapply_names.html<br />
cacti-0.8.7g/docs/html/cli_add_tree.html<br />
cacti-0.8.7g/docs/html/debug_miscellaneous.html<br />
cacti-0.8.7g/docs/html/requirements.html<br />
cacti-0.8.7g/docs/html/index.html<br />
cacti-0.8.7g/docs/html/unix_configure_mysql.html<br />
cacti-0.8.7g/docs/html/guest_access.html<br />
cacti-0.8.7g/docs/html/cli_add_device.html<br />
cacti-0.8.7g/docs/html/cli_add_graph_template.html<br />
cacti-0.8.7g/docs/html/check_zero_values.html<br />
cacti-0.8.7g/docs/html/graph_howto.html<br />
cacti-0.8.7g/docs/html/cli_add_perms.html<br />
cacti-0.8.7g/docs/html/making_scripts_work_with_cacti.html<br />
cacti-0.8.7g/docs/html/upgrade_using_hostmib_data_queries.html<br />
cacti-0.8.7g/docs/html/LICENSE.html<br />
cacti-0.8.7g/docs/html/unix_configure_spine.html<br />
cacti-0.8.7g/docs/html/operating_principles.html<br />
cacti-0.8.7g/docs/html/enable_disable_users.html<br />
cacti-0.8.7g/docs/README<br />
cacti-0.8.7g/docs/CONTRIB<br />
cacti-0.8.7g/docs/txt/<br />
cacti-0.8.7g/docs/txt/manual.txt<br />
cacti-0.8.7g/docs/pdf/<br />
cacti-0.8.7g/docs/pdf/README<br />
cacti-0.8.7g/docs/CHANGELOG<br />
cacti-0.8.7g/host.php<br />
cacti-0.8.7g/templates_import.php<br />
cacti-0.8.7g/cli/<br />
cacti-0.8.7g/cli/rebuild_poller_cache.php<br />
cacti-0.8.7g/cli/poller_graphs_reapply_names.php<br />
cacti-0.8.7g/cli/upgrade_database.php<br />
cacti-0.8.7g/cli/add_graphs.php<br />
cacti-0.8.7g/cli/add_perms.php<br />
cacti-0.8.7g/cli/add_tree.php<br />
cacti-0.8.7g/cli/repair_database.php<br />
cacti-0.8.7g/cli/add_graph_template.php<br />
cacti-0.8.7g/cli/add_data_query.php<br />
cacti-0.8.7g/cli/import_template.php<br />
cacti-0.8.7g/cli/add_device.php<br />
cacti-0.8.7g/cli/copy_user.php<br />
cacti-0.8.7g/cli/.htaccess<br />
cacti-0.8.7g/cli/poller_reindex_hosts.php<br />
cacti-0.8.7g/cli/poller_output_empty.php<br />
cacti-0.8.7g/cli/poller_data_sources_reapply_names.php<br />
cacti-0.8.7g/cli/convert_innodb.php<br />
cacti-0.8.7g/cli/host_update_template.php<br />
cacti-0.8.7g/cli/structure_rra_paths.php<br />
cacti-0.8.7g/cli/repair_templates.php<br />
cacti-0.8.7g/cmd.php<br />
cacti-0.8.7g/utilities.php<br />
cacti-0.8.7g/color.php<br />
cacti-0.8.7g/lib/<br />
cacti-0.8.7g/lib/poller.php<br />
cacti-0.8.7g/lib/html_validate.php<br />
cacti-0.8.7g/lib/functions.php<br />
cacti-0.8.7g/lib/html.php<br />
cacti-0.8.7g/lib/api_tree.php<br />
cacti-0.8.7g/lib/import.php<br />
cacti-0.8.7g/lib/html_utility.php<br />
cacti-0.8.7g/lib/api_data_source.php<br />
cacti-0.8.7g/lib/graph_export.php<br />
cacti-0.8.7g/lib/auth.php<br />
cacti-0.8.7g/lib/database.php<br />
cacti-0.8.7g/lib/snmp.php<br />
cacti-0.8.7g/lib/xml.php<br />
cacti-0.8.7g/lib/adodb/<br />
cacti-0.8.7g/lib/adodb/adodb-pear.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/<br />
cacti-0.8.7g/lib/adodb/lang/adodb-pt-br.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-sv.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-es.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-fr.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-hu.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-ro.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-ca.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-it.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-pl.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-ru1251.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-bg.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-nl.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-cz.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-ar.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-de.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-en.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-cn.inc.php<br />
cacti-0.8.7g/lib/adodb/lang/adodb-bgutf8.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-xmlschema.inc.php<br />
cacti-0.8.7g/lib/adodb/license.txt<br />
cacti-0.8.7g/lib/adodb/adodb-csvlib.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-php4.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-lib.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-perf.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-generic.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-informix.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-oci8.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-sapdb.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-mssql.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-mysql.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-sybase.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-access.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-ibase.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-postgres.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-db2.inc.php<br />
cacti-0.8.7g/lib/adodb/datadict/datadict-firebird.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-error.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-postgres7.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-ado.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-odbtp.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-informix72.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-sybase.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-mysqlt.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-oci805.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-borland_ibase.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-ado_access.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-postgres.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-firebird.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-netezza.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-ibase.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-postgres64.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-db2.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-proxy.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-oci8po.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-odbc_mssql.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-mysqli.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-access.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-fbsql.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-sqlitepo.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-sqlite.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-mssqlpo.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-ado5.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-mysql.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-odbtp_unicode.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-vfp.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-oracle.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-odbc.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-ldap.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-sqlanywhere.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-oci8.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-pdo.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-csv.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-sapdb.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-informix.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-ado_mssql.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-mssql.inc.php<br />
cacti-0.8.7g/lib/adodb/drivers/adodb-odbc_oracle.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-time.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-iterator.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-datadict.inc.php<br />
cacti-0.8.7g/lib/adodb/tohtml.inc.php<br />
cacti-0.8.7g/lib/adodb/toexport.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-exceptions.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-errorpear.inc.php<br />
cacti-0.8.7g/lib/adodb/adodb-errorhandler.inc.php<br />
cacti-0.8.7g/lib/html_tree.php<br />
cacti-0.8.7g/lib/api_device.php<br />
cacti-0.8.7g/lib/html_form_template.php<br />
cacti-0.8.7g/lib/api_poller.php<br />
cacti-0.8.7g/lib/sort.php<br />
cacti-0.8.7g/lib/graph_variables.php<br />
cacti-0.8.7g/lib/rrd.php<br />
cacti-0.8.7g/lib/variables.php<br />
cacti-0.8.7g/lib/time.php<br />
cacti-0.8.7g/lib/html_form.php<br />
cacti-0.8.7g/lib/cdef.php<br />
cacti-0.8.7g/lib/timespan_settings.php<br />
cacti-0.8.7g/lib/utility.php<br />
cacti-0.8.7g/lib/ldap.php<br />
cacti-0.8.7g/lib/data_query.php<br />
cacti-0.8.7g/lib/export.php<br />
cacti-0.8.7g/lib/ping.php<br />
cacti-0.8.7g/lib/tree.php<br />
cacti-0.8.7g/lib/api_automation_tools.php<br />
cacti-0.8.7g/lib/template.php<br />
cacti-0.8.7g/lib/api_graph.php<br />
cacti-0.8.7g/graphs_new.php<br />
cacti-0.8.7g/graph_templates_inputs.php<br />
cacti-0.8.7g/scripts/<br />
cacti-0.8.7g/scripts/unix_processes.pl<br />
cacti-0.8.7g/scripts/ss_fping.php<br />
cacti-0.8.7g/scripts/unix_tcp_connections.pl<br />
cacti-0.8.7g/scripts/sql.php<br />
cacti-0.8.7g/scripts/diskfree.sh<br />
cacti-0.8.7g/scripts/linux_memory.pl<br />
cacti-0.8.7g/scripts/ss_sql.php<br />
cacti-0.8.7g/scripts/unix_users.pl<br />
cacti-0.8.7g/scripts/ss_host_cpu.php<br />
cacti-0.8.7g/scripts/ping.pl<br />
cacti-0.8.7g/scripts/weatherbug.pl<br />
cacti-0.8.7g/scripts/loadavg.pl<br />
cacti-0.8.7g/scripts/query_host_cpu.php<br />
cacti-0.8.7g/scripts/query_unix_partitions.pl<br />
cacti-0.8.7g/scripts/query_host_partitions.php<br />
cacti-0.8.7g/scripts/diskfree.pl<br />
cacti-0.8.7g/scripts/webhits.pl<br />
cacti-0.8.7g/scripts/ss_host_disk.php<br />
cacti-0.8.7g/scripts/3com_cable_modem.pl<br />
cacti-0.8.7g/scripts/loadavg_multi.pl<br />
cacti-0.8.7g/log/<br />
cacti-0.8.7g/log/.htaccess<br />
cacti-0.8.7g/log/cacti.log<br />
cacti-0.8.7g/poller_export.php<br />
cacti-0.8.7g/graph.php<br />
cacti-0.8.7g/settings.php<br />
cacti-0.8.7g/auth_changepassword.php<br />
cacti-0.8.7g/data_input.php<br />
cacti-0.8.7g/logout.php<br />
cacti-0.8.7g/README<br />
cacti-0.8.7g/templates_export.php<br />
cacti-0.8.7g/user_admin.php<br />
cacti-0.8.7g/graph_settings.php<br />
cacti-0.8.7g/install/<br />
cacti-0.8.7g/install/0_8_7f_to_0_8_7g.php<br />
cacti-0.8.7g/install/0_8_7e_to_0_8_7f.php<br />
cacti-0.8.7g/install/0_8_4_to_0_8_5.php<br />
cacti-0.8.7g/install/0_8_3_to_0_8_4.php<br />
cacti-0.8.7g/install/0_8_2a_to_0_8_3.php<br />
cacti-0.8.7g/install/0_8_6j_to_0_8_7.php<br />
cacti-0.8.7g/install/0_8_7d_to_0_8_7e.php<br />
cacti-0.8.7g/install/0_8_to_0_8_1.php<br />
cacti-0.8.7g/install/install_finish.gif<br />
cacti-0.8.7g/install/0_8_5a_to_0_8_6.php<br />
cacti-0.8.7g/install/0_8_6d_to_0_8_6e.php<br />
cacti-0.8.7g/install/0_8_7b_to_0_8_7c.php<br />
cacti-0.8.7g/install/0_8_6f_to_0_8_6g.php<br />
cacti-0.8.7g/install/0_8_7a_to_0_8_7b.php<br />
cacti-0.8.7g/install/0_8_7c_to_0_8_7d.php<br />
cacti-0.8.7g/install/0_8_7_to_0_8_7a.php<br />
cacti-0.8.7g/install/0_8_6g_to_0_8_6h.php<br />
cacti-0.8.7g/install/0_8_6_to_0_8_6a.php<br />
cacti-0.8.7g/install/0_8_2_to_0_8_2a.php<br />
cacti-0.8.7g/install/0_8_1_to_0_8_2.php<br />
cacti-0.8.7g/install/0_8_6h_to_0_8_6i.php<br />
cacti-0.8.7g/install/install_next.gif<br />
cacti-0.8.7g/install/0_8_6c_to_0_8_6d.php<br />
cacti-0.8.7g/install/index.php<br />
cacti-0.8.7g/graph_templates.php<br />
cacti-0.8.7g/graphs_items.php<br />
cacti-0.8.7g/images/<br />
cacti-0.8.7g/images/tab_settings_down.gif<br />
cacti-0.8.7g/images/tab_console_down.gif<br />
cacti-0.8.7g/images/tab_console.gif<br />
cacti-0.8.7g/images/button_refresh.gif<br />
cacti-0.8.7g/images/button_export.gif<br />
cacti-0.8.7g/images/show.gif<br />
cacti-0.8.7g/images/button_add.gif<br />
cacti-0.8.7g/images/move_left.gif<br />
cacti-0.8.7g/images/favicon.ico<br />
cacti-0.8.7g/images/button_view.gif<br />
cacti-0.8.7g/images/calendar.gif<br />
cacti-0.8.7g/images/button_create.gif<br />
cacti-0.8.7g/images/graph_properties.gif<br />
cacti-0.8.7g/images/button_import.gif<br />
cacti-0.8.7g/images/tab_graphs_down.gif<br />
cacti-0.8.7g/images/tab_mode_list.gif<br />
cacti-0.8.7g/images/hide.gif<br />
cacti-0.8.7g/images/tab_mode_preview.gif<br />
cacti-0.8.7g/images/cacti_logo.gif<br />
cacti-0.8.7g/images/tab_settings.gif<br />
cacti-0.8.7g/images/auth_login.gif<br />
cacti-0.8.7g/images/graph_page_top.gif<br />
cacti-0.8.7g/images/button_cancel2.gif<br />
cacti-0.8.7g/images/button_purge.gif<br />
cacti-0.8.7g/images/button_help.gif<br />
cacti-0.8.7g/images/shadow_gray.gif<br />
cacti-0.8.7g/images/tab_mode_tree_down.gif<br />
cacti-0.8.7g/images/button_no.gif<br />
cacti-0.8.7g/images/auth_logout.gif<br />
cacti-0.8.7g/images/arrow.gif<br />
cacti-0.8.7g/images/cacti_backdrop.gif<br />
cacti-0.8.7g/images/delete_icon.gif<br />
cacti-0.8.7g/images/shadow.gif<br />
cacti-0.8.7g/images/button_default.gif<br />
cacti-0.8.7g/images/delete_icon_large.gif<br />
cacti-0.8.7g/images/move_down.gif<br />
cacti-0.8.7g/images/tab_cacti.gif<br />
cacti-0.8.7g/images/tab_graphs.gif<br />
cacti-0.8.7g/images/transparent_line.gif<br />
cacti-0.8.7g/images/button_yes.gif<br />
cacti-0.8.7g/images/move_right.gif<br />
cacti-0.8.7g/images/button_colapse_all.gif<br />
cacti-0.8.7g/images/button_clear.gif<br />
cacti-0.8.7g/images/button_save.gif<br />
cacti-0.8.7g/images/menu_line.gif<br />
cacti-0.8.7g/images/cacti_about_logo.gif<br />
cacti-0.8.7g/images/cacti_backdrop2.gif<br />
cacti-0.8.7g/images/reload_icon_small.gif<br />
cacti-0.8.7g/images/left_border.gif<br />
cacti-0.8.7g/images/auth_deny.gif<br />
cacti-0.8.7g/images/graph_zoom.gif<br />
cacti-0.8.7g/images/button_delete.gif<br />
cacti-0.8.7g/images/button_expand_all.gif<br />
cacti-0.8.7g/images/tab_mode_list_down.gif<br />
cacti-0.8.7g/images/move_up.gif<br />
cacti-0.8.7g/images/graph_query.png<br />
cacti-0.8.7g/images/button_cancel.gif<br />
cacti-0.8.7g/images/menuarrow.gif<br />
cacti-0.8.7g/images/tab_mode_preview_down.gif<br />
cacti-0.8.7g/images/button_go.gif<br />
cacti-0.8.7g/images/tab_mode_tree.gif<br />
cacti-0.8.7g/graphs.php<br />
cacti-0.8.7g/script_server.pl<br />
cacti-0.8.7g/LICENSE<br />
cacti-0.8.7g/graph_view.php<br />
cacti-0.8.7g/host_templates.php<br />
cacti-0.8.7g/graph_templates_items.php<br />
cacti-0.8.7g/cacti.sql<br />
cacti-0.8.7g/poller_commands.php<br />
cacti-0.8.7g/include/<br />
cacti-0.8.7g/include/global.php<br />
cacti-0.8.7g/include/global_form.php<br />
cacti-0.8.7g/include/top_header.php<br />
cacti-0.8.7g/include/top_graph_header.php<br />
cacti-0.8.7g/include/global_settings.php<br />
cacti-0.8.7g/include/main.css<br />
cacti-0.8.7g/include/treeview/<br />
cacti-0.8.7g/include/treeview/ftv2lastnode.gif<br />
cacti-0.8.7g/include/treeview/ftv2mnode.gif<br />
cacti-0.8.7g/include/treeview/ftv2node.gif<br />
cacti-0.8.7g/include/treeview/ftiens4_export.js<br />
cacti-0.8.7g/include/treeview/ua.js<br />
cacti-0.8.7g/include/treeview/ftv2blank.gif<br />
cacti-0.8.7g/include/treeview/ftiens4.js<br />
cacti-0.8.7g/include/treeview/ftv2pnode.gif<br />
cacti-0.8.7g/include/treeview/ftv2plastnode.gif<br />
cacti-0.8.7g/include/treeview/ftv2vertline.gif<br />
cacti-0.8.7g/include/treeview/ftv2mlastnode.gif<br />
cacti-0.8.7g/include/config.php<br />
cacti-0.8.7g/include/auth.php<br />
cacti-0.8.7g/include/bottom_footer.php<br />
cacti-0.8.7g/include/layout.js<br />
cacti-0.8.7g/include/jscalendar/<br />
cacti-0.8.7g/include/jscalendar/lang/<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-ko.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-en.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-big5.js<br />
cacti-0.8.7g/include/jscalendar/lang/cn_utf8.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-ru_win_.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-da.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-es.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-sk.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-cs-utf8.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-br.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-al.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-el.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-si.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-ro.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-bg.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-pl.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-af.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-nl.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-no.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-fi.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-ru.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-it.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-tr.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-jp.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-lt.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-lv.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-lt-utf8.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-pt.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-sv.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-sp.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-fr.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-cs-win.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-hr-utf8.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-du.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-de.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-hr.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-hu.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-ca.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-he-utf8.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-zh.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-big5-utf8.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-ko-utf8.js<br />
cacti-0.8.7g/include/jscalendar/lang/calendar-pl-utf8.js<br />
cacti-0.8.7g/include/jscalendar/calendar.js<br />
cacti-0.8.7g/include/jscalendar/calendar-setup.js<br />
cacti-0.8.7g/include/global_constants.php<br />
cacti-0.8.7g/include/global_arrays.php<br />
cacti-0.8.7g/include/zoom.js<br />
cacti-0.8.7g/graph_image.php<br />
cacti-0.8.7g/gprint_presets.php<br />
cacti-0.8.7g/script_server.php<br />
cacti-0.8.7g/rra/<br />
cacti-0.8.7g/rra/.htaccess<br />
cacti-0.8.7g/data_sources.php<br />
cacti-0.8.7g/cdef.php<br />
cacti-0.8.7g/resource/<br />
cacti-0.8.7g/resource/snmp_queries/<br />
cacti-0.8.7g/resource/snmp_queries/netware_disk.xml<br />
cacti-0.8.7g/resource/snmp_queries/host_disk.xml<br />
cacti-0.8.7g/resource/snmp_queries/interface.xml<br />
cacti-0.8.7g/resource/snmp_queries/net-snmp_disk.xml<br />
cacti-0.8.7g/resource/snmp_queries/netware_cpu.xml<br />
cacti-0.8.7g/resource/snmp_queries/kbridge.xml<br />
cacti-0.8.7g/resource/script_server/<br />
cacti-0.8.7g/resource/script_server/host_disk.xml<br />
cacti-0.8.7g/resource/script_server/host_cpu.xml<br />
cacti-0.8.7g/resource/script_queries/<br />
cacti-0.8.7g/resource/script_queries/unix_disk.xml<br />
cacti-0.8.7g/resource/script_queries/host_disk.xml<br />
cacti-0.8.7g/resource/script_queries/host_cpu.xml<br />
cacti-0.8.7g/data_templates.php<br />
cacti-0.8.7g/index.php<br />
cacti-0.8.7g/about.php<br />
cacti-0.8.7g/auth_login.php<br />
cacti-0.8.7g/tree.php<br />
cacti-0.8.7g/rra.php<br />
cacti-0.8.7g/graph_xport.php<br />
cacti-0.8.7g/data_queries.php<br />
[root@testme html]# ln -s /var/www/html/cacti-0.8.7g /var/www/html/cacti<br />
[root@testme html]# chown -R apache:apache /var/www/html/cacti*<br />
[root@testme html]# mysql -u root -p cacti &lt; /var/www/html/cacti/cacti.sql<br />
Enter password:<br />
[root@testme html]# mysql -u root -p cacti -e "show tables;"<br />
Enter password:<br />
+---------------------------+<br />
| Tables_in_cacti           |<br />
+---------------------------+<br />
| cdef                      |<br />
| cdef_items                |<br />
| colors                    |<br />
| data_input                |<br />
| data_input_data           |<br />
| data_input_fields         |<br />
| data_local                |<br />
| data_template             |<br />
| data_template_data        |<br />
| data_template_data_rra    |<br />
| data_template_rrd         |<br />
| graph_local               |<br />
| graph_template_input      |<br />
| graph_template_input_defs |<br />
| graph_templates           |<br />
| graph_templates_gprint    |<br />
| graph_templates_graph     |<br />
| graph_templates_item      |<br />
| graph_tree                |<br />
| graph_tree_items          |<br />
| host                      |<br />
| host_graph                |<br />
| host_snmp_cache           |<br />
| host_snmp_query           |<br />
| host_template             |<br />
| host_template_graph       |<br />
| host_template_snmp_query  |<br />
| poller                    |<br />
| poller_command            |<br />
| poller_item               |<br />
| poller_output             |<br />
| poller_reindex            |<br />
| poller_time               |<br />
| rra                       |<br />
| rra_cf                    |<br />
| settings                  |<br />
| settings_graphs           |<br />
| settings_tree             |<br />
| snmp_query                |<br />
| snmp_query_graph          |<br />
| snmp_query_graph_rrd      |<br />
| snmp_query_graph_rrd_sv   |<br />
| snmp_query_graph_sv       |<br />
| user_auth                 |<br />
| user_auth_perms           |<br />
| user_auth_realm           |<br />
| user_log                  |<br />
| version                   |<br />
+---------------------------+<br />
[root@testme html]# useradd cacti<br />
[root@testme html]# passwd cacti<br />
Changing password for user cacti.<br />
New UNIX password:<br />
BAD PASSWORD: it is based on a dictionary word<br />
Retype new UNIX password:<br />
passwd: all authentication tokens updated successfully.<br />
[root@testme html]# crontab -e -u cacti<br />
no crontab for cacti - using an empty one<br />
crontab: installing new crontab<br />
[root@testme html]# crontab -l -u cacti<br />
*/5 * * * * php /var/www/html/cacti/poller.php &gt; /dev/null 2&gt;&amp;1<br />
[root@testme html]# chown -R cacti /var/www/html/cacti/rra* /var/www/html/cacti/log*<br />
[root@testme html]# vi /var/www/html/cacti/include/config.php<br />
[root@testme html]# cat /var/www/html/cacti/include/config.php<br />
&lt;?php<br />
/*<br />
+-------------------------------------------------------------------------+<br />
| Copyright (C) 2004-2010 The Cacti Group                                 |<br />
|                                                                         |<br />
| This program is free software; you can redistribute it and/or           |<br />
| modify it under the terms of the GNU General Public License             |<br />
| as published by the Free Software Foundation; either version 2          |<br />
| of the License, or (at your option) any later version.                  |<br />
|                                                                         |<br />
| This program is distributed in the hope that it will be useful,         |<br />
| but WITHOUT ANY WARRANTY; without even the implied warranty of          |<br />
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |<br />
| GNU General Public License for more details.                            |<br />
+-------------------------------------------------------------------------+<br />
| Cacti: The Complete RRDTool-based Graphing Solution                     |<br />
+-------------------------------------------------------------------------+<br />
| This code is designed, written, and maintained by the Cacti Group. See  |<br />
| about.php and/or the AUTHORS file for specific developer information.   |<br />
+-------------------------------------------------------------------------+<br />
| http://www.cacti.net/                                                   |<br />
+-------------------------------------------------------------------------+<br />
*/</p>
<p>/* make sure these values refect your actual database/host/user/password */<br />
$database_type = "mysql";<br />
$database_default = "cacti";<br />
$database_hostname = "127.0.0.1";<br />
$database_username = "cacti";<br />
$database_password = "password";<br />
$database_port = "3306";</p>
<p>/* Default session name - Session name must contain alpha characters */<br />
#$cacti_session_name = "Cacti";</p>
<p>?&gt;<br />
[root@testme html]# netstat -ntlp | grep :80<br />
tcp        0      0 :::80                       :::*                        LISTEN      1084/httpd</p></blockquote>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/howto/cacti/install-cacti-on-rhel-5centos-5-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>install spine on RHEL-5/CentOS-5</title>
		<link>http://www.linuxismybff.com/howto/cacti/install-cacti-on-rhel-5centos-5/</link>
		<comments>http://www.linuxismybff.com/howto/cacti/install-cacti-on-rhel-5centos-5/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:20:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[spine]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=25</guid>
		<description><![CDATA[Quick and dirty how-to how to install the spine poller for cacti on centos or rhel 5. This is useful if you have a ton of sources being polled. yum install net-snmp-devel mysql mysql-devel openssl-devel ksh automake autoconf libtool gcc make -y cd wget http://www.cacti.net/downloads/spine/cacti-spine-0.8.7c.tar.gz tar -xvzf cacti-spine-0.8.7c.tar.gz cd cacti-spine-0.8.7c chmod 744 ./configure autoconf autoheader [...]]]></description>
			<content:encoded><![CDATA[<p>Quick and dirty how-to how to install the spine poller for cacti on centos or rhel 5. This is useful if you have a ton of sources being polled.</p>
<blockquote><p>yum install net-snmp-devel mysql mysql-devel openssl-devel ksh automake autoconf libtool gcc make -y<br />
cd<br />
wget http://www.cacti.net/downloads/spine/cacti-spine-0.8.7c.tar.gz<br />
tar -xvzf cacti-spine-0.8.7c.tar.gz<br />
cd cacti-spine-0.8.7c<br />
chmod 744 ./configure<br />
autoconf<br />
autoheader<br />
automake<br />
./configure<br />
make<br />
make install<br />
cp /usr/local/spine/etc/spine.conf.dist /etc/spine.conf<br />
edit '/etc/spine.conf' to match cacti's config.phpWithin the cacti GUI add the spine binary path in Settings &gt; Paths '/usr/local/spine/bin/spine' and then under the Poller tab change the type from cmd.php to Spine.</p></blockquote>
<blockquote><p>Current repolist<br />
repo id              repo name                                status<br />
addons               CentOS-5 - Addons                        enabled :       0<br />
base                 CentOS-5 - Base                          enabled :   3,272<br />
centosplus           CentOS-5 - Plus                          enabled :      63<br />
contrib              CentOS-5 - Contrib                       enabled :       0<br />
epel                 Epel from fedora                         enabled :   4,970<br />
extras               CentOS-5 - Extras                        enabled :     266<br />
updates              CentOS-5 - Updates                       enabled :     258</p></blockquote>
<p>I have noted below a complete raw install of the newer version of spine.  Note that some of the auto* commands differ from the previous version...</p>
<blockquote><p>[root@testme html]# cat /etc/redhat-release; uname -m<br />
CentOS release 5.4 (Final)<br />
x86_64<br />
[root@testme html]# yum repolist<br />
Loaded plugins: fastestmirror<br />
Loading mirror speeds from cached hostfile<br />
* addons: hpc.arc.georgetown.edu<br />
* base: mirrors.cmich.edu<br />
* epel: mirrors.rit.edu<br />
* extras: updates.interworx.info<br />
* updates: updates.interworx.info<br />
repo id                                                                                            repo name                                                                                                                                 status<br />
addons                                                                                             CentOS-5 - Addons                                                                                                                         enabled:     0<br />
base                                                                                               CentOS-5 - Base                                                                                                                           enabled: 3,434<br />
epel                                                                                               Extra Packages for Enterprise Linux 5 - x86_64                                                                                            enabled: 5,675<br />
extras                                                                                             CentOS-5 - Extras                                                                                                                         enabled:   298<br />
updates                                                                                            CentOS-5 - Updates                                                                                                                        enabled:   541<br />
repolist: 9,948<br />
[root@testme html]# yum install net-snmp-devel mysql mysql-devel openssl-devel ksh automake autoconf libtool gcc make -y<br />
Loaded plugins: fastestmirror<br />
Loading mirror speeds from cached hostfile<br />
* addons: hpc.arc.georgetown.edu<br />
* base: mirrors.cmich.edu<br />
* epel: mirrors.rit.edu<br />
* extras: updates.interworx.info<br />
* updates: updates.interworx.info<br />
Setting up Install Process<br />
Package mysql-5.0.77-4.el5_5.3.x86_64 already installed and latest version<br />
Package mysql-5.0.77-4.el5_5.3.i386 already installed and latest version<br />
Resolving Dependencies<br />
--&gt; Running transaction check<br />
---&gt; Package autoconf.noarch 0:2.59-12 set to be updated<br />
--&gt; Processing Dependency: imake for package: autoconf<br />
--&gt; Processing Dependency: m4 for package: autoconf<br />
---&gt; Package automake.noarch 0:1.9.6-2.3.el5 set to be updated<br />
---&gt; Package gcc.x86_64 0:4.1.2-48.el5 set to be updated<br />
--&gt; Processing Dependency: cpp = 4.1.2-48.el5 for package: gcc<br />
--&gt; Processing Dependency: libgomp &gt;= 4.1.2-48.el5 for package: gcc<br />
--&gt; Processing Dependency: libgcc &gt;= 4.1.2-48.el5 for package: gcc<br />
--&gt; Processing Dependency: glibc-devel &gt;= 2.2.90-12 for package: gcc<br />
---&gt; Package ksh.x86_64 0:20100202-1.el5 set to be updated<br />
---&gt; Package libtool.x86_64 0:1.5.22-7.el5_4 set to be updated<br />
---&gt; Package make.x86_64 1:3.81-3.el5 set to be updated<br />
---&gt; Package mysql-devel.i386 0:5.0.77-4.el5_5.3 set to be updated<br />
---&gt; Package mysql-devel.x86_64 0:5.0.77-4.el5_5.3 set to be updated<br />
---&gt; Package net-snmp-devel.i386 1:5.3.2.2-9.el5_5.1 set to be updated<br />
--&gt; Processing Dependency: libnetsnmpagent.so.10 for package: net-snmp-devel<br />
--&gt; Processing Dependency: libnetsnmptrapd.so.10 for package: net-snmp-devel<br />
--&gt; Processing Dependency: elfutils-devel for package: net-snmp-devel<br />
--&gt; Processing Dependency: elfutils-libelf-devel for package: net-snmp-devel<br />
--&gt; Processing Dependency: libnetsnmpmibs.so.10 for package: net-snmp-devel<br />
--&gt; Processing Dependency: libsnmp.so.10 for package: net-snmp-devel<br />
--&gt; Processing Dependency: libnetsnmphelpers.so.10 for package: net-snmp-devel<br />
--&gt; Processing Dependency: libnetsnmp.so.10 for package: net-snmp-devel<br />
--&gt; Processing Dependency: rpm-devel for package: net-snmp-devel<br />
--&gt; Processing Dependency: lm_sensors-devel for package: net-snmp-devel<br />
--&gt; Processing Dependency: beecrypt-devel for package: net-snmp-devel<br />
---&gt; Package net-snmp-devel.x86_64 1:5.3.2.2-9.el5_5.1 set to be updated<br />
---&gt; Package openssl-devel.i386 0:0.9.8e-12.el5_4.6 set to be updated<br />
--&gt; Processing Dependency: openssl = 0.9.8e-12.el5_4.6 for package: openssl-devel<br />
--&gt; Processing Dependency: zlib-devel for package: openssl-devel<br />
--&gt; Processing Dependency: krb5-devel for package: openssl-devel<br />
---&gt; Package openssl-devel.x86_64 0:0.9.8e-12.el5_4.6 set to be updated<br />
--&gt; Running transaction check<br />
---&gt; Package beecrypt-devel.x86_64 0:4.1.2-10.1.1 set to be updated<br />
--&gt; Processing Dependency: beecrypt = 4.1.2-10.1.1 for package: beecrypt-devel<br />
--&gt; Processing Dependency: libbeecrypt.so.6()(64bit) for package: beecrypt-devel<br />
---&gt; Package cpp.x86_64 0:4.1.2-48.el5 set to be updated<br />
---&gt; Package elfutils-devel.x86_64 0:0.137-3.el5 set to be updated<br />
--&gt; Processing Dependency: elfutils-libs-x86_64 = 0.137-3.el5 for package: elfutils-devel<br />
--&gt; Processing Dependency: elfutils-devel-static-x86_64 = 0.137-3.el5 for package: elfutils-devel<br />
--&gt; Processing Dependency: libdw.so.1()(64bit) for package: elfutils-devel<br />
--&gt; Processing Dependency: libasm.so.1()(64bit) for package: elfutils-devel<br />
---&gt; Package elfutils-libelf-devel.x86_64 0:0.137-3.el5 set to be updated<br />
--&gt; Processing Dependency: elfutils-libelf-devel-static-x86_64 = 0.137-3.el5 for package: elfutils-libelf-devel<br />
---&gt; Package glibc-devel.x86_64 0:2.5-49.el5_5.4 set to be updated<br />
--&gt; Processing Dependency: glibc = 2.5-49.el5_5.4 for package: glibc-devel<br />
--&gt; Processing Dependency: glibc-headers = 2.5-49.el5_5.4 for package: glibc-devel<br />
--&gt; Processing Dependency: glibc-headers for package: glibc-devel<br />
---&gt; Package imake.x86_64 0:1.0.2-3 set to be updated<br />
---&gt; Package krb5-devel.x86_64 0:1.6.1-36.el5_5.5 set to be updated<br />
--&gt; Processing Dependency: krb5-libs = 1.6.1-36.el5_5.5 for package: krb5-devel<br />
--&gt; Processing Dependency: libselinux-devel for package: krb5-devel<br />
--&gt; Processing Dependency: e2fsprogs-devel for package: krb5-devel<br />
--&gt; Processing Dependency: keyutils-libs-devel for package: krb5-devel<br />
---&gt; Package libgcc.i386 0:4.1.2-48.el5 set to be updated<br />
---&gt; Package libgcc.x86_64 0:4.1.2-48.el5 set to be updated<br />
---&gt; Package libgomp.x86_64 0:4.4.0-6.el5 set to be updated<br />
---&gt; Package lm_sensors-devel.x86_64 0:2.10.7-9.el5 set to be updated<br />
---&gt; Package m4.x86_64 0:1.4.5-3.el5.1 set to be updated<br />
---&gt; Package net-snmp-libs.i386 1:5.3.2.2-9.el5_5.1 set to be updated<br />
---&gt; Package openssl.i686 0:0.9.8e-12.el5_4.6 set to be updated<br />
---&gt; Package openssl.x86_64 0:0.9.8e-12.el5_4.6 set to be updated<br />
---&gt; Package rpm-devel.x86_64 0:4.4.2.3-18.el5 set to be updated<br />
--&gt; Processing Dependency: sqlite-devel for package: rpm-devel<br />
--&gt; Processing Dependency: nss-devel for package: rpm-devel<br />
---&gt; Package zlib-devel.x86_64 0:1.2.3-3 set to be updated<br />
--&gt; Running transaction check<br />
---&gt; Package beecrypt.x86_64 0:4.1.2-10.1.1 set to be updated<br />
---&gt; Package e2fsprogs-devel.x86_64 0:1.39-23.el5 set to be updated<br />
---&gt; Package elfutils-devel-static.x86_64 0:0.137-3.el5 set to be updated<br />
---&gt; Package elfutils-libelf-devel-static.x86_64 0:0.137-3.el5 set to be updated<br />
---&gt; Package elfutils-libs.x86_64 0:0.137-3.el5 set to be updated<br />
---&gt; Package glibc.i686 0:2.5-49.el5_5.4 set to be updated<br />
--&gt; Processing Dependency: glibc-common = 2.5-49.el5_5.4 for package: glibc<br />
---&gt; Package glibc.x86_64 0:2.5-49.el5_5.4 set to be updated<br />
---&gt; Package glibc-headers.x86_64 0:2.5-49.el5_5.4 set to be updated<br />
--&gt; Processing Dependency: kernel-headers &gt;= 2.2.1 for package: glibc-headers<br />
--&gt; Processing Dependency: kernel-headers for package: glibc-headers<br />
---&gt; Package keyutils-libs-devel.x86_64 0:1.2-1.el5 set to be updated<br />
---&gt; Package krb5-libs.i386 0:1.6.1-36.el5_5.5 set to be updated<br />
---&gt; Package krb5-libs.x86_64 0:1.6.1-36.el5_5.5 set to be updated<br />
---&gt; Package libselinux-devel.x86_64 0:1.33.4-5.5.el5 set to be updated<br />
--&gt; Processing Dependency: libsepol-devel &gt;= 1.15.2-1 for package: libselinux-devel<br />
---&gt; Package nss-devel.x86_64 0:3.12.6-2.el5.centos set to be updated<br />
--&gt; Processing Dependency: nss = 3.12.6-2.el5.centos for package: nss-devel<br />
--&gt; Processing Dependency: nspr-devel &gt;= 4.8.4 for package: nss-devel<br />
--&gt; Processing Dependency: pkgconfig for package: nss-devel<br />
---&gt; Package sqlite-devel.x86_64 0:3.3.6-5 set to be updated<br />
--&gt; Running transaction check<br />
---&gt; Package glibc-common.x86_64 0:2.5-49.el5_5.4 set to be updated<br />
---&gt; Package kernel-headers.x86_64 0:2.6.18-194.8.1.el5 set to be updated<br />
---&gt; Package libsepol-devel.x86_64 0:1.15.2-3.el5 set to be updated<br />
--&gt; Processing Dependency: libsepol = 1.15.2-3.el5 for package: libsepol-devel<br />
---&gt; Package nspr-devel.x86_64 0:4.8.4-1.el5_4 set to be updated<br />
--&gt; Processing Dependency: nspr = 4.8.4-1.el5_4 for package: nspr-devel<br />
---&gt; Package nss.i386 0:3.12.6-2.el5.centos set to be updated<br />
---&gt; Package nss.x86_64 0:3.12.6-2.el5.centos set to be updated<br />
---&gt; Package pkgconfig.x86_64 1:0.21-2.el5 set to be updated<br />
--&gt; Running transaction check<br />
---&gt; Package libsepol.i386 0:1.15.2-3.el5 set to be updated<br />
---&gt; Package libsepol.x86_64 0:1.15.2-3.el5 set to be updated<br />
---&gt; Package nspr.i386 0:4.8.4-1.el5_4 set to be updated<br />
---&gt; Package nspr.x86_64 0:4.8.4-1.el5_4 set to be updated<br />
--&gt; Finished Dependency Resolution</p>
<p>Dependencies Resolved</p>
<p>===========================================================================================================================================================================================================================================================<br />
Package                                                                   Arch                                                Version                                                          Repository                                            Size<br />
===========================================================================================================================================================================================================================================================<br />
Installing:<br />
autoconf                                                                  noarch                                              2.59-12                                                          base                                                 647 k<br />
automake                                                                  noarch                                              1.9.6-2.3.el5                                                    base                                                 476 k<br />
gcc                                                                       x86_64                                              4.1.2-48.el5                                                     base                                                 5.3 M<br />
ksh                                                                       x86_64                                              20100202-1.el5                                                   base                                                 1.2 M<br />
libtool                                                                   x86_64                                              1.5.22-7.el5_4                                                   base                                                 667 k<br />
make                                                                      x86_64                                              1:3.81-3.el5                                                     base                                                 470 k<br />
mysql-devel                                                               i386                                                5.0.77-4.el5_5.3                                                 updates                                              2.4 M<br />
mysql-devel                                                               x86_64                                              5.0.77-4.el5_5.3                                                 updates                                              2.5 M<br />
net-snmp-devel                                                            i386                                                1:5.3.2.2-9.el5_5.1                                              updates                                              1.9 M<br />
net-snmp-devel                                                            x86_64                                              1:5.3.2.2-9.el5_5.1                                              updates                                              2.0 M<br />
openssl-devel                                                             i386                                                0.9.8e-12.el5_4.6                                                base                                                 1.9 M<br />
openssl-devel                                                             x86_64                                              0.9.8e-12.el5_4.6                                                base                                                 1.9 M<br />
Installing for dependencies:<br />
beecrypt                                                                  x86_64                                              4.1.2-10.1.1                                                     base                                                  87 k<br />
beecrypt-devel                                                            x86_64                                              4.1.2-10.1.1                                                     base                                                 118 k<br />
cpp                                                                       x86_64                                              4.1.2-48.el5                                                     base                                                 2.9 M<br />
e2fsprogs-devel                                                           x86_64                                              1.39-23.el5                                                      base                                                 632 k<br />
elfutils-devel                                                            x86_64                                              0.137-3.el5                                                      base                                                  62 k<br />
elfutils-devel-static                                                     x86_64                                              0.137-3.el5                                                      base                                                 119 k<br />
elfutils-libelf-devel                                                     x86_64                                              0.137-3.el5                                                      base                                                  24 k<br />
elfutils-libelf-devel-static                                              x86_64                                              0.137-3.el5                                                      base                                                  64 k<br />
elfutils-libs                                                             x86_64                                              0.137-3.el5                                                      base                                                 183 k<br />
glibc-devel                                                               x86_64                                              2.5-49.el5_5.4                                                   updates                                              2.4 M<br />
glibc-headers                                                             x86_64                                              2.5-49.el5_5.4                                                   updates                                              592 k<br />
imake                                                                     x86_64                                              1.0.2-3                                                          base                                                 319 k<br />
kernel-headers                                                            x86_64                                              2.6.18-194.8.1.el5                                               updates                                              1.1 M<br />
keyutils-libs-devel                                                       x86_64                                              1.2-1.el5                                                        base                                                  27 k<br />
krb5-devel                                                                x86_64                                              1.6.1-36.el5_5.5                                                 updates                                              1.9 M<br />
libgomp                                                                   x86_64                                              4.4.0-6.el5                                                      base                                                  68 k<br />
libselinux-devel                                                          x86_64                                              1.33.4-5.5.el5                                                   base                                                 149 k<br />
libsepol-devel                                                            x86_64                                              1.15.2-3.el5                                                     base                                                 192 k<br />
lm_sensors-devel                                                          x86_64                                              2.10.7-9.el5                                                     base                                                  85 k<br />
m4                                                                        x86_64                                              1.4.5-3.el5.1                                                    base                                                 171 k<br />
net-snmp-libs                                                             i386                                                1:5.3.2.2-9.el5_5.1                                              updates                                              1.3 M<br />
nspr-devel                                                                x86_64                                              4.8.4-1.el5_4                                                    updates                                              111 k<br />
nss-devel                                                                 x86_64                                              3.12.6-2.el5.centos                                              updates                                              233 k<br />
pkgconfig                                                                 x86_64                                              1:0.21-2.el5                                                     base                                                  61 k<br />
rpm-devel                                                                 x86_64                                              4.4.2.3-18.el5                                                   base                                                 1.3 M<br />
sqlite-devel                                                              x86_64                                              3.3.6-5                                                          base                                                 257 k<br />
zlib-devel                                                                x86_64                                              1.2.3-3                                                          base                                                 102 k<br />
Updating for dependencies:<br />
glibc                                                                     i686                                                2.5-49.el5_5.4                                                   updates                                              5.3 M<br />
glibc                                                                     x86_64                                              2.5-49.el5_5.4                                                   updates                                              4.7 M<br />
glibc-common                                                              x86_64                                              2.5-49.el5_5.4                                                   updates                                               16 M<br />
krb5-libs                                                                 i386                                                1.6.1-36.el5_5.5                                                 updates                                              662 k<br />
krb5-libs                                                                 x86_64                                              1.6.1-36.el5_5.5                                                 updates                                              675 k<br />
libgcc                                                                    i386                                                4.1.2-48.el5                                                     base                                                  95 k<br />
libgcc                                                                    x86_64                                              4.1.2-48.el5                                                     base                                                  98 k<br />
libsepol                                                                  i386                                                1.15.2-3.el5                                                     base                                                 128 k<br />
libsepol                                                                  x86_64                                              1.15.2-3.el5                                                     base                                                 131 k<br />
nspr                                                                      i386                                                4.8.4-1.el5_4                                                    updates                                              120 k<br />
nspr                                                                      x86_64                                              4.8.4-1.el5_4                                                    updates                                              119 k<br />
nss                                                                       i386                                                3.12.6-2.el5.centos                                              updates                                              1.1 M<br />
nss                                                                       x86_64                                              3.12.6-2.el5.centos                                              updates                                              1.1 M<br />
openssl                                                                   i686                                                0.9.8e-12.el5_4.6                                                base                                                 1.4 M<br />
openssl                                                                   x86_64                                              0.9.8e-12.el5_4.6                                                base                                                 1.4 M</p>
<p>Transaction Summary<br />
===========================================================================================================================================================================================================================================================<br />
Install     39 Package(s)<br />
Update      15 Package(s)<br />
Remove       0 Package(s)</p>
<p>Total download size: 69 M<br />
Downloading Packages:<br />
(1/54): elfutils-libelf-devel-0.137-3.el5.x86_64.rpm                                                                                                                                                                                |  24 kB     00:00<br />
(2/54): keyutils-libs-devel-1.2-1.el5.x86_64.rpm                                                                                                                                                                                    |  27 kB     00:00<br />
(3/54): pkgconfig-0.21-2.el5.x86_64.rpm                                                                                                                                                                                             |  61 kB     00:00<br />
(4/54): elfutils-devel-0.137-3.el5.x86_64.rpm                                                                                                                                                                                       |  62 kB     00:00<br />
(5/54): elfutils-libelf-devel-static-0.137-3.el5.x86_64.rpm                                                                                                                                                                         |  64 kB     00:00<br />
(6/54): libgomp-4.4.0-6.el5.x86_64.rpm                                                                                                                                                                                              |  68 kB     00:00<br />
(7/54): lm_sensors-devel-2.10.7-9.el5.x86_64.rpm                                                                                                                                                                                    |  85 kB     00:00<br />
(8/54): beecrypt-4.1.2-10.1.1.x86_64.rpm                                                                                                                                                                                            |  87 kB     00:00<br />
(9/54): libgcc-4.1.2-48.el5.i386.rpm                                                                                                                                                                                                |  95 kB     00:00<br />
(10/54): libgcc-4.1.2-48.el5.x86_64.rpm                                                                                                                                                                                             |  98 kB     00:00<br />
(11/54): zlib-devel-1.2.3-3.x86_64.rpm                                                                                                                                                                                              | 102 kB     00:00<br />
(12/54): nspr-devel-4.8.4-1.el5_4.x86_64.rpm                                                                                                                                                                                        | 111 kB     00:00<br />
(13/54): beecrypt-devel-4.1.2-10.1.1.x86_64.rpm                                                                                                                                                                                     | 118 kB     00:00<br />
(14/54): nspr-4.8.4-1.el5_4.x86_64.rpm                                                                                                                                                                                              | 119 kB     00:00<br />
(15/54): elfutils-devel-static-0.137-3.el5.x86_64.rpm                                                                                                                                                                               | 119 kB     00:00<br />
(16/54): nspr-4.8.4-1.el5_4.i386.rpm                                                                                                                                                                                                | 120 kB     00:00<br />
(17/54): libsepol-1.15.2-3.el5.i386.rpm                                                                                                                                                                                             | 128 kB     00:00<br />
(18/54): libsepol-1.15.2-3.el5.x86_64.rpm                                                                                                                                                                                           | 131 kB     00:00<br />
(19/54): libselinux-devel-1.33.4-5.5.el5.x86_64.rpm                                                                                                                                                                                 | 149 kB     00:00<br />
(20/54): m4-1.4.5-3.el5.1.x86_64.rpm                                                                                                                                                                                                | 171 kB     00:00<br />
(21/54): elfutils-libs-0.137-3.el5.x86_64.rpm                                                                                                                                                                                       | 183 kB     00:00<br />
(22/54): libsepol-devel-1.15.2-3.el5.x86_64.rpm                                                                                                                                                                                     | 192 kB     00:00<br />
(23/54): nss-devel-3.12.6-2.el5.centos.x86_64.rpm                                                                                                                                                                                   | 233 kB     00:00<br />
(24/54): sqlite-devel-3.3.6-5.x86_64.rpm                                                                                                                                                                                            | 257 kB     00:00<br />
(25/54): imake-1.0.2-3.x86_64.rpm                                                                                                                                                                                                   | 319 kB     00:00<br />
(26/54): make-3.81-3.el5.x86_64.rpm                                                                                                                                                                                                 | 470 kB     00:00<br />
(27/54): automake-1.9.6-2.3.el5.noarch.rpm                                                                                                                                                                                          | 476 kB     00:00<br />
(28/54): glibc-headers-2.5-49.el5_5.4.x86_64.rpm                                                                                                                                                                                    | 592 kB     00:00<br />
(29/54): e2fsprogs-devel-1.39-23.el5.x86_64.rpm                                                                                                                                                                                     | 632 kB     00:00<br />
(30/54): autoconf-2.59-12.noarch.rpm                                                                                                                                                                                                | 647 kB     00:01<br />
(31/54): krb5-libs-1.6.1-36.el5_5.5.i386.rpm                                                                                                                                                                                        | 662 kB     00:00<br />
(32/54): libtool-1.5.22-7.el5_4.x86_64.rpm                                                                                                                                                                                          | 667 kB     00:01<br />
(33/54): krb5-libs-1.6.1-36.el5_5.5.x86_64.rpm                                                                                                                                                                                      | 675 kB     00:00<br />
(34/54): nss-3.12.6-2.el5.centos.i386.rpm                                                                                                                                                                                           | 1.1 MB     00:00<br />
(35/54): kernel-headers-2.6.18-194.8.1.el5.x86_64.rpm                                                                                                                                                                               | 1.1 MB     00:00<br />
(36/54): nss-3.12.6-2.el5.centos.x86_64.rpm                                                                                                                                                                                         | 1.1 MB     00:00<br />
(37/54): ksh-20100202-1.el5.x86_64.rpm                                                                                                                                                                                              | 1.2 MB     00:04<br />
(38/54): net-snmp-libs-5.3.2.2-9.el5_5.1.i386.rpm                                                                                                                                                                                   | 1.3 MB     00:00<br />
(39/54): rpm-devel-4.4.2.3-18.el5.x86_64.rpm                                                                                                                                                                                        | 1.3 MB     00:01<br />
(40/54): openssl-0.9.8e-12.el5_4.6.i686.rpm                                                                                                                                                                                         | 1.4 MB     00:01<br />
(41/54): openssl-0.9.8e-12.el5_4.6.x86_64.rpm                                                                                                                                                                                       | 1.4 MB     00:01<br />
(42/54): openssl-devel-0.9.8e-12.el5_4.6.x86_64.rpm                                                                                                                                                                                 | 1.9 MB     00:02<br />
(43/54): krb5-devel-1.6.1-36.el5_5.5.x86_64.rpm                                                                                                                                                                                     | 1.9 MB     00:00<br />
(44/54): openssl-devel-0.9.8e-12.el5_4.6.i386.rpm                                                                                                                                                                                   | 1.9 MB     00:02<br />
(45/54): net-snmp-devel-5.3.2.2-9.el5_5.1.i386.rpm                                                                                                                                                                                  | 1.9 MB     00:00<br />
(46/54): net-snmp-devel-5.3.2.2-9.el5_5.1.x86_64.rpm                                                                                                                                                                                | 2.0 MB     00:00<br />
(47/54): glibc-devel-2.5-49.el5_5.4.x86_64.rpm                                                                                                                                                                                      | 2.4 MB     00:00<br />
(48/54): mysql-devel-5.0.77-4.el5_5.3.i386.rpm                                                                                                                                                                                      | 2.4 MB     00:00<br />
(49/54): mysql-devel-5.0.77-4.el5_5.3.x86_64.rpm                                                                                                                                                                                    | 2.5 MB     00:00<br />
(50/54): cpp-4.1.2-48.el5.x86_64.rpm                                                                                                                                                                                                | 2.9 MB     00:03<br />
(51/54): glibc-2.5-49.el5_5.4.x86_64.rpm                                                                                                                                                                                            | 4.7 MB     00:00<br />
(52/54): gcc-4.1.2-48.el5.x86_64.rpm                                                                                                                                                                                                | 5.3 MB     00:08<br />
(53/54): glibc-2.5-49.el5_5.4.i686.rpm                                                                                                                                                                                              | 5.3 MB     00:00<br />
(54/54): glibc-common-2.5-49.el5_5.4.x86_64.rpm                                                                                                                                                                                     |  16 MB     00:02<br />
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<br />
Total                                                                                                                                                                                                                      1.8 MB/s |  69 MB     00:39<br />
Running rpm_check_debug<br />
Running Transaction Test<br />
Finished Transaction Test<br />
Transaction Test Succeeded<br />
Running Transaction<br />
Updating       : libgcc                                                                                                                                                                                                                             1/69<br />
Updating       : glibc-common                                                                                                                                                                                                                       2/69<br />
Installing     : lm_sensors-devel                                                                                                                                                                                                                   3/69<br />
Installing     : zlib-devel                                                                                                                                                                                                                         4/69<br />
Installing     : e2fsprogs-devel                                                                                                                                                                                                                    5/69<br />
Installing     : sqlite-devel                                                                                                                                                                                                                       6/69<br />
Installing     : kernel-headers                                                                                                                                                                                                                     7/69<br />
Installing     : keyutils-libs-devel                                                                                                                                                                                                                8/69<br />
Updating       : libgcc                                                                                                                                                                                                                             9/69<br />
Updating       : glibc                                                                                                                                                                                                                             10/69<br />
Updating       : glibc                                                                                                                                                                                                                             11/69<br />
Updating       : nspr                                                                                                                                                                                                                              12/69<br />
Updating       : krb5-libs                                                                                                                                                                                                                         13/69<br />
Updating       : openssl                                                                                                                                                                                                                           14/69<br />
Updating       : nss                                                                                                                                                                                                                               15/69<br />
Installing     : beecrypt                                                                                                                                                                                                                          16/69<br />
Installing     : elfutils-libs                                                                                                                                                                                                                     17/69<br />
Installing     : libgomp                                                                                                                                                                                                                           18/69<br />
Installing     : pkgconfig                                                                                                                                                                                                                         19/69<br />
Installing     : m4                                                                                                                                                                                                                                20/69<br />
Updating       : libsepol                                                                                                                                                                                                                          21/69<br />
Installing     : cpp                                                                                                                                                                                                                               22/69<br />
Installing     : imake                                                                                                                                                                                                                             23/69<br />
Installing     : make                                                                                                                                                                                                                              24/69<br />
Installing     : ksh                                                                                                                                                                                                                               25/69<br />
Updating       : krb5-libs                                                                                                                                                                                                                         26/69<br />
Updating       : openssl                                                                                                                                                                                                                           27/69<br />
Updating       : nspr                                                                                                                                                                                                                              28/69<br />
Updating       : nss                                                                                                                                                                                                                               29/69<br />
Installing     : net-snmp-libs                                                                                                                                                                                                                     30/69<br />
Updating       : libsepol                                                                                                                                                                                                                          31/69<br />
Installing     : autoconf                                                                                                                                                                                                                          32/69<br />
Installing     : beecrypt-devel                                                                                                                                                                                                                    33/69<br />
Installing     : automake                                                                                                                                                                                                                          34/69<br />
Installing     : libsepol-devel                                                                                                                                                                                                                    35/69<br />
Installing     : libselinux-devel                                                                                                                                                                                                                  36/69<br />
Installing     : krb5-devel                                                                                                                                                                                                                        37/69<br />
Installing     : openssl-devel                                                                                                                                                                                                                     38/69<br />
Installing     : nspr-devel                                                                                                                                                                                                                        39/69<br />
Installing     : nss-devel                                                                                                                                                                                                                         40/69<br />
Installing     : glibc-headers                                                                                                                                                                                                                     41/69<br />
Installing     : glibc-devel                                                                                                                                                                                                                       42/69<br />
Installing     : mysql-devel                                                                                                                                                                                                                       43/69<br />
Installing     : mysql-devel                                                                                                                                                                                                                       44/69<br />
Installing     : openssl-devel                                                                                                                                                                                                                     45/69<br />
Installing     : libtool                                                                                                                                                                                                                           46/69<br />
Installing     : gcc                                                                                                                                                                                                                               47/69<br />
Installing     : elfutils-libelf-devel                                                                                                                                                                                                             48/69<br />
Installing     : rpm-devel                                                                                                                                                                                                                         49/69<br />
Installing     : elfutils-libelf-devel-static                                                                                                                                                                                                      50/69<br />
Installing     : elfutils-devel                                                                                                                                                                                                                    51/69<br />
Installing     : net-snmp-devel                                                                                                                                                                                                                    52/69<br />
Installing     : net-snmp-devel                                                                                                                                                                                                                    53/69<br />
Installing     : elfutils-devel-static                                                                                                                                                                                                             54/69<br />
Cleanup        : nspr                                                                                                                                                                                                                              55/69<br />
Cleanup        : glibc-common                                                                                                                                                                                                                      56/69<br />
Cleanup        : openssl                                                                                                                                                                                                                           57/69<br />
Cleanup        : krb5-libs                                                                                                                                                                                                                         58/69<br />
Cleanup        : libgcc                                                                                                                                                                                                                            59/69<br />
Cleanup        : nss                                                                                                                                                                                                                               60/69<br />
Cleanup        : libsepol                                                                                                                                                                                                                          61/69<br />
Cleanup        : glibc                                                                                                                                                                                                                             62/69<br />
Cleanup        : nspr                                                                                                                                                                                                                              63/69<br />
Cleanup        : libsepol                                                                                                                                                                                                                          64/69<br />
Cleanup        : openssl                                                                                                                                                                                                                           65/69<br />
Cleanup        : nss                                                                                                                                                                                                                               66/69<br />
Cleanup        : glibc                                                                                                                                                                                                                             67/69<br />
Cleanup        : krb5-libs                                                                                                                                                                                                                         68/69<br />
Cleanup        : libgcc                                                                                                                                                                                                                            69/69</p>
<p>Installed:<br />
autoconf.noarch 0:2.59-12             automake.noarch 0:1.9.6-2.3.el5         gcc.x86_64 0:4.1.2-48.el5                 ksh.x86_64 0:20100202-1.el5                 libtool.x86_64 0:1.5.22-7.el5_4          make.x86_64 1:3.81-3.el5<br />
mysql-devel.i386 0:5.0.77-4.el5_5.3   mysql-devel.x86_64 0:5.0.77-4.el5_5.3   net-snmp-devel.i386 1:5.3.2.2-9.el5_5.1   net-snmp-devel.x86_64 1:5.3.2.2-9.el5_5.1   openssl-devel.i386 0:0.9.8e-12.el5_4.6   openssl-devel.x86_64 0:0.9.8e-12.el5_4.6</p>
<p>Dependency Installed:<br />
beecrypt.x86_64 0:4.1.2-10.1.1                    beecrypt-devel.x86_64 0:4.1.2-10.1.1              cpp.x86_64 0:4.1.2-48.el5                                e2fsprogs-devel.x86_64 0:1.39-23.el5          elfutils-devel.x86_64 0:0.137-3.el5<br />
elfutils-devel-static.x86_64 0:0.137-3.el5        elfutils-libelf-devel.x86_64 0:0.137-3.el5        elfutils-libelf-devel-static.x86_64 0:0.137-3.el5        elfutils-libs.x86_64 0:0.137-3.el5            glibc-devel.x86_64 0:2.5-49.el5_5.4<br />
glibc-headers.x86_64 0:2.5-49.el5_5.4             imake.x86_64 0:1.0.2-3                            kernel-headers.x86_64 0:2.6.18-194.8.1.el5               keyutils-libs-devel.x86_64 0:1.2-1.el5        krb5-devel.x86_64 0:1.6.1-36.el5_5.5<br />
libgomp.x86_64 0:4.4.0-6.el5                      libselinux-devel.x86_64 0:1.33.4-5.5.el5          libsepol-devel.x86_64 0:1.15.2-3.el5                     lm_sensors-devel.x86_64 0:2.10.7-9.el5        m4.x86_64 0:1.4.5-3.el5.1<br />
net-snmp-libs.i386 1:5.3.2.2-9.el5_5.1            nspr-devel.x86_64 0:4.8.4-1.el5_4                 nss-devel.x86_64 0:3.12.6-2.el5.centos                   pkgconfig.x86_64 1:0.21-2.el5                 rpm-devel.x86_64 0:4.4.2.3-18.el5<br />
sqlite-devel.x86_64 0:3.3.6-5                     zlib-devel.x86_64 0:1.2.3-3</p>
<p>Dependency Updated:<br />
glibc.i686 0:2.5-49.el5_5.4         glibc.x86_64 0:2.5-49.el5_5.4   glibc-common.x86_64 0:2.5-49.el5_5.4  krb5-libs.i386 0:1.6.1-36.el5_5.5  krb5-libs.x86_64 0:1.6.1-36.el5_5.5  libgcc.i386 0:4.1.2-48.el5        libgcc.x86_64 0:4.1.2-48.el5<br />
libsepol.i386 0:1.15.2-3.el5        libsepol.x86_64 0:1.15.2-3.el5  nspr.i386 0:4.8.4-1.el5_4             nspr.x86_64 0:4.8.4-1.el5_4        nss.i386 0:3.12.6-2.el5.centos       nss.x86_64 0:3.12.6-2.el5.centos  openssl.i686 0:0.9.8e-12.el5_4.6<br />
openssl.x86_64 0:0.9.8e-12.el5_4.6</p>
<p>Complete!<br />
[root@testme html]# cd<br />
[root@testme ~]# wget http://www.cacti.net/downloads/spine/cacti-spine-0.8.7g.tar.gz<br />
--15:36:03--  http://www.cacti.net/downloads/spine/cacti-spine-0.8.7g.tar.gz<br />
Resolving www.cacti.net... 140.211.167.231, 209.242.232.5<br />
Connecting to www.cacti.net|140.211.167.231|:80... connected.<br />
HTTP request sent, awaiting response... 200 OK<br />
Length: 592801 (579K) [application/x-gzip]<br />
Saving to: `cacti-spine-0.8.7g.tar.gz'</p>
<p>100%[==================================================================================================================================================================================================================&gt;] 592,801      462K/s   in 1.3s</p>
<p>15:36:05 (462 KB/s) - `cacti-spine-0.8.7g.tar.gz' saved [592801/592801]</p>
<p>[root@testme ~]# tar -xvzf cacti-spine-0.8.7g.tar.gz<br />
cacti-spine-0.8.7g/<br />
cacti-spine-0.8.7g/configure.ac<br />
cacti-spine-0.8.7g/keywords.c<br />
cacti-spine-0.8.7g/ChangeLog<br />
cacti-spine-0.8.7g/snmp.c<br />
cacti-spine-0.8.7g/package<br />
cacti-spine-0.8.7g/Makefile.am<br />
cacti-spine-0.8.7g/INSTALL<br />
cacti-spine-0.8.7g/README-WINDOWS<br />
cacti-spine-0.8.7g/configure<br />
cacti-spine-0.8.7g/util.h<br />
cacti-spine-0.8.7g/COPYING<br />
cacti-spine-0.8.7g/locks.c<br />
cacti-spine-0.8.7g/spine.h<br />
cacti-spine-0.8.7g/ping.c<br />
cacti-spine-0.8.7g/ping.h<br />
cacti-spine-0.8.7g/README<br />
cacti-spine-0.8.7g/nft_popen.h<br />
cacti-spine-0.8.7g/Makefile.in<br />
cacti-spine-0.8.7g/poller.h<br />
cacti-spine-0.8.7g/sql.c<br />
cacti-spine-0.8.7g/NEWS<br />
cacti-spine-0.8.7g/php.h<br />
cacti-spine-0.8.7g/autom4te.cache/<br />
cacti-spine-0.8.7g/autom4te.cache/requests<br />
cacti-spine-0.8.7g/autom4te.cache/traces.1<br />
cacti-spine-0.8.7g/autom4te.cache/output.1<br />
cacti-spine-0.8.7g/autom4te.cache/output.0<br />
cacti-spine-0.8.7g/autom4te.cache/traces.0<br />
cacti-spine-0.8.7g/LICENSE.LGPL<br />
cacti-spine-0.8.7g/LICENSE<br />
cacti-spine-0.8.7g/aclocal.m4<br />
cacti-spine-0.8.7g/bootstrap<br />
cacti-spine-0.8.7g/error.h<br />
cacti-spine-0.8.7g/keywords.h<br />
cacti-spine-0.8.7g/snmp.h<br />
cacti-spine-0.8.7g/error.c<br />
cacti-spine-0.8.7g/config/<br />
cacti-spine-0.8.7g/config/ltmain.sh<br />
cacti-spine-0.8.7g/config/config.sub<br />
cacti-spine-0.8.7g/config/config.guess<br />
cacti-spine-0.8.7g/config/missing<br />
cacti-spine-0.8.7g/config/config.h.in<br />
cacti-spine-0.8.7g/config/depcomp<br />
cacti-spine-0.8.7g/config/install-sh<br />
cacti-spine-0.8.7g/spine.c<br />
cacti-spine-0.8.7g/common.h<br />
cacti-spine-0.8.7g/AUTHORS<br />
cacti-spine-0.8.7g/util.c<br />
cacti-spine-0.8.7g/nft_popen.c<br />
cacti-spine-0.8.7g/poller.c<br />
cacti-spine-0.8.7g/sql.h<br />
cacti-spine-0.8.7g/spine.conf.dist<br />
cacti-spine-0.8.7g/locks.h<br />
cacti-spine-0.8.7g/php.c<br />
[root@testme ~]# cd cacti-spine-0.8.7g<br />
[root@testme cacti-spine-0.8.7g]# autoreconf -fvi<br />
autoreconf: Entering directory `.'<br />
autoreconf: configure.ac: not using Gettext<br />
autoreconf: running: aclocal --force<br />
autoreconf: configure.ac: tracing<br />
autoreconf: running: libtoolize --copy --force<br />
Using `AC_PROG_RANLIB' is rendered obsolete by `AC_PROG_LIBTOOL'<br />
Putting files in AC_CONFIG_AUX_DIR, `config'.<br />
autoreconf: running: /usr/bin/autoconf --force<br />
autoreconf: running: /usr/bin/autoheader --force<br />
autoreconf: running: automake --add-missing --copy --force-missing<br />
autoreconf: Leaving directory `.'<br />
[root@testme cacti-spine-0.8.7g]# make<br />
make: *** No targets specified and no makefile found.  Stop.<br />
[root@testme cacti-spine-0.8.7g]# ./configure<br />
checking build system type... x86_64-unknown-linux-gnu<br />
checking host system type... x86_64-unknown-linux-gnu<br />
checking for a BSD-compatible install... /usr/bin/install -c<br />
checking whether build environment is sane... yes<br />
checking for gawk... gawk<br />
checking whether make sets $(MAKE)... yes<br />
checking for gawk... (cached) gawk<br />
checking for gcc... gcc<br />
checking for C compiler default output file name... a.out<br />
checking whether the C compiler works... yes<br />
checking whether we are cross compiling... no<br />
checking for suffix of executables...<br />
checking for suffix of object files... o<br />
checking whether we are using the GNU C compiler... yes<br />
checking whether gcc accepts -g... yes<br />
checking for gcc option to accept ANSI C... none needed<br />
checking for style of include used by make... GNU<br />
checking dependency style of gcc... gcc3<br />
checking how to run the C preprocessor... gcc -E<br />
checking for a BSD-compatible install... /usr/bin/install -c<br />
checking whether ln -s works... yes<br />
checking for a sed that does not truncate output... /bin/sed<br />
checking for egrep... grep -E<br />
checking for ld used by gcc... /usr/bin/ld<br />
checking if the linker (/usr/bin/ld) is GNU ld... yes<br />
checking for /usr/bin/ld option to reload object files... -r<br />
checking for BSD-compatible nm... /usr/bin/nm -B<br />
checking how to recognise dependent libraries... pass_all<br />
checking for ANSI C header files... yes<br />
checking for sys/types.h... yes<br />
checking for sys/stat.h... yes<br />
checking for stdlib.h... yes<br />
checking for string.h... yes<br />
checking for memory.h... yes<br />
checking for strings.h... yes<br />
checking for inttypes.h... yes<br />
checking for stdint.h... yes<br />
checking for unistd.h... yes<br />
checking dlfcn.h usability... yes<br />
checking dlfcn.h presence... yes<br />
checking for dlfcn.h... yes<br />
checking for g++... no<br />
checking for c++... no<br />
checking for gpp... no<br />
checking for aCC... no<br />
checking for CC... no<br />
checking for cxx... no<br />
checking for cc++... no<br />
checking for cl... no<br />
checking for FCC... no<br />
checking for KCC... no<br />
checking for RCC... no<br />
checking for xlC_r... no<br />
checking for xlC... no<br />
checking whether we are using the GNU C++ compiler... no<br />
checking whether g++ accepts -g... no<br />
checking dependency style of g++... none<br />
checking for g77... no<br />
checking for f77... no<br />
checking for xlf... no<br />
checking for frt... no<br />
checking for pgf77... no<br />
checking for fort77... no<br />
checking for fl32... no<br />
checking for af77... no<br />
checking for f90... no<br />
checking for xlf90... no<br />
checking for pgf90... no<br />
checking for epcf90... no<br />
checking for f95... no<br />
checking for fort... no<br />
checking for xlf95... no<br />
checking for ifc... no<br />
checking for efc... no<br />
checking for pgf95... no<br />
checking for lf95... no<br />
checking for gfortran... no<br />
checking whether we are using the GNU Fortran 77 compiler... no<br />
checking whether  accepts -g... no<br />
checking the maximum length of command line arguments... 32768<br />
checking command to parse /usr/bin/nm -B output from gcc object... ok<br />
checking for objdir... .libs<br />
checking for ar... ar<br />
checking for ranlib... ranlib<br />
checking for strip... strip<br />
checking if gcc supports -fno-rtti -fno-exceptions... no<br />
checking for gcc option to produce PIC... -fPIC<br />
checking if gcc PIC flag -fPIC works... yes<br />
checking if gcc static flag -static works... yes<br />
checking if gcc supports -c -o file.o... yes<br />
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />
checking whether -lc should be explicitly linked in... no<br />
checking dynamic linker characteristics... GNU/Linux ld.so<br />
checking how to hardcode library paths into programs... immediate<br />
checking whether stripping libraries is possible... yes<br />
checking if libtool supports shared libraries... yes<br />
checking whether to build shared libraries... yes<br />
checking whether to build static libraries... yes<br />
configure: creating libtool<br />
appending configuration tag "CXX" to libtool<br />
appending configuration tag "F77" to libtool<br />
checking for ranlib... (cached) ranlib<br />
checking whether to enable -Wall... no<br />
checking for threadsafe gethostbyname()... no<br />
checking for gethostbyname_r in -lnls... no<br />
checking for socket in -lsocket... no<br />
checking for floor in -lm... yes<br />
checking for pthread_exit in -lpthread... yes<br />
checking for deflate in -lz... yes<br />
checking for kstat_close in -lkstat... no<br />
checking for CRYPTO_realloc in -lcrypto... yes<br />
checking for ANSI C header files... (cached) yes<br />
checking sys/socket.h usability... yes<br />
checking sys/socket.h presence... yes<br />
checking for sys/socket.h... yes<br />
checking sys/select.h usability... yes<br />
checking sys/select.h presence... yes<br />
checking for sys/select.h... yes<br />
checking sys/wait.h usability... yes<br />
checking sys/wait.h presence... yes<br />
checking for sys/wait.h... yes<br />
checking sys/time.h usability... yes<br />
checking sys/time.h presence... yes<br />
checking for sys/time.h... yes<br />
checking assert.h usability... yes<br />
checking assert.h presence... yes<br />
checking for assert.h... yes<br />
checking ctype.h usability... yes<br />
checking ctype.h presence... yes<br />
checking for ctype.h... yes<br />
checking errno.h usability... yes<br />
checking errno.h presence... yes<br />
checking for errno.h... yes<br />
checking signal.h usability... yes<br />
checking signal.h presence... yes<br />
checking for signal.h... yes<br />
checking math.h usability... yes<br />
checking math.h presence... yes<br />
checking for math.h... yes<br />
checking malloc.h usability... yes<br />
checking malloc.h presence... yes<br />
checking for malloc.h... yes<br />
checking netdb.h usability... yes<br />
checking netdb.h presence... yes<br />
checking for netdb.h... yes<br />
checking for signal.h... (cached) yes<br />
checking stdarg.h usability... yes<br />
checking stdarg.h presence... yes<br />
checking for stdarg.h... yes<br />
checking stdio.h usability... yes<br />
checking stdio.h presence... yes<br />
checking for stdio.h... yes<br />
checking syslog.h usability... yes<br />
checking syslog.h presence... yes<br />
checking for syslog.h... yes<br />
checking for netinet/in_systm.h... yes<br />
checking for netinet/in.h... yes<br />
checking for netinet/ip.h... yes<br />
checking for netinet/ip_icmp.h... yes<br />
checking for unsigned long long... yes<br />
checking for long long... yes<br />
checking for an ANSI C-conforming const... yes<br />
checking for size_t... yes<br />
checking whether time.h and sys/time.h may both be included... yes<br />
checking whether struct tm is in sys/time.h or time.h... time.h<br />
checking return type of signal handlers... void<br />
checking for malloc... yes<br />
checking for calloc... yes<br />
checking for gettimeofday... yes<br />
checking for strerror... yes<br />
checking for strtoll... yes<br />
checking priv.h usability... no<br />
checking priv.h presence... no<br />
checking for priv.h... no<br />
checking whether we are using Solaris privileges... no<br />
checking for mysql_init in -lmysqlclient_r... yes<br />
checking for mysql_thread_init in -lmysqlclient_r... yes<br />
checking if UCD-SNMP needs crypto support... no<br />
checking if Net-SNMP needs crypto support... yes<br />
checking for snmp_timeout in -lnetsnmp... yes<br />
checking for the spine results buffer size... 1024 bytes<br />
checking for the maximum simultaneous spine scripts... 20<br />
checking for the maximum MySQL buffer size... 65536<br />
checking whether we are using traditional popen... no<br />
checking whether to verify net-snmp library vs header versions... no<br />
checking for glibc gethostbyname_r... yes<br />
checking for Solaris/Irix gethostbyname_r... no<br />
checking for HP-UX gethostbyname_r... no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating config/config.h<br />
config.status: executing depfiles commands<br />
[root@testme cacti-spine-0.8.7g]# make<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT sql.o -MD -MP -MF ".deps/sql.Tpo" -c -o sql.o sql.c; \<br />
then mv -f ".deps/sql.Tpo" ".deps/sql.Po"; else rm -f ".deps/sql.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT spine.o -MD -MP -MF ".deps/spine.Tpo" -c -o spine.o spine.c; \<br />
then mv -f ".deps/spine.Tpo" ".deps/spine.Po"; else rm -f ".deps/spine.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT util.o -MD -MP -MF ".deps/util.Tpo" -c -o util.o util.c; \<br />
then mv -f ".deps/util.Tpo" ".deps/util.Po"; else rm -f ".deps/util.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT snmp.o -MD -MP -MF ".deps/snmp.Tpo" -c -o snmp.o snmp.c; \<br />
then mv -f ".deps/snmp.Tpo" ".deps/snmp.Po"; else rm -f ".deps/snmp.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT locks.o -MD -MP -MF ".deps/locks.Tpo" -c -o locks.o locks.c; \<br />
then mv -f ".deps/locks.Tpo" ".deps/locks.Po"; else rm -f ".deps/locks.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT poller.o -MD -MP -MF ".deps/poller.Tpo" -c -o poller.o poller.c; \<br />
then mv -f ".deps/poller.Tpo" ".deps/poller.Po"; else rm -f ".deps/poller.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT nft_popen.o -MD -MP -MF ".deps/nft_popen.Tpo" -c -o nft_popen.o nft_popen.c; \<br />
then mv -f ".deps/nft_popen.Tpo" ".deps/nft_popen.Po"; else rm -f ".deps/nft_popen.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT php.o -MD -MP -MF ".deps/php.Tpo" -c -o php.o php.c; \<br />
then mv -f ".deps/php.Tpo" ".deps/php.Po"; else rm -f ".deps/php.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT ping.o -MD -MP -MF ".deps/ping.Tpo" -c -o ping.o ping.c; \<br />
then mv -f ".deps/ping.Tpo" ".deps/ping.Po"; else rm -f ".deps/ping.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT keywords.o -MD -MP -MF ".deps/keywords.Tpo" -c -o keywords.o keywords.c; \<br />
then mv -f ".deps/keywords.Tpo" ".deps/keywords.Po"; else rm -f ".deps/keywords.Tpo"; exit 1; fi<br />
if gcc -DHAVE_CONFIG_H -I. -I. -I./config     -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -MT error.o -MD -MP -MF ".deps/error.Tpo" -c -o error.o error.c; \<br />
then mv -f ".deps/error.Tpo" ".deps/error.Po"; else rm -f ".deps/error.Tpo"; exit 1; fi<br />
/bin/sh ./libtool --tag=CC --mode=link gcc  -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2  -L/usr/lib64 -L/usr/lib64/mysql  -o spine  sql.o spine.o util.o snmp.o locks.o poller.o nft_popen.o php.o ping.o keywords.o error.o  -lnetsnmp -lmysqlclient_r -lmysqlclient_r -lcrypto -lz -lpthread -lm<br />
mkdir .libs<br />
gcc -I/usr/include/net-snmp -I/usr/include/net-snmp/.. -I/usr/include/mysql -g -O2 -o spine sql.o spine.o util.o snmp.o locks.o poller.o nft_popen.o php.o ping.o keywords.o error.o  -L/usr/lib64 -L/usr/lib64/mysql -lnetsnmp -lmysqlclient_r -lcrypto -lz -lpthread -lm<br />
[root@testme cacti-spine-0.8.7g]# make install<br />
make[1]: Entering directory `/root/cacti-spine-0.8.7g'<br />
test -z "/usr/local/spine/bin" || mkdir -p -- "/usr/local/spine/bin"<br />
/bin/sh ./libtool --mode=install /usr/bin/install -c 'spine' '/usr/local/spine/bin/spine'<br />
/usr/bin/install -c spine /usr/local/spine/bin/spine<br />
test -z "/usr/local/spine/etc" || mkdir -p -- "/usr/local/spine/etc"<br />
/usr/bin/install -c -m 644 'spine.conf.dist' '/usr/local/spine/etc/spine.conf.dist'<br />
make[1]: Leaving directory `/root/cacti-spine-0.8.7g'<br />
[root@testme cacti-spine-0.8.7g]# cp /usr/local/spine/etc/spine.conf.dist /etc/spine.conf<br />
[root@testme cacti-spine-0.8.7g]# vi /etc/spine.conf<br />
[root@testme cacti-spine-0.8.7g]# stat /usr/local/spine/bin/spine<br />
File: `/usr/local/spine/bin/spine'<br />
Size: 247573        Blocks: 496        IO Block: 4096   regular file<br />
Device: ca01h/51713d    Inode: 65634       Links: 1<br />
Access: (0755/-rwxr-xr-x)  Uid: (    0/    root)   Gid: (    0/    root)<br />
Access: 2010-08-10 17:01:16.000000000 +0000<br />
Modify: 2010-08-10 17:01:16.000000000 +0000<br />
Change: 2010-08-10 17:01:16.000000000 +0000<br />
[root@testme cacti-spine-0.8.7g]# cat /etc/spine.conf<br />
# +-------------------------------------------------------------------------+<br />
# | Copyright (C) 2005-2010 The Cacti Group                                 |<br />
# |                                                                         |<br />
# | This program is free software; you can redistribute it and/or           |<br />
# | modify it under the terms of the GNU Lesser General Public License      |<br />
# | as published by the Free Software Foundation; either version 2.1        |<br />
# | of the License, or (at your option) any later version.                  |<br />
# |                                                                         |<br />
# | This program is distributed in the hope that it will be useful,         |<br />
# | but WITHOUT ANY WARRANTY; without even the implied warranty of          |<br />
# | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |<br />
# | GNU General Public License for more details.                            |<br />
# +-------------------------------------------------------------------------+<br />
# | spine: a backend data gatherer for Cacti                                |<br />
# +-------------------------------------------------------------------------+<br />
# | This poller would not have been possible without:                       |<br />
# |   - Larry Adams (current development and enhancements)                  |<br />
# |   - Rivo Nurges (rrd support, mysql poller cache, misc functions)       |<br />
# |   - RTG (core poller code, pthreads, snmp, autoconf examples)           |<br />
# |   - Brady Alleman/Doug Warner (threading ideas, implimentation details) |<br />
# +-------------------------------------------------------------------------+<br />
# | Settings                                                                |<br />
# +-------------------------------------------------------------------------+<br />
# | DB_Host         'localhost' or socket file for UNIX/Linux               |<br />
# |                 IP Address for Windows                                  |<br />
# | DB_Database     Database name, typically 'cacti'                        |<br />
# | DB_Port         The database port to use                                |<br />
# | DB_User         The user to access the database, typically 'cactiuser'  |<br />
# | DB_Pass         The password for the Cacti user                         |<br />
# | SNMP_Clientaddr Bind SNMP to a specific address for sites that use      |<br />
# |                 higher security levels                                  |<br />
# | DB_PreG         Set to 1 if you wish to work with older versions of     |<br />
# |                 cacti 0.8.7.                                            |<br />
# +-------------------------------------------------------------------------+<br />
DB_Host         127.0.0.1<br />
DB_Database     cacti<br />
DB_User         cacti<br />
DB_Pass         password<br />
DB_Port         3306<br />
DB_PreG         0</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/howto/cacti/install-cacti-on-rhel-5centos-5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>install smokeping on fedora 9/10</title>
		<link>http://www.linuxismybff.com/howto/smokeping/install-smokeping-on-fedora-910/</link>
		<comments>http://www.linuxismybff.com/howto/smokeping/install-smokeping-on-fedora-910/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:18:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Smokeping]]></category>
		<category><![CDATA[How-to]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=23</guid>
		<description><![CDATA[Smokeping - http://oss.oetiker.ch/smokeping/ - is an AWESOME tool to keep track of the latency of your sites, servers, and best of all your ISP! Currently I have ATT Uverse and I'm loving it, however, I used to live in a more rural area and had to use a fixed wireless ISP for my "broadband". They [...]]]></description>
			<content:encoded><![CDATA[<p>Smokeping - http://oss.oetiker.ch/smokeping/ - is an AWESOME tool to keep track of the latency of your sites, servers, and best of all your ISP! Currently I have ATT Uverse and I'm loving it, however, I used to live in a more rural area and had to use a fixed wireless ISP for my "broadband". They often had issues and had minimal monitoring on their end so they depended on users telling them when things were not going so well (reactive and not proactive, great...).</p>
<p>Smokeping pings each destination on a regular interval and graphs each response noting packetloss and jitter with "smoke".</p>
<p>I personally use it to ping my home router along with a very reliable url such as www.fedora.com. This helps when I am seeing a high amount of packet loss as I can just call up my ISP and point them to my website so that they can see first hand the trends that are occurring and cannot deny the degraded service in any way.</p>
<p>A sample of a smokeping is shown below.</p>
<p><a href="http://oss.oetiker.ch/smokeping/demo.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 523px; height: 241px;" src="http://oss.oetiker.ch/smokeping/demo.png" border="0" alt="" /></a><br />
On both debian and fedora smokeping can be found in the default repositories. Once this has been installed all you need to do is configure '/etc/smokeping/config'</p>
<p>Example noted below.</p>
<blockquote><p>+ trunty</p>
<p>menu = trunty<br />
title = Travis Runty's ping tests</p>
<p>++ Home</p>
<p>menu = trunty's home connection<br />
title = Trunty's home Internet America connection (UVERSE)<br />
host = kyle.travisrunty.com</p></blockquote>
<p>Once you have made the configuration changes save them and restart the smokeping daemon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/howto/smokeping/install-smokeping-on-fedora-910/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>reset mysql root password</title>
		<link>http://www.linuxismybff.com/howto/mysql/reset-mysql-root-password/</link>
		<comments>http://www.linuxismybff.com/howto/mysql/reset-mysql-root-password/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:15:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=20</guid>
		<description><![CDATA[If you have forgotten the root mysql password and you do not have an alternate user with equivalent permissions you can easily define a new root password following the below steps. Note: Obviously mysql connections will be interrupted during this processes as we will be restarting the service and not listening on the network for [...]]]></description>
			<content:encoded><![CDATA[<p>If you have forgotten the root mysql password and you do not have an alternate user with equivalent permissions you can easily define a new root password following the below steps.</p>
<p>Note: Obviously mysql connections will be interrupted during this processes as we will be restarting the service and not listening on the network for a bit.</p>
<blockquote><p>/etc/init.d/mysqld stop<br />
mysqld_safe --skip-networking --skip-grant-tables<br />
mysql -u root<br />
mysql&gt; use mysql;<br />
mysql&gt; update user set Password=PASSWORD('testpassword') where User='root';<br />
mysql&gt; quit<br />
/etc/init.d/mysqld restart</p></blockquote>
<ul></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/howto/mysql/reset-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>add mysql user</title>
		<link>http://www.linuxismybff.com/howto/mysql/add-mysql-user/</link>
		<comments>http://www.linuxismybff.com/howto/mysql/add-mysql-user/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:12:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[add user]]></category>
		<category><![CDATA[grant]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=17</guid>
		<description><![CDATA[How to add a mysql user, define permissions, and set password in one command. mysql&#62; GRANT ALL PRIVILEGES ON *.* TO 'monty'@'localhost' -&#62; IDENTIFIED BY 'some_pass' WITH GRANT OPTION; mysql&#62; GRANT ALL PRIVILEGES ON *.* TO 'monty'@'%' -&#62; IDENTIFIED BY 'some_pass' WITH GRANT OPTION; mysql&#62; GRANT RELOAD,PROCESS ON *.* TO 'admin'@'localhost'; mysql&#62; GRANT USAGE ON [...]]]></description>
			<content:encoded><![CDATA[<p>How to add a mysql user, define permissions, and set password in one command.</p>
<blockquote><p>mysql&gt; GRANT ALL PRIVILEGES ON *.* TO 'monty'@'localhost'<br />
-&gt;     IDENTIFIED BY 'some_pass' WITH GRANT OPTION;<br />
mysql&gt; GRANT ALL PRIVILEGES ON *.* TO 'monty'@'%'<br />
-&gt;     IDENTIFIED BY 'some_pass' WITH GRANT OPTION;<br />
mysql&gt; GRANT RELOAD,PROCESS ON *.* TO 'admin'@'localhost';<br />
mysql&gt; GRANT USAGE ON *.* TO 'dummy'@'localhost';</p></blockquote>
<p>I primarily use the first method, however, obviously different circumstances (permissions) call for different commands.</p>
<p>After you make any permission or user changes be sure to run 'flush privileges;' to apply your changes. (Note: when you restart mysql new changes are applied at this time as well).</p>
<p>Link where information was taken from: http://dev.mysql.com/doc/refman/5.1/en/adding-users.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/howto/mysql/add-mysql-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>simple mysql health check</title>
		<link>http://www.linuxismybff.com/howto/mysql/simple-mysql-health-check/</link>
		<comments>http://www.linuxismybff.com/howto/mysql/simple-mysql-health-check/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:07:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[health check]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=11</guid>
		<description><![CDATA[Simple? Yes. Useful? Yes. Although the below is very simple it can be a very useful and effective way to regularly check apache functionality and its ability to communicate with mysql. &#60;html&#62; &#60;head&#62; &#60;title&#62;Test mysql communications&#60;/title&#62; &#60;/head&#62; &#60;body&#62; &#60;!--test--&#62; &#60;?php $dbhost = 'localhost:3306'; $dbuser = 'trunty'; $dbpass = 'password'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! [...]]]></description>
			<content:encoded><![CDATA[<p>Simple?  Yes.  Useful?  Yes.</p>
<p>Although the below is very simple it can be a very useful and effective way to regularly check apache functionality and its ability to communicate with mysql.</p>
<blockquote><p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Test mysql communications&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;!--test--&gt;<br />
&lt;?php<br />
$dbhost = 'localhost:3306';<br />
$dbuser = 'trunty';<br />
$dbpass = 'password';<br />
$conn = mysql_connect($dbhost, $dbuser, $dbpass);<br />
if(! $conn)<br />
{<br />
die('Could not connect: ' . mysql_error());<br />
}<br />
echo 'Connected successfully';<br />
mysql_close($conn);<br />
?&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/howto/mysql/simple-mysql-health-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>identify high memory usage</title>
		<link>http://www.linuxismybff.com/snippets/identify-high-memory-usage/</link>
		<comments>http://www.linuxismybff.com/snippets/identify-high-memory-usage/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:06:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[free -m]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[meminfo]]></category>
		<category><![CDATA[memory usage]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=9</guid>
		<description><![CDATA[Simple snippets to identify general memory usage. Show top 10 memory consuming processes ps xuaw --sort -rss &#124; head Display general memory summary free -m Display detailed memory breakdown cat /proc/meminfo]]></description>
			<content:encoded><![CDATA[<p>Simple snippets to identify general memory usage.</p>
<p>Show top 10 memory consuming processes<br />
ps xuaw --sort -rss | head</p>
<p>Display general memory summary<br />
free -m</p>
<p>Display detailed memory breakdown<br />
cat /proc/meminfo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/snippets/identify-high-memory-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>high CPU usage</title>
		<link>http://www.linuxismybff.com/snippets/high-cpu-usage/</link>
		<comments>http://www.linuxismybff.com/snippets/high-cpu-usage/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 03:12:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[CPU usage]]></category>
		<category><![CDATA[high]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=7</guid>
		<description><![CDATA[Snippets useful for investigating high CPU usage Top 10 CPU consuming processes ps -eo pcpu,pid,user,args &#124; sort -k 1 -r &#124; head -10 Identify device encountering IO wait (x is optional and will display more details) iostat -x 5 Identify processes encountering IO wait (and usually causing the IO) ps -eo pid,stat,args,wchan &#124; grep ' [...]]]></description>
			<content:encoded><![CDATA[<p>Snippets useful for investigating high CPU usage</p>
<p>Top 10 CPU consuming processes<br />
ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10</p>
<p>Identify device encountering IO wait (x is optional and will display more details)<br />
iostat -x 5</p>
<p>Identify processes encountering IO wait (and usually causing the IO)<br />
ps -eo pid,stat,args,wchan | grep ' D'</p>
<p>And of course the awesome tool of 'sar' that is provided within the 'sysstat' package.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/snippets/high-cpu-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>low disk space</title>
		<link>http://www.linuxismybff.com/snippets/low-disk-space/</link>
		<comments>http://www.linuxismybff.com/snippets/low-disk-space/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 03:06:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[du]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[low]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false">http://www.linuxismybff.com/?p=3</guid>
		<description><![CDATA[Simple snippets useful for troubleshooting low disk space. Using 'du' against a directory and single filesystem and sorting i du -hxc --max-depth=1 / &#124; sort -n Find command that displays the 10 largest files within the defined directory find /tmp -mount -type f -ls &#124; sort -k 7 -r -n &#124; head -10]]></description>
			<content:encoded><![CDATA[<p>Simple snippets useful for troubleshooting low disk space.</p>
<p>Using 'du' against a directory and single filesystem and sorting i<br />
du -hxc --max-depth=1 / | sort -n</p>
<p>Find command that displays the 10 largest files within the defined directory<br />
find /tmp -mount -type f -ls | sort -k 7 -r -n | head -10</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxismybff.com/snippets/low-disk-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

