<?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>John McLear &#187; guide</title>
	<atom:link href="http://mclear.co.uk/category/guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://mclear.co.uk</link>
	<description>My mission: To encourage effective use of ICT in Schools. My main focus is on ages 3-11.</description>
	<lastBuildDate>Sat, 04 Feb 2012 14:22:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://primaryblogger.co.uk/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Install Etherpad Lite on Ubuntu and Debian</title>
		<link>http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/</link>
		<comments>http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 20:55:11 +0000</pubDate>
		<dc:creator>Admin Admin</dc:creator>
				<category><![CDATA[etherpad]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[installations]]></category>

		<guid isPermaLink="false">http://mclear.co.uk/?p=3546</guid>
		<description><![CDATA[Installing Etherpad Lite on Debian/Ubuntu clean. Part 1 &#8211; Installing prerequisites Part 2 &#8211; Installing nodeJS and NPM Part 3 &#8211; Installing Etherpad Lite and running it You are now finished installing and Etherpad Lite should be running, you should be able to access it on http://localhost:9001 Only if you have an old version of [...]]]></description>
			<content:encoded><![CDATA[<p><iframe width="600" height="400" src="http://www.youtube.com/embed/swnR9EAhf2Q" frameborder="0" allowfullscreen></iframe></p>
<p>Installing Etherpad Lite on Debian/Ubuntu clean.</p>
<p>Part 1 &#8211; Installing prerequisites</p>
<pre class="brush: plain; title: ; notranslate">
apt-get install build-essential python libssl-dev git-core git libsqlite3-dev gzip curl
# you will be prompted to press Y
</pre>
<p>Part 2 &#8211; Installing nodeJS and NPM</p>
<pre class="brush: plain; title: ; notranslate">
mkdir ~/local
cd ~/local
wget http://nodejs.org/dist/node-v0.4.10.tar.gz
tar -zxvf node-v0.4.10.tar.gz
cd node-v0.4.10
./configure --prefix=$HOME/local/node
make
make install
echo 'export PATH=$HOME/local/node/bin:$PATH' &gt;&gt; ~/.profile
echo 'export NODE_PATH=$HOME/local/node:$HOME/local/node/lib/node_modules' &gt;&gt; ~/.profile
source ~/.profile
curl http://npmjs.org/install.sh | sh
# You will be prompted to type yes.
</pre>
<p>Part 3 &#8211; Installing Etherpad Lite and running it</p>
<pre class="brush: plain; title: ; notranslate">
git clone git://github.com/Pita/etherpad-lite.git
etherpad-lite/bin/run.sh
# You will be prompted to type Etherpad Lite rocks my socks.
</pre>
<p><strong>You are now finished installing and Etherpad Lite should be running, you should be able to access it on http://localhost:9001<br />
</strong></p>
<p>Only if you have an old version of Debian (Lenny) or Ubuntu then you will need to install sqllite from backports.  To do open /etc/apt/sources.list and add:</p>
<pre class="brush: plain; title: ; notranslate">
deb http://backports.debian.org/debian-backports lenny-backports main
</pre>
<p>Save and close the file then type </p>
<pre class="brush: plain; title: ; notranslate">
apt-get update
apt-get -t lenny-backports install libsqlite3-dev
</pre>
<p>You may need to rebuild your modules if you have an error, to do this do an  rm -Rf node_modules and run the startup script (run.sh) again!</p>
<p><a href="https://github.com/Pita/etherpad-lite/wiki/How-to-deploy-Etherpad-Lite-as-a-service" title="Etherpad Lite as a Service">Want to run Etherpad Lite as a service?  Follow this guide</a>.  Make sure you do a chown -R etherpad-lite on the etherpad-lite folder if you have run it as root or any other user before hand..</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Install+Etherpad+Lite+on+Ubuntu+and+Debian&amp;link=http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/&amp;notes=%0D%0A%0D%0AInstalling%20Etherpad%20Lite%20on%20Debian%2FUbuntu%20clean.%0D%0A%0D%0APart%201%20-%20Installing%20prerequisites%0D%0A%0D%0A%0D%0APart%202%20-%20Installing%20nodeJS%20and%20NPM%0D%0A%0D%0A%0D%0APart%203%20-%20Installing%20Etherpad%20Lite%20and%20running%20it%0D%0A%0D%0A%0D%0AYou%20are%20now%20finished%20installing%20and%20Etherpad%20Lite%20should%20be%20running%2C%20you%20should%20be%20able%20to%20access%20it%20on%20http%3A%2F%2F&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Install+Etherpad+Lite+on+Ubuntu+and+Debian&amp;link=http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/&amp;notes=%0D%0A%0D%0AInstalling%20Etherpad%20Lite%20on%20Debian%2FUbuntu%20clean.%0D%0A%0D%0APart%201%20-%20Installing%20prerequisites%0D%0A%0D%0A%0D%0APart%202%20-%20Installing%20nodeJS%20and%20NPM%0D%0A%0D%0A%0D%0APart%203%20-%20Installing%20Etherpad%20Lite%20and%20running%20it%0D%0A%0D%0A%0D%0AYou%20are%20now%20finished%20installing%20and%20Etherpad%20Lite%20should%20be%20running%2C%20you%20should%20be%20able%20to%20access%20it%20on%20http%3A%2F%2F&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Install+Etherpad+Lite+on+Ubuntu+and+Debian&amp;link=http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/&amp;notes=%0D%0A%0D%0AInstalling%20Etherpad%20Lite%20on%20Debian%2FUbuntu%20clean.%0D%0A%0D%0APart%201%20-%20Installing%20prerequisites%0D%0A%0D%0A%0D%0APart%202%20-%20Installing%20nodeJS%20and%20NPM%0D%0A%0D%0A%0D%0APart%203%20-%20Installing%20Etherpad%20Lite%20and%20running%20it%0D%0A%0D%0A%0D%0AYou%20are%20now%20finished%20installing%20and%20Etherpad%20Lite%20should%20be%20running%2C%20you%20should%20be%20able%20to%20access%20it%20on%20http%3A%2F%2F&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Install+Etherpad+Lite+on+Ubuntu+and+Debian&amp;link=http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/&amp;notes=%0D%0A%0D%0AInstalling%20Etherpad%20Lite%20on%20Debian%2FUbuntu%20clean.%0D%0A%0D%0APart%201%20-%20Installing%20prerequisites%0D%0A%0D%0A%0D%0APart%202%20-%20Installing%20nodeJS%20and%20NPM%0D%0A%0D%0A%0D%0APart%203%20-%20Installing%20Etherpad%20Lite%20and%20running%20it%0D%0A%0D%0A%0D%0AYou%20are%20now%20finished%20installing%20and%20Etherpad%20Lite%20should%20be%20running%2C%20you%20should%20be%20able%20to%20access%20it%20on%20http%3A%2F%2F&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Install+Etherpad+Lite+on+Ubuntu+and+Debian&amp;link=http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/&amp;notes=%0D%0A%0D%0AInstalling%20Etherpad%20Lite%20on%20Debian%2FUbuntu%20clean.%0D%0A%0D%0APart%201%20-%20Installing%20prerequisites%0D%0A%0D%0A%0D%0APart%202%20-%20Installing%20nodeJS%20and%20NPM%0D%0A%0D%0A%0D%0APart%203%20-%20Installing%20Etherpad%20Lite%20and%20running%20it%0D%0A%0D%0A%0D%0AYou%20are%20now%20finished%20installing%20and%20Etherpad%20Lite%20should%20be%20running%2C%20you%20should%20be%20able%20to%20access%20it%20on%20http%3A%2F%2F&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Install+Etherpad+Lite+on+Ubuntu+and+Debian&amp;link=http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/&amp;notes=%0D%0A%0D%0AInstalling%20Etherpad%20Lite%20on%20Debian%2FUbuntu%20clean.%0D%0A%0D%0APart%201%20-%20Installing%20prerequisites%0D%0A%0D%0A%0D%0APart%202%20-%20Installing%20nodeJS%20and%20NPM%0D%0A%0D%0A%0D%0APart%203%20-%20Installing%20Etherpad%20Lite%20and%20running%20it%0D%0A%0D%0A%0D%0AYou%20are%20now%20finished%20installing%20and%20Etherpad%20Lite%20should%20be%20running%2C%20you%20should%20be%20able%20to%20access%20it%20on%20http%3A%2F%2F&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Install+Etherpad+Lite+on+Ubuntu+and+Debian&amp;link=http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/&amp;notes=%0D%0A%0D%0AInstalling%20Etherpad%20Lite%20on%20Debian%2FUbuntu%20clean.%0D%0A%0D%0APart%201%20-%20Installing%20prerequisites%0D%0A%0D%0A%0D%0APart%202%20-%20Installing%20nodeJS%20and%20NPM%0D%0A%0D%0A%0D%0APart%203%20-%20Installing%20Etherpad%20Lite%20and%20running%20it%0D%0A%0D%0A%0D%0AYou%20are%20now%20finished%20installing%20and%20Etherpad%20Lite%20should%20be%20running%2C%20you%20should%20be%20able%20to%20access%20it%20on%20http%3A%2F%2F&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

<h3>Related Posts</h3>
<p>No related posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://mclear.co.uk/2011/08/01/install-etherpad-lite-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installing Etherpad on Debian</title>
		<link>http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/</link>
		<comments>http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 23:50:00 +0000</pubDate>
		<dc:creator>Admin Admin</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[etherpad]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[installations]]></category>

		<guid isPermaLink="false">http://mclear.primaryblogger.co.uk/2009/12/19/installing-etherpad-on-debian/</guid>
		<description><![CDATA[IMPORTANT NOTE: THIS DOCUMENTATION IS NOW DATED.  You can now install Etherpad from apt. Installing Etherpad 1.0.1 with APT Add the following line as a source in your graphical package manager (In Ubuntu: System-&#62;Administration-&#62;Synaptic package manager; then Settings-&#62;Repositories and then finally Third party software), or edit the file /etc/apt/sources.list and add it there. Answer the [...]]]></description>
			<content:encoded><![CDATA[<p>IMPORTANT NOTE: THIS DOCUMENTATION IS NOW DATED.  You can now install <a href="http://etherpad.org">Etherpad</a> from apt.</p>
<p><strong>Installing <a href="http://etherpad.org">Etherpad</a> 1.0.1 with APT</strong></p>
<p>Add the following line as a source in your graphical package manager (In Ubuntu: System-&gt;Administration-&gt;Synaptic package manager; then Settings-&gt;Repositories and then finally Third party software), or edit the file /etc/apt/sources.list and add it there.</p>
<pre class="brush: plain; title: ; notranslate">
deb http://apt.etherpad.org all .
</pre>
<pre class="brush: bash; title: ; notranslate">
apt-get update
apt-get install etherpad
</pre>
<p>Answer the questions (if any, depends on your system settings)</p>
<pre class="brush: bash; title: ; notranslate">
/etc/init.d/etherpad start
</pre>
<p>Other Linux distributions<br />
Download the .tgz and unpack it<br />
Follow instructions in README <img src='http://mclear.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>BELOW IS THE OLD GUIDE for Etherpad V1 released by Google</strong></p>
<p><span> </span> <span> </span> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="800" height="440" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/JpbT5H6-qr8&amp;hl=en_GB&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="800" height="440" src="http://www.youtube.com/v/JpbT5H6-qr8&amp;hl=en_GB&amp;fs=1&amp;" allowfullscreen="true"></embed></object></p>
<div><strong>Install prereqs</strong></div>
<pre class="brush: bash; title: ; notranslate">

echo &quot;deb http://ftp.de.debian.org/debian sid main non-free&quot; &gt;&gt; /etc/apt/sources.list
apt-get update
apt-get install sun-java6-jdk
</pre>
<p>If the above fails then do not continue.  The output of</p>
<pre class="brush: bash; title: ; notranslate">java -version</pre>
<p>Should read..</p>
<pre>java version "1.6.0_17"
Java(TM) SE Runtime Environment (build 1.6.0_17-b04)
Java HotSpot(TM) Client VM (build 14.3-b01, mixed mode, sharing)</pre>
<pre class="brush: bash; title: ; notranslate">
apt-get install scala mysql-server libmysql-java mercurial
</pre>
<p>Paste the below to /etc/profile</p>
<pre>export PATH
export JAVA_HOME="/usr/lib/jvm/java-6-sun"
export SCALA_HOME="/usr/share/java"
export JAVA="/usr/bin/java"
export SCALA="/usr/bin/scala"
export PATH="/usr/bin:/usr/bin:/usr/local/mysql/bin:$PATH"
export MYSQL_CONNECTOR_JAR="/usr/share/java/mysql-connector-java-5.1.10.jar"
export JAVA_HOME SCALA_HOME JAVA SCALA MYSQL_CONNECTOR_JAR PATH
umask 022</pre>
<p>Download the etherpad source to /usr/local/etherpad</p>
<pre class="brush: bash; title: ; notranslate">
hg clone https://etherpad.googlecode.com/hg/ /usr/local/etherpad
</pre>
<p><strong>Set the environment variables</strong></p>
<pre class="brush: bash; title: ; notranslate">
export JAVA_HOME=&quot;/usr/lib/jvm/java-6-sun&quot;
export SCALA_HOME=&quot;/usr/share/java&quot;
export JAVA=&quot;/usr/bin/java&quot;
export SCALA=&quot;/usr/bin/scala&quot;
export PATH=&quot;/usr/bin:/usr/bin:/usr/local/mysql/bin:$PATH&quot;
export MYSQL_CONNECTOR_JAR=&quot;/usr/share/java/mysql-connector-java-5.1.10.jar&quot;
</pre>
<p><strong>Add your domain to the superdomain section</strong></p>
<pre class="brush: bash; title: ; notranslate">

nano /usr/local/etherpad/trunk/etherpad/src/etherpad/globals.js
</pre>
<p>Search for etherpad.com and replace it with your domain (confused?  You will figure it out)</p>
<p><strong>Create the etherpad mysql db and privelidges</strong></p>
<pre class="brush: bash; title: ; notranslate">
mysql -u root -p
</pre>
<p>Enter your password when prompted</p>
<pre class="brush: sql; title: ; notranslate">
create database etherpad;
grant all privileges on etherpad.* to 'etherpad'@'localhost' identified by 'password';
quit
</pre>
<div>
<pre class="brush: bash; title: ; notranslate">
cd /usr/local/etherpad/trunk/etherpad/
ln -s /usr/share/java /usr/share/java/lib
bin/rebuildjar.sh
bin/run-local.sh
</pre>
<p><strong>Wait quite a while while it builds.</strong></p>
</div>
<p>Test by browsing to your server at http://hostnameofserver:9000</p>
<p>Making pro work&#8230;</p>
<div>
<p>Make sure it doesn&#8217;t redirect to etherpad.com for pro</p>
<p>Edit /usr/local/etherpad/trunk/etherpad/src/main.js</p>
<p>Replace all instances of Etherpad.com with yourdomain.com</p>
<p>Edit /usr/local/etherpad/trunk/etherpad/src/static/crossdomain.xml</p>
<p>Add to the obvious section</p>
<pre class="brush: xml; title: ; notranslate">

&lt;allow-access-from domain=&quot;yourdomain.com&quot; to-ports=&quot;*&quot;/&gt;

&lt;allow-access-from domain=&quot;*.yourdomain.com&quot; to-ports=&quot;*&quot;/&gt;
</pre>
</div>
<p>Edit /usr/local/etherpad/trunk/etherpad/src/etherpad/pro/pro_utils.js</p>
<p>Replace</p>
<div>
<pre class="brush: plain; title: ; notranslate">var fromDomain = 'etherpad.com';</pre>
</div>
<p>with</p>
<div>
<pre class="brush: plain; title: ; notranslate">var fromDomain = 'yourdomain.com';</pre>
</div>
<p>Note: Originally published on the 19th of Dec 2009, Revised on the 10th of March 2010</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Debian&amp;link=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;notes=IMPORTANT%20NOTE%3A%20THIS%20DOCUMENTATION%20IS%20NOW%20DATED.%20%C2%A0You%20can%20now%20install%20Etherpad%20from%20apt.%0D%0A%0D%0AInstalling%20Etherpad%201.0.1%20with%20APT%0D%0A%0D%0AAdd%20the%20following%20line%20as%20a%20source%20in%20your%20graphical%20package%20manager%20%28In%20Ubuntu%3A%20System-%26gt%3BAdministration-%26gt%3BSynaptic%20package%20manager%3B%20then%20Settings-%26gt%3BRepositories%20a&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Debian&amp;link=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;notes=IMPORTANT%20NOTE%3A%20THIS%20DOCUMENTATION%20IS%20NOW%20DATED.%20%C2%A0You%20can%20now%20install%20Etherpad%20from%20apt.%0D%0A%0D%0AInstalling%20Etherpad%201.0.1%20with%20APT%0D%0A%0D%0AAdd%20the%20following%20line%20as%20a%20source%20in%20your%20graphical%20package%20manager%20%28In%20Ubuntu%3A%20System-%26gt%3BAdministration-%26gt%3BSynaptic%20package%20manager%3B%20then%20Settings-%26gt%3BRepositories%20a&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Debian&amp;link=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;notes=IMPORTANT%20NOTE%3A%20THIS%20DOCUMENTATION%20IS%20NOW%20DATED.%20%C2%A0You%20can%20now%20install%20Etherpad%20from%20apt.%0D%0A%0D%0AInstalling%20Etherpad%201.0.1%20with%20APT%0D%0A%0D%0AAdd%20the%20following%20line%20as%20a%20source%20in%20your%20graphical%20package%20manager%20%28In%20Ubuntu%3A%20System-%26gt%3BAdministration-%26gt%3BSynaptic%20package%20manager%3B%20then%20Settings-%26gt%3BRepositories%20a&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Debian&amp;link=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;notes=IMPORTANT%20NOTE%3A%20THIS%20DOCUMENTATION%20IS%20NOW%20DATED.%20%C2%A0You%20can%20now%20install%20Etherpad%20from%20apt.%0D%0A%0D%0AInstalling%20Etherpad%201.0.1%20with%20APT%0D%0A%0D%0AAdd%20the%20following%20line%20as%20a%20source%20in%20your%20graphical%20package%20manager%20%28In%20Ubuntu%3A%20System-%26gt%3BAdministration-%26gt%3BSynaptic%20package%20manager%3B%20then%20Settings-%26gt%3BRepositories%20a&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Debian&amp;link=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;notes=IMPORTANT%20NOTE%3A%20THIS%20DOCUMENTATION%20IS%20NOW%20DATED.%20%C2%A0You%20can%20now%20install%20Etherpad%20from%20apt.%0D%0A%0D%0AInstalling%20Etherpad%201.0.1%20with%20APT%0D%0A%0D%0AAdd%20the%20following%20line%20as%20a%20source%20in%20your%20graphical%20package%20manager%20%28In%20Ubuntu%3A%20System-%26gt%3BAdministration-%26gt%3BSynaptic%20package%20manager%3B%20then%20Settings-%26gt%3BRepositories%20a&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Debian&amp;link=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;notes=IMPORTANT%20NOTE%3A%20THIS%20DOCUMENTATION%20IS%20NOW%20DATED.%20%C2%A0You%20can%20now%20install%20Etherpad%20from%20apt.%0D%0A%0D%0AInstalling%20Etherpad%201.0.1%20with%20APT%0D%0A%0D%0AAdd%20the%20following%20line%20as%20a%20source%20in%20your%20graphical%20package%20manager%20%28In%20Ubuntu%3A%20System-%26gt%3BAdministration-%26gt%3BSynaptic%20package%20manager%3B%20then%20Settings-%26gt%3BRepositories%20a&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Debian&amp;link=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;notes=IMPORTANT%20NOTE%3A%20THIS%20DOCUMENTATION%20IS%20NOW%20DATED.%20%C2%A0You%20can%20now%20install%20Etherpad%20from%20apt.%0D%0A%0D%0AInstalling%20Etherpad%201.0.1%20with%20APT%0D%0A%0D%0AAdd%20the%20following%20line%20as%20a%20source%20in%20your%20graphical%20package%20manager%20%28In%20Ubuntu%3A%20System-%26gt%3BAdministration-%26gt%3BSynaptic%20package%20manager%3B%20then%20Settings-%26gt%3BRepositories%20a&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

<h3>Related Posts</h3>
<p>No related posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Installing Etherpad on Windows (CYGWIN)</title>
		<link>http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/</link>
		<comments>http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 19:56:00 +0000</pubDate>
		<dc:creator>Admin Admin</dc:creator>
				<category><![CDATA[etherpad]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://mclear.primaryblogger.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/</guid>
		<description><![CDATA[The new documentation for how to deploy Etherpad Lite on Windows is available here &#8212; You should refer to this. BELOW IS THE OLD DOCUMENTATION FOR ETHERPAD FULL Grab the latest Etherpad .zip from http://etherpad.org and extract to c:\etherpad Download and install Cygwin from http://www.cygwin.com/ &#8211; use defaults Download Scala from http://www.scala-lang.org/sites/default/files/linuxsoft_archives/downloads/distrib/files/scala-2.7.7.final.zip and extract to [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://etherpad.org/2011/08/11/installing-etherpad-lite-on-windows/">The new documentation for how to deploy Etherpad Lite on Windows is available here</a> &#8212; You should refer to this.  </strong></p>
<p><strong>BELOW IS THE OLD DOCUMENTATION FOR ETHERPAD FULL</strong></p>
<p>Grab the latest Etherpad .zip from <a href="http://etherpad.org">http://etherpad.org</a> and extract to c:\etherpad</p>
<p>Download and install Cygwin from <a href="http://www.cygwin.com/">http://www.cygwin.com/</a> &#8211; use defaults</p>
<p>Download Scala from <a href="http://www.scala-lang.org/sites/default/files/linuxsoft_archives/downloads/distrib/files/scala-2.7.7.final.zip">http://www.scala-lang.org/sites/default/files/linuxsoft_archives/downloads/distrib/files/scala-2.7.7.final.zip</a> and extract to c:\etherpad\scala-2.7.7</p>
<p>Download and install MySQL server from <a href="http://dev.mysql.com/downloads/mysql/">http://dev.mysql.com/downloads/mysql/</a><br />
Create a MySQL database &#8220;etherpad&#8221; and a database user &#8220;etherpad&#8221;</p>
<p>Download the MySQL connector from <a href="http://dev.mysql.com/downloads/mirror.php?id=402367">http://dev.mysql.com/downloads/mirror.php?id=402367</a> and extract to c:\etherpad\mysql-connector-java-5.1.16</p>
<p>Download Java from <a href="http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u25-download-346242.html">http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u25-download-346242.html</a> and extract to c:\etherpad\JDK1.6_23</p>
<p>Open Cygwin (doubleclick on icon)</p>
<p>Change directory to Etherpad:</p>
<pre class="brush: bash; title: ; notranslate">cd /cygdrive/c/Etherpad/</pre>
<p>Copy the Libraries from one folder to another (temp fix):</p>
<pre class="brush: bash; title: ; notranslate">cp /cygdrive/c/Etherpad/infrastructure/lib/* /cygdrive/c/Etherpad/infrastructure/ace/lib</pre>
<p>Begin your build (if this errors check your task manager and check there are no java instances running that may cause a conflict):</p>
<pre class="brush: bash; title: ; notranslate">bin/build.sh</pre>
<p>Copy the default config to the correct location:</p>
<pre class="brush: bash; title: ; notranslate">cp etherpad/etc/etherpad.localdev-default.properties etherpad/etc/etherpad.local.properties</pre>
<p>Edit etherpad/etc/etherpad.local.properties and set<br />
   etherpad.SQL_JDBC_URL = jdbc:mysql://localhost:3306/etherpad<br />
   etherpad.SQL_PASSWORD = yoursqlpassword<br />
   etherpad.SQL_USERNAME = etherpad<br />
   etherpad.adminPass = somestrongpassword<br />
   topdomains = yourhostname.com,localhost</p>
<p>You can now run etherpad via:</p>
<pre class="brush: bash; title: ; notranslate">bin/run.sh</pre>
<p>Access your Etherpad server at:</p>
<p>http://localhost:9000/</p>
<p><strong>BELOW IS THE OLD DOCUMENTATION THAT I AM LEAVING FOR THE SAKE OF HISTORY AND FOR REFERENCE.   DAVE.  WE CAME A LONG WAY DAVE..  IT&#8217;S BEEN EMOTIONAL :~</strong></p>
<p>Below is my documentation that is sketchy, you should <a href="http://bitbucket.org/gyokuro/etherpad-win/wiki/Home"><strong>follow this guide instead.</strong></a></p>
<p>In Windows:<br />
- Install Java, Scala, MySQL, mysqlconnector and Mercurial under Windows.<br />
- JAVA should be set to the java executable.<br />
- JAVA_HOME should be set to the main jdk directory.<br />
- SCALA should be set to the scala executable.<br />
- SCALA_HOME should be set to the main scala distribution directory.<br />
- PATH should contain $JAVA, $SCALA, and mysql<br />
- MYSQL_CONNECTOR_JAR should be set to the mysql-connector JAR file included in the mysql-connector download.</p>
<p>- Install Cygwin.</p>
<p><a href="http://primaryschoolict.com/epad_cygwin.rar">These Files are needed</a> in /etherpad/trunk/ since the archive holds files both in the etherpad and the infrastructure subfolder.</p>
<div>
<ol>
<li>Make a backup of your bin folder</li>
<li>Extract the contents of the above .Rar file to the bin folder</li>
<li>Run bin/rebuildjar.sh</li>
<li>After installation run bin/run-local.sh</li>
</ol>
</div>
<div>Full docs coming later.  Post questions as comments and I should be able to answer.</div>
<div>All props goto Jutsi for discovering the solution.  Feeling confident without the full docs?  Follow the unix docs for config settings and you should be good to go.</p>
<p>See also:<br />
Etherpad-win repository all props to Gyokuro:  <a href="http://bitbucket.org/gyokuro/etherpad-win/overview/">http://bitbucket.org/gyokuro/etherpad-win/overview/</a><br />
Etherpad-win wiki all props to Gyokuro: <a href="http://bitbucket.org/gyokuro/etherpad-win/wiki/">http://bitbucket.org/gyokuro/etherpad-win/wiki/</a>)</p>
</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Windows+%28CYGWIN%29&amp;link=http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/&amp;notes=The%20new%20documentation%20for%20how%20to%20deploy%20Etherpad%20Lite%20on%20Windows%20is%20available%20here%20--%20You%20should%20refer%20to%20this.%20%20%0D%0A%0D%0ABELOW%20IS%20THE%20OLD%20DOCUMENTATION%20FOR%20ETHERPAD%20FULL%0D%0A%0D%0AGrab%20the%20latest%20Etherpad%20.zip%20from%20http%3A%2F%2Fetherpad.org%20and%20extract%20to%20c%3A%5Cetherpad%0D%0A%0D%0ADownload%20and%20install%20Cygwin%20from%20http%3A%2F%2Fwww.cy&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Windows+%28CYGWIN%29&amp;link=http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/&amp;notes=The%20new%20documentation%20for%20how%20to%20deploy%20Etherpad%20Lite%20on%20Windows%20is%20available%20here%20--%20You%20should%20refer%20to%20this.%20%20%0D%0A%0D%0ABELOW%20IS%20THE%20OLD%20DOCUMENTATION%20FOR%20ETHERPAD%20FULL%0D%0A%0D%0AGrab%20the%20latest%20Etherpad%20.zip%20from%20http%3A%2F%2Fetherpad.org%20and%20extract%20to%20c%3A%5Cetherpad%0D%0A%0D%0ADownload%20and%20install%20Cygwin%20from%20http%3A%2F%2Fwww.cy&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Windows+%28CYGWIN%29&amp;link=http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/&amp;notes=The%20new%20documentation%20for%20how%20to%20deploy%20Etherpad%20Lite%20on%20Windows%20is%20available%20here%20--%20You%20should%20refer%20to%20this.%20%20%0D%0A%0D%0ABELOW%20IS%20THE%20OLD%20DOCUMENTATION%20FOR%20ETHERPAD%20FULL%0D%0A%0D%0AGrab%20the%20latest%20Etherpad%20.zip%20from%20http%3A%2F%2Fetherpad.org%20and%20extract%20to%20c%3A%5Cetherpad%0D%0A%0D%0ADownload%20and%20install%20Cygwin%20from%20http%3A%2F%2Fwww.cy&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Windows+%28CYGWIN%29&amp;link=http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/&amp;notes=The%20new%20documentation%20for%20how%20to%20deploy%20Etherpad%20Lite%20on%20Windows%20is%20available%20here%20--%20You%20should%20refer%20to%20this.%20%20%0D%0A%0D%0ABELOW%20IS%20THE%20OLD%20DOCUMENTATION%20FOR%20ETHERPAD%20FULL%0D%0A%0D%0AGrab%20the%20latest%20Etherpad%20.zip%20from%20http%3A%2F%2Fetherpad.org%20and%20extract%20to%20c%3A%5Cetherpad%0D%0A%0D%0ADownload%20and%20install%20Cygwin%20from%20http%3A%2F%2Fwww.cy&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Windows+%28CYGWIN%29&amp;link=http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/&amp;notes=The%20new%20documentation%20for%20how%20to%20deploy%20Etherpad%20Lite%20on%20Windows%20is%20available%20here%20--%20You%20should%20refer%20to%20this.%20%20%0D%0A%0D%0ABELOW%20IS%20THE%20OLD%20DOCUMENTATION%20FOR%20ETHERPAD%20FULL%0D%0A%0D%0AGrab%20the%20latest%20Etherpad%20.zip%20from%20http%3A%2F%2Fetherpad.org%20and%20extract%20to%20c%3A%5Cetherpad%0D%0A%0D%0ADownload%20and%20install%20Cygwin%20from%20http%3A%2F%2Fwww.cy&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Windows+%28CYGWIN%29&amp;link=http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/&amp;notes=The%20new%20documentation%20for%20how%20to%20deploy%20Etherpad%20Lite%20on%20Windows%20is%20available%20here%20--%20You%20should%20refer%20to%20this.%20%20%0D%0A%0D%0ABELOW%20IS%20THE%20OLD%20DOCUMENTATION%20FOR%20ETHERPAD%20FULL%0D%0A%0D%0AGrab%20the%20latest%20Etherpad%20.zip%20from%20http%3A%2F%2Fetherpad.org%20and%20extract%20to%20c%3A%5Cetherpad%0D%0A%0D%0ADownload%20and%20install%20Cygwin%20from%20http%3A%2F%2Fwww.cy&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+Etherpad+on+Windows+%28CYGWIN%29&amp;link=http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/&amp;notes=The%20new%20documentation%20for%20how%20to%20deploy%20Etherpad%20Lite%20on%20Windows%20is%20available%20here%20--%20You%20should%20refer%20to%20this.%20%20%0D%0A%0D%0ABELOW%20IS%20THE%20OLD%20DOCUMENTATION%20FOR%20ETHERPAD%20FULL%0D%0A%0D%0AGrab%20the%20latest%20Etherpad%20.zip%20from%20http%3A%2F%2Fetherpad.org%20and%20extract%20to%20c%3A%5Cetherpad%0D%0A%0D%0ADownload%20and%20install%20Cygwin%20from%20http%3A%2F%2Fwww.cy&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

<h3>Related Posts</h3>
<p>No related posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Installing the NRPE client, daemon and nagios plugins on debian</title>
		<link>http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/</link>
		<comments>http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 18:27:00 +0000</pubDate>
		<dc:creator>Admin Admin</dc:creator>
				<category><![CDATA[guide]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[nrpe]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://mclear.primaryblogger.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/</guid>
		<description><![CDATA[We assuming have already configured nrpe on your nagios box and you are sudo&#8217;d/root Steps: adduser nagios (set the password)cd /home/nagioswget http://prdownloads.sourceforge.net/sourceforge/nagios/nrpe-2.12.tar.gz* If this step fails visit http://www.nagios.org/download/addons for the latest URL tar -zxvf nrpe-2.8.tar.gzcd nrpe-2.12apt-get install gcc gawk opensslapt-get install makeapt-get install libssl-devapt-get install nagios-plugins./configuremake allmake install-pluginmake install-daemonmake install-daemon-configecho &#8220;only_from = 0.0.0.1&#8243; >> /usr/local/nagios/etc/nrpe.cfg* [...]]]></description>
			<content:encoded><![CDATA[<p>We assuming have already configured nrpe on your nagios box and you are sudo&#8217;d/root</p>
<p>Steps:</p>
<p>adduser nagios (set the password)<br />cd /home/nagios<br />wget http://prdownloads.sourceforge.net/sourceforge/nagios/nrpe-2.12.tar.gz<br /><i>* If this step fails visit http://www.nagios.org/download/addons for the latest URL</i></p>
<p>tar -zxvf nrpe-2.8.tar.gz<br />cd nrpe-2.12<br />apt-get install gcc gawk openssl<br />apt-get install make<br />apt-get install libssl-dev<br />apt-get install nagios-plugins<br />./configure<br />make all<br />make install-plugin<br />make install-daemon<br />make install-daemon-config<br />echo &#8220;only_from = 0.0.0.1&#8243; >> /usr/local/nagios/etc/nrpe.cfg<br /><i>* Remember to replace 0.0.0.1 with your the IP address of your nagios server</i></p>
<p>cp init-script.debian /etc/init.d/nrpe<br />chmod 700 /etc/init.d/nrpe<br />/etc/init.d/nrpe start</p>
<p><span><i>You may want to make this script run on start up</i></span><br />update-rc.d nrpe defaults</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian&amp;link=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;notes=We%20assuming%20have%20already%20configured%20nrpe%20on%20your%20nagios%20box%20and%20you%20are%20sudo%27d%2FrootSteps%3Aadduser%20nagios%20%28set%20the%20password%29cd%20%2Fhome%2Fnagioswget%20http%3A%2F%2Fprdownloads.sourceforge.net%2Fsourceforge%2Fnagios%2Fnrpe-2.12.tar.gz%2A%20If%20this%20step%20fails%20visit%20http%3A%2F%2Fwww.nagios.org%2Fdownload%2Faddons%20for%20the%20latest%20URLtar%20-&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian&amp;link=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;notes=We%20assuming%20have%20already%20configured%20nrpe%20on%20your%20nagios%20box%20and%20you%20are%20sudo%27d%2FrootSteps%3Aadduser%20nagios%20%28set%20the%20password%29cd%20%2Fhome%2Fnagioswget%20http%3A%2F%2Fprdownloads.sourceforge.net%2Fsourceforge%2Fnagios%2Fnrpe-2.12.tar.gz%2A%20If%20this%20step%20fails%20visit%20http%3A%2F%2Fwww.nagios.org%2Fdownload%2Faddons%20for%20the%20latest%20URLtar%20-&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian&amp;link=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;notes=We%20assuming%20have%20already%20configured%20nrpe%20on%20your%20nagios%20box%20and%20you%20are%20sudo%27d%2FrootSteps%3Aadduser%20nagios%20%28set%20the%20password%29cd%20%2Fhome%2Fnagioswget%20http%3A%2F%2Fprdownloads.sourceforge.net%2Fsourceforge%2Fnagios%2Fnrpe-2.12.tar.gz%2A%20If%20this%20step%20fails%20visit%20http%3A%2F%2Fwww.nagios.org%2Fdownload%2Faddons%20for%20the%20latest%20URLtar%20-&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian&amp;link=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;notes=We%20assuming%20have%20already%20configured%20nrpe%20on%20your%20nagios%20box%20and%20you%20are%20sudo%27d%2FrootSteps%3Aadduser%20nagios%20%28set%20the%20password%29cd%20%2Fhome%2Fnagioswget%20http%3A%2F%2Fprdownloads.sourceforge.net%2Fsourceforge%2Fnagios%2Fnrpe-2.12.tar.gz%2A%20If%20this%20step%20fails%20visit%20http%3A%2F%2Fwww.nagios.org%2Fdownload%2Faddons%20for%20the%20latest%20URLtar%20-&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian&amp;link=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;notes=We%20assuming%20have%20already%20configured%20nrpe%20on%20your%20nagios%20box%20and%20you%20are%20sudo%27d%2FrootSteps%3Aadduser%20nagios%20%28set%20the%20password%29cd%20%2Fhome%2Fnagioswget%20http%3A%2F%2Fprdownloads.sourceforge.net%2Fsourceforge%2Fnagios%2Fnrpe-2.12.tar.gz%2A%20If%20this%20step%20fails%20visit%20http%3A%2F%2Fwww.nagios.org%2Fdownload%2Faddons%20for%20the%20latest%20URLtar%20-&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian&amp;link=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;notes=We%20assuming%20have%20already%20configured%20nrpe%20on%20your%20nagios%20box%20and%20you%20are%20sudo%27d%2FrootSteps%3Aadduser%20nagios%20%28set%20the%20password%29cd%20%2Fhome%2Fnagioswget%20http%3A%2F%2Fprdownloads.sourceforge.net%2Fsourceforge%2Fnagios%2Fnrpe-2.12.tar.gz%2A%20If%20this%20step%20fails%20visit%20http%3A%2F%2Fwww.nagios.org%2Fdownload%2Faddons%20for%20the%20latest%20URLtar%20-&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian&amp;link=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;notes=We%20assuming%20have%20already%20configured%20nrpe%20on%20your%20nagios%20box%20and%20you%20are%20sudo%27d%2FrootSteps%3Aadduser%20nagios%20%28set%20the%20password%29cd%20%2Fhome%2Fnagioswget%20http%3A%2F%2Fprdownloads.sourceforge.net%2Fsourceforge%2Fnagios%2Fnrpe-2.12.tar.gz%2A%20If%20this%20step%20fails%20visit%20http%3A%2F%2Fwww.nagios.org%2Fdownload%2Faddons%20for%20the%20latest%20URLtar%20-&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

<h3>Related Posts</h3>
<p>No related posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Etherpad Pro AFTER installation</title>
		<link>http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/</link>
		<comments>http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 23:11:00 +0000</pubDate>
		<dc:creator>Admin Admin</dc:creator>
				<category><![CDATA[etherpad]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://mclear.primaryblogger.co.uk/2009/12/21/configure-etherpad-pro-after-installation/</guid>
		<description><![CDATA[So you have Etherpad installed and working? Now you want to allow users to have sub-domains and their own accounts? Maybe you want the privacy settings, I don&#8217;t know&#8230; First off: Got your * dns wildcard in place? You are going to need it. Then: Set up your smtp server Finally: Remove the need for [...]]]></description>
			<content:encoded><![CDATA[<p>So you have Etherpad installed and working?  Now you want to allow users to have sub-domains and their own accounts?  Maybe you want the privacy settings, I don&#8217;t know&#8230;</p>
<p>First off:  Got your <a href="http://en.wikipedia.org/wiki/Wildcard_DNS_record"><span style="color: #000000;">* dns wildcard</span></a> in place?  You are going to need it.</p>
<p>Then:  <a href="http://mclear.co.uk/2009/12/21/etherpad-email-is-not-working/"><span style="color: #000000;">Set up your smtp server</span></a></p>
<p>Finally:  <a href="http://mclear.co.uk/2009/12/21/etherpad-ssl-https-pro-setup/"><span style="color: #000000;">Remove the need for SSL</span></a></p>
<p>Oh yeah then:  <a href="http://mclear.co.uk/2009/12/21/etherpad-pro-sign-in-and-recovery-password-pages-not-working/">Fix the sign in link</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Configure+Etherpad+Pro+AFTER+installation&amp;link=http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/&amp;notes=So%20you%20have%20Etherpad%20installed%20and%20working%3F%20%20Now%20you%20want%20to%20allow%20users%20to%20have%20sub-domains%20and%20their%20own%20accounts%3F%20%20Maybe%20you%20want%20the%20privacy%20settings%2C%20I%20don%27t%20know...%0D%0A%0D%0AFirst%20off%3A%20%20Got%20your%20%2A%20dns%20wildcard%20in%20place%3F%20%20You%20are%20going%20to%20need%20it.%0D%0A%0D%0AThen%3A%20%20Set%20up%20your%20smtp%20server%0D%0A%0D%0AFinally%3A%20%20Remove&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Configure+Etherpad+Pro+AFTER+installation&amp;link=http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/&amp;notes=So%20you%20have%20Etherpad%20installed%20and%20working%3F%20%20Now%20you%20want%20to%20allow%20users%20to%20have%20sub-domains%20and%20their%20own%20accounts%3F%20%20Maybe%20you%20want%20the%20privacy%20settings%2C%20I%20don%27t%20know...%0D%0A%0D%0AFirst%20off%3A%20%20Got%20your%20%2A%20dns%20wildcard%20in%20place%3F%20%20You%20are%20going%20to%20need%20it.%0D%0A%0D%0AThen%3A%20%20Set%20up%20your%20smtp%20server%0D%0A%0D%0AFinally%3A%20%20Remove&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Configure+Etherpad+Pro+AFTER+installation&amp;link=http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/&amp;notes=So%20you%20have%20Etherpad%20installed%20and%20working%3F%20%20Now%20you%20want%20to%20allow%20users%20to%20have%20sub-domains%20and%20their%20own%20accounts%3F%20%20Maybe%20you%20want%20the%20privacy%20settings%2C%20I%20don%27t%20know...%0D%0A%0D%0AFirst%20off%3A%20%20Got%20your%20%2A%20dns%20wildcard%20in%20place%3F%20%20You%20are%20going%20to%20need%20it.%0D%0A%0D%0AThen%3A%20%20Set%20up%20your%20smtp%20server%0D%0A%0D%0AFinally%3A%20%20Remove&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Configure+Etherpad+Pro+AFTER+installation&amp;link=http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/&amp;notes=So%20you%20have%20Etherpad%20installed%20and%20working%3F%20%20Now%20you%20want%20to%20allow%20users%20to%20have%20sub-domains%20and%20their%20own%20accounts%3F%20%20Maybe%20you%20want%20the%20privacy%20settings%2C%20I%20don%27t%20know...%0D%0A%0D%0AFirst%20off%3A%20%20Got%20your%20%2A%20dns%20wildcard%20in%20place%3F%20%20You%20are%20going%20to%20need%20it.%0D%0A%0D%0AThen%3A%20%20Set%20up%20your%20smtp%20server%0D%0A%0D%0AFinally%3A%20%20Remove&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Configure+Etherpad+Pro+AFTER+installation&amp;link=http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/&amp;notes=So%20you%20have%20Etherpad%20installed%20and%20working%3F%20%20Now%20you%20want%20to%20allow%20users%20to%20have%20sub-domains%20and%20their%20own%20accounts%3F%20%20Maybe%20you%20want%20the%20privacy%20settings%2C%20I%20don%27t%20know...%0D%0A%0D%0AFirst%20off%3A%20%20Got%20your%20%2A%20dns%20wildcard%20in%20place%3F%20%20You%20are%20going%20to%20need%20it.%0D%0A%0D%0AThen%3A%20%20Set%20up%20your%20smtp%20server%0D%0A%0D%0AFinally%3A%20%20Remove&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Configure+Etherpad+Pro+AFTER+installation&amp;link=http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/&amp;notes=So%20you%20have%20Etherpad%20installed%20and%20working%3F%20%20Now%20you%20want%20to%20allow%20users%20to%20have%20sub-domains%20and%20their%20own%20accounts%3F%20%20Maybe%20you%20want%20the%20privacy%20settings%2C%20I%20don%27t%20know...%0D%0A%0D%0AFirst%20off%3A%20%20Got%20your%20%2A%20dns%20wildcard%20in%20place%3F%20%20You%20are%20going%20to%20need%20it.%0D%0A%0D%0AThen%3A%20%20Set%20up%20your%20smtp%20server%0D%0A%0D%0AFinally%3A%20%20Remove&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Configure+Etherpad+Pro+AFTER+installation&amp;link=http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/&amp;notes=So%20you%20have%20Etherpad%20installed%20and%20working%3F%20%20Now%20you%20want%20to%20allow%20users%20to%20have%20sub-domains%20and%20their%20own%20accounts%3F%20%20Maybe%20you%20want%20the%20privacy%20settings%2C%20I%20don%27t%20know...%0D%0A%0D%0AFirst%20off%3A%20%20Got%20your%20%2A%20dns%20wildcard%20in%20place%3F%20%20You%20are%20going%20to%20need%20it.%0D%0A%0D%0AThen%3A%20%20Set%20up%20your%20smtp%20server%0D%0A%0D%0AFinally%3A%20%20Remove&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

<h3>Related Posts</h3>
<p>No related posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://mclear.co.uk/2009/12/21/configure-etherpad-pro-after-installation/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

