<?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>lejnieks &#187; CruiseControl</title>
	<atom:link href="http://www.lejnieks.com/tag/cruisecontrol/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lejnieks.com</link>
	<description></description>
	<lastBuildDate>Fri, 29 Jan 2010 19:22:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Some Handy CruiseControl Commands</title>
		<link>http://www.lejnieks.com/2008/07/06/some-handy-cruisecontrol-commands/</link>
		<comments>http://www.lejnieks.com/2008/07/06/some-handy-cruisecontrol-commands/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 05:54:25 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[CruiseControl]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=21</guid>
		<description><![CDATA[Now that I have CruiseControl configured and running on my server I need a way to be able to stop/kill the processes, so I did some research and found this. To start CruiseControl # cd /opt/cruisecontrol-bin-2.6 &#160; # ./cruisecontrol.sh Top stop (aka Kill) CruiseControl use the UNIX command &#8216;ps&#8217; to view the processes and corresponding [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I have CruiseControl configured and running on my server I need a way to be able to stop/kill the processes, so I did some research and found this.<br />
<span id="more-21"></span><br />
To start CruiseControl</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #666666; font-style: italic;"># cd /opt/cruisecontrol-bin-2.6</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># ./cruisecontrol.sh</span></pre></div></div>

<p>Top stop (aka Kill) CruiseControl use the UNIX command &#8216;ps&#8217; to view the processes and corresponding process IDs as shown on <a href="http://sourceforge.net/mailarchive/forum.php?thread_name=C28F09C4.5904%25pbh%40adobe.com&amp;forum_name=cruisecontrol-user">this post</a> on the source forge forums.</p>
<p>Find which PID (Process ID) you want to stop/kill type</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #666666; font-style: italic;"># ps -e</span></pre></div></div>

<p>I dont know what the <em>-e </em> switch is for but from what I can tell it displays all the running processes in the system as opposed to just <em>#ps</em> which displays a limited list. If you want a more verbose list the type in</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #666666; font-style: italic;">#ps -e -f</span></pre></div></div>

<p>(again I don&#8217;t know what the -f) switch is for, but it will return back to you even more information about the ongoing processes in your system. From here you can stop/kill the process you want based off the the displayed PID.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #666666; font-style: italic;"># kill -9 'XXXX'</span></pre></div></div>

<p>where &#8216;XXXX&#8217; is the associated PID for the CruiseControl process you want to kill</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lejnieks.com/2008/07/06/some-handy-cruisecontrol-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing CruiseControl on CentOS with Plesk</title>
		<link>http://www.lejnieks.com/2008/07/05/installing-cruisecontrol-on-centos-with-plesk/</link>
		<comments>http://www.lejnieks.com/2008/07/05/installing-cruisecontrol-on-centos-with-plesk/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 04:59:47 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Continuous Integration]]></category>
		<category><![CDATA[CruiseControl]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=19</guid>
		<description><![CDATA[I recently setup CruiseControl on my server and figured it might be helpful to some to put together a little walk through. My server runs CentOS and Plesk which adds a bit of difficulty above the standard rehl *nix configurations. By the end of this walk through you should be able to browse to your [...]]]></description>
			<content:encoded><![CDATA[<p>I recently setup CruiseControl on my server and figured it might be helpful to some to put together a little walk through. My server runs CentOS and Plesk which adds a bit of difficulty above the standard rehl *nix configurations. By the end of this walk through you should be able to browse to your CC on your server.<br />
<span id="more-19"></span><br />
<strong>What your going to need</strong><br />
1. CruiseControl<br />
2. FlexAntTasks<br />
3. Opera or Mozilla<br />
4. Linux Flash Player<br />
5. Flex 3 SDK<br />
6. Java JDK<br />
7. a virtual frame buffer</p>
<p>Not all of these steps are required to get CruiseControl up and running on your server, but Im going to be posting more on setting up a full CI machine using CruiseControl so I figured, lets get everything on the box from the beginning so we don&#8217;t have to keep downloading and installing things. Lets get started&#8230;</p>
<p><strong>Step 1</strong><br />
For easy cleanup create a tmp / download folder. We will move files around as we need to, but this way when we are done we can easily remove this folder for a quick and easy cleanup.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#mkdir /var/tmp</span></pre></div></div>

<p><strong>Step 2</strong><br />
Download the files your going to use in your installation.</p>
<p>Download CruiseControl from: <a href="http://cruisecontrol.sourceforge.net/download.html">http://cruisecontrol.sourceforge.net/download.html</a> I used version 2.6 and downloaded it directly to my server using wget http://downloads.sourceforge.net/cruisecontrol/cruisecontrol-bin-2.6.zip?modtime=1168552955&amp;big_mirror=0 into my /var folder</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cd /var/tmp</span>
<span style="color: #666666; font-style: italic;">#http://downloads.sourceforge.net/cruisecontrol/cruisecontrol-bin-2.6.zip?modtime=1168552955&amp;amp;big_mirror=0</span></pre></div></div>

<p>Download the FlexAntTasks</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#wget http://weblogs.macromedia.com/pmartin/tooling/flexunit/FlexAntTasks.jar</span></pre></div></div>

<p>Download Opera, I used Opera, but feel free to use mozilla, either one will be fine and wont change this walk through. Download Opera locally from here http://www.opera.com/download/  then upload it to your server /var/tmp folder.</p>
<p>Download the <a href="http://www.adobe.com/go/getflashplayerlinux">Linux Flash player</a> from Adobe&#8217;s site and this one your going to want to download locally first then upload to your server. <a href="http://www.adobe.com/go/getflashplayerlinux">http://www.adobe.com/go/getflashplayerlinux</a></p>
<p>Downloading the Flex 3 SDK. A quick way to do this is go to <a href="http://www.adobe.com/products/flex/flexdownloads/index.html">http://www.adobe.com/products/flex/flexdownloads/index.html</a> the first choice is the Flex 3 SDK, agree to the terms of the download, this will expose the download link.<br />
Copy the link location for the sdk download and use a #wget to directly download this file into your server (I dont know if I can post this link directly here so I&#8217;m just showing a portion of it)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#wget http://download.macromedia.com/pub/flex/sdk....</span></pre></div></div>

<p>Download the Java JDK from sun&#8217;s download site <a href="http://java.sun.com/javase/downloads/index.jsp">http://java.sun.com/javase/downloads/index.jsp</a> I went with jdk 5 release 15 which you can download directly to your server</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#wget http://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/VerifyItem-Start/jdk-1_5_0_15-linux-i586.bin?BundledLineItemUUID=RPhIBe.osm0AAAEaIc1xwMqB&amp;amp;OrderID=4H5IBe.o6LEAAAEaCs1xwMqB&amp;amp;ProductID=yL7ACUFBjqYAAAEYees5AXuQ&amp;amp;FileName=/jdk-1_5_0_15-linux-i586.bin</span></pre></div></div>

<p>Download virtual frame buffer, at this point we don&#8217;t have to download this file, assuming you have <a href="http://linux.duke.edu/projects/yum/">YUM</a> installed then we will be able to simply yum install it later on. If you do not have YUM installed then you should install it for this and many other reasons.</p>
<p><strong>Step 3</strong><br />
Install CruiseControl by extracting the zip file and copying it to the /opt folder</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cp cruisecontrol-bin-2.6.zip /opt/cruisecontrol-bin-2.6.zip</span>
<span style="color: #666666; font-style: italic;">#unzip /opt/cruisecontrol-bin-2.6.zip</span></pre></div></div>

<p>Installing the JDK was fairly simple, one thing to note though which stumped me is that, where you extract the jdk is where is gets installed so pick your folder wisely I chose /usr/java. You can find more information on installing and configuring java jdk in linux <a href="referenced here: http://java.sun.com/j2se/1.5.0/install-linux.html">here</a></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cp jdk-1_5_0_15-linux-i586.bin /usr/java/jdk-1_5_0_15-linux-i586.bin</span>
<span style="color: #666666; font-style: italic;">#cd /usr/local</span></pre></div></div>

<p>You&#8217;ll need to make this folder executable</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#chmod +x jdk-1_5_0_15-linux-i586.bin</span></pre></div></div>

<p>Now run the installer</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>jdk-<span style="color: #000000;">1</span>_5_0_15-linux-i586.bin</pre></div></div>

<p>Now that java is installed you will need to configure your Java Home, you can find more information on this <a href="http://www.cyberciti.biz/faq/linux-unix-set-java_home-path-variable/ ">here</a>. You can set your Java Home by adding the export path to your bash profile.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#vi ~/.bash_profile</span></pre></div></div>

<p>add in the lines:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">	<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">JAVA_HOME</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>java<span style="color: #000000; font-weight: bold;">/</span>
	<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PATH</span>=<span style="color: #007800;">$PATH</span>:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>java<span style="color: #000000; font-weight: bold;">/</span>jdk1.5.0_07<span style="color: #000000; font-weight: bold;">/</span>bin</pre></div></div>

<p>save and close this file and to see your changes you&#8217;ll need to log out and log back in.</p>
<p>At this point we have CruiseControl and Java installed, now we need to install Opera, we need to do this step before we can install the flash player because the flash player installer will require either Mozilla or Opera to be installed.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cd /var/tmp</span>
<span style="color: #666666; font-style: italic;">#tar -zxvf opera-9.5.tar.gz</span></pre></div></div>

<p>Run the Opera installer, this will install Opera to the &#8220;/usr/bin/opera&#8221; folder, remember or copy this path because you will need it in the next step. If you ever need to get the path of Opera or any application for that matter simply use the #which command which will return back the path to the application</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#which opera</span></pre></div></div>

<p>Now lets install the linux flash player</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cd /var/tmp</span>
<span style="color: #666666; font-style: italic;">#tar -zxvf install_flash_player_9_linux.tar.gz</span>
<span style="color: #666666; font-style: italic;">#cd install_flash_player_9_linux</span>
<span style="color: #666666; font-style: italic;">#flashplayer-installer</span></pre></div></div>

<p>When prompted for the Opera path paste in the path from above.</p>
<p>Last but not least lets install the Virtual Frame buffer needed by Flash to run in linux, we will do this using YUM, again if you do not have YUM I would suggest installing it, as it will make this and many other common installations much much simpler.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> Xvfb</pre></div></div>

<p><strong>Step 4</strong><br />
Now if all goes as planned, or if I haven&#8217;t completely butchered this install walk through then you should be able to now start CruiseControl and start using it via your web browser. To start CruiseControl</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cd /opt/cruisecontrol-bin-2.6</span>
<span style="color: #666666; font-style: italic;"># ./cruisecontrol.sh</span></pre></div></div>

<p>You should see CruiseControl running in your browser on port 8080 http://YourDomain.com:8080</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lejnieks.com/2008/07/05/installing-cruisecontrol-on-centos-with-plesk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Subversion on CentOS with Plesk</title>
		<link>http://www.lejnieks.com/2008/07/05/installing-subversion-on-centos-with-plesk/</link>
		<comments>http://www.lejnieks.com/2008/07/05/installing-subversion-on-centos-with-plesk/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 20:28:25 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[CruiseControl]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=18</guid>
		<description><![CDATA[Just a quick walk through on installing subversion on a CentOS server running Plesk. What your going to want to grab is a fresh copy of YUM to handle the installation of subversion. YUM ( Yellow dog Updater, Modified) is &#8220;&#8230; an automatic updater and package installer/remover for rpm systems. It automatically computes dependencies and [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick walk through on installing <a href="http://subversion.tigris.org/">subversion</a> on a CentOS server running Plesk. What your going to want to grab is a fresh copy of YUM to handle the installation of subversion. <a href="http://linux.duke.edu/projects/yum/">YUM</a> ( Yellow dog Updater, Modified) is &#8220;&#8230; an automatic updater and package installer/remover for rpm systems. It automatically computes dependencies and figures out what things should occur to install packages. It makes it easier to maintain groups of machines without having to manually update each one using rpm&#8230;&#8221;</p>
<p><span id="more-18"></span></p>
<p>First thing your going to want to do is grab a copy of YUM if you don&#8217;t already had it installed, you can check to see if you have YUM installed by typing #yum in your terminal, if you see something like <em>&#8220;Loading &#8220;installonlyn&#8221; plugin&#8221;</em> then you have yum installed and then just skip this step, if you see something like <em>&#8220;-bash: yum: command not found&#8221;</em> then your going to need to install yum. Start by creating an install directory</p>
<p><strong>Step 1. </strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#mkdir /usr/local/src/yum</span>
<span style="color: #666666; font-style: italic;">#cd /usr/local/src/yum</span></pre></div></div>

<p>next download the yum rpm</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#wget http://mirror.centos.org/centos/4/apt/i386/RPMS.os/yum-2.4.3-3.el4.centos.noarch.rpm</span></pre></div></div>

<p>now install yum</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#rpm -Uvh *rpm</span></pre></div></div>

<p>finally update your yum</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#yum -y update</span></pre></div></div>

<p>If you want to clean up after yourself, you can delete the install directory you created at the begining of this step by</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#rm -rf /usr/local/src/yum</span></pre></div></div>

<p>now your ready to install Subversion</p>
<p><strong>Step 2. </strong></p>
<p>Install Subversion</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#yum -y install subversion</span></pre></div></div>

<p>Done! you can test subversion is successfully installed by typing #svnadmin in your console, you should see something like <em>&#8220;Type &#8216;svnadmin help&#8217; for usage.&#8221;</em></p>
<p><strong>Step 3. </strong>Now your going to want to configure subversion to work with plesk. I like to keep things separate, so I run my subversion server through a subdomain http://svn.domain.com so this part will walk you through configuring subversion in a subdomain.</p>
<p>Your going to want to make sure thatmod_dav_svn.so is being loaded into your http.conf, to do this type</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#vi /etc/httpd/conf/httpd.conf</span></pre></div></div>

<p>search for &#8220;mod_dav_svn.so&#8221; in your LoadModules section</p>
<p>my httpd.conf file has the following lines which you can copy and paste into yours</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">LoadModule dav_module modules<span style="color: #000000; font-weight: bold;">/</span>mod_dav.so
&nbsp;
LoadModule dav_svn_module modules<span style="color: #000000; font-weight: bold;">/</span>mod_dav_svn.so
&nbsp;
LoadModule authz_svn_module modules<span style="color: #000000; font-weight: bold;">/</span>mod_authz_svn.so</pre></div></div>

<p>once you have done this, save the httpd.conf file [esc + w + q (escape, write, quit)]</p>
<p><strong>Step 4</strong><br />
Next your going to want to create your central repository, lets put it in the /var/www directory</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>repository</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">svnadmin</span> create <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>repository</pre></div></div>

<p>note, if you choose not to place your repository in this directory, you may run into an issue I came across where my repositories were not configured for the web, and although the authentication windows would display and svn was running correctly, the web browser wouldn&#8217;t show the repos correctly.</p>
<p>After a lot of testing and not getting it to work i read this post: <a href="http://www.svnforum.org/2017/viewtopic.php?t=372&amp;postdays=0&amp;postorder=asc&amp;start=15">http://www.svnforum.org/2017/viewtopic.php?t=372&amp;postdays=0&amp;postorder=asc&amp;start=15</a> and it basically said that if your running centos or rehl then there is a known issue on some configurations that causes svn over http not to work due to permissions. this is fixed by putting your repository in the /var/www directory. so my repo is now in /var/www/repository and that worked, this is why I suggested putting the repository in this directory&#8217;</p>
<p>now you have a working subversion repository you can start using, but it isn&#8217;t accessible to web users yet.</p>
<p><strong>Step 5</strong><br />
Now since plesk will rewrite the main site configuration files every time you use plesk your going to want to write a configuration file in your vhost conf folder</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#vi /var/www/vhosts/[you_domain_name]/subdomains/[you_subdomain_name]/conf/vhost.conf</span></pre></div></div>

<p>This vhost file will automatically be included in apache&#8217;s httpd.conf file. The vhost.conf file will contain the instructions for you subdomain to map to your svn repository.</p>
<p>Edit your vhost.conf file to contain the location of your svn files as shown below</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #666666; font-style: italic;">#svn.yourdomain.com -- vhost.conf file</span>
Location <span style="color: #000000; font-weight: bold;">/</span>
DAV <span style="color: #c20cb9; font-weight: bold;">svn</span>
&nbsp;
SVNPath <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>repository
AuthType Basic
&nbsp;
AuthName <span style="color: #ff0000;">&quot;Subversion Repository&quot;</span>
&nbsp;
AuthUserFile <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>svn-auth-file
Require valid-user
<span style="color: #000000; font-weight: bold;">/</span>Location</pre></div></div>

<p>Save your changes. Now you&#8217;ll want to add a valid user to this repository by typing</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#htpasswd -c /etc/svn-auth-file my_user_name</span></pre></div></div>

<p>whenever you make a change to your vhost files your going to want to restart apache using</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>httpd restart</pre></div></div>

<p>and there you go&#8230; now you should be able to browse to your subdomain and use your repository on your CentOS box running Plesk.</p>
<p>Cheers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lejnieks.com/2008/07/05/installing-subversion-on-centos-with-plesk/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
