This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Config file for collectd(1). | |
| # Please read collectd.conf(5) for a list of options. | |
| # http://collectd.org/ | |
| # | |
| ############################################################################## | |
| # Global # | |
| #----------------------------------------------------------------------------# | |
| # Global settings for the daemon. # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # install collectd with curl_json plugin for jolokia on RHEL6 | |
| # Perform installation as root | |
| # Install prereqs | |
| yum -y install libcurl libcurl-devel rrdtool rrdtool-devel rrdtool-prel libgcrypt-devel gcc make gcc-c++ yajl yajl-devel | |
| # Get Collectd, untar it, make it and install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [[ $# -eq 0 ]]; then | |
| echo "Usage: tslooper.sh hostinput.txt" | |
| exit 1 | |
| else | |
| HOSTS="$1" | |
| fi | |
| rm -rf target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd ~ | |
| wget http://packages.sw.be/git/git-1.7.3-1.el4.rf.i386.rpm | |
| wget http://packages.sw.be/git/perl-Git-1.7.3-1.el4.rf.i386.rpm | |
| rpm -ivh --nodeps git-1.7.3-1.el4.rf.i386.rpm perl-Git-1.7.3-1.el4.rf.i386.rpm | |
| git --version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <xsl:stylesheet version="2.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | |
| xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
| <xsl:output version="1.0" encoding="utf-8" indent="yes" name="xml" /> | |
| <xsl:template match="/"> | |
| <xsl:apply-templates /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <xsl:stylesheet version="2.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | |
| xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
| <xsl:output version="1.0" encoding="utf-8" indent="yes" name="xml" /> | |
| <xsl:template match="/"> | |
| <xsl:apply-templates /> |
NewerOlder