Raw: Using OpenSSL to create a certificate authority and update IIS 7.5

  • December 29, 2010
  • James Skemp
A raw dump of information on how to create a certificate authority and etcetera. Step 1: Basic folder and file structure creation Directories: certs, keys, requests Files: database.txt (empty), serial.txt (01, then new line), openssl.cnf (based on OpenSSL file) Step 2: Create key "c:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin\openssl.exe" genrsa -des3 -out keys/_ca.key 2048 Step 3: Create certificate authority certificate "c:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin\openssl.exe" req -config openssl.cnf -new -x509 -days 365 -key keys/_ca.

Read More

Getting started with StatSVN (0.7.0) and CollabNet Subversion Server

  • October 31, 2010
  • James Skemp
This past week I was looking at advanced statistical information about a couple Subversion repositories we use at work. While TortoiseSVN has some basic reporting, the downside is that, out of the box, users must have access to the repository to access this information. StatSVN, seemingly the most popular solution, works rather well as an alternative to granting this access. The downside (or upside, depending upon your perspective) is that viewers of the report can see what files changed, and how many lines, but not what the actual changes were (outside of the logged message).

Read More

Upgrading Subversion 1.5.x to 1.6.0 on Windows Vista - checklist

  • March 23, 2009
  • James Skemp
The following is how I went about performing an upgrade of Subversion 1.5.4 to Subversion 1.6.0. For this I'll be continuing to use the current Windows build of Apache 2.2.x, TortoiseSVN, and of course Subversion. At this time, that's Subversion 1.6.0, TortoiseSVN 1.6.0, and Apache 2.2.11. Determine current setup. Opening the Apache Service Monitor will show the version of Apache and Subversion. In my case, that's 2.2.10 and 1.5.4, respectively. Opening TortoiseSVN's menu and selecting About will display the current version.

Read More

Subversion 1.5.3 and TortoiseSVN 1.5.4 released

  • October 12, 2008
  • James Skemp
The newest versions of Subversion and TortoiseSVN were released just last week. My install guides for Subversion on Vista (and another with Subversion on Vista with Apache 2.2.x) and TortoiseSVN on Vista are still applicable. If installing Subversion with Apache 2.2.x, make sure you stop Apache before replacing files.

Read More

Installing Subversion binaries for Apache 2.2.x

  • August 19, 2008
  • James Skemp
Recently I went ahead and installed Apache 2.2.9 to my Windows Vista Ultimate machine. The purpose of doing that was to move towards a Subversion install running on Apache. In this article, I'll be covering that installation. Getting Subversion Obviously, the first thing to do is to get Subversion. We're looking for the Windows Apache 2.2.x binaries, in particular. At the time of this writing, that's svn-win32-1.5.1.zip. In a previous guide, which you may have followed, I installed the Windows installer with the basic win32 binaries.

Read More

Install Apache 2.2.9 to Windows Vista (Ultimate)

  • August 15, 2008
  • James Skemp
In this article I'll be covering an installation of Apache 2.2.9 to Windows Vista Ultimate. I'll be installing Apache so that you can run IIS as well (hence, Apache will be on a different port). You may want to do this if you want to run Subversion on Apache (as I do). Installing Apache 2.2 Currently the Apache HTTP Server has both a 2.0 and 2.2 version. For new development, the 2.

Read More

Errata: Apache JMeter

  • July 24, 2008
  • James Skemp
The following is errata for Apache JMeter, by Emily H. Halili, and has been submitted to Packt Publishing. Read my review.  Page 4, 2nd to last sentence: 'downlad' should be 'download' Page 13, last sentence: "You *too can* contribute." Page 39, 1st paragraph, last sentence: "as *a* failed request." Page 42, 1st paragraph, last sentence: "retrieve *a* particular value" Page 48, last list item: display shows "KB/sec" but the list item is "Kb/sec" Page 48: Is the mean time in ms?

Read More

Configuring Apache for per-user pages

  • June 18, 2007
  • James Skemp

In a previous post, I covered installing Apache 2.2.4 on Ubuntu. Unfortunately, if you want to create content for this server, you need to either use the root account, or change the permissions on the /usr/local/apache2/htdocs directory. Let's keep things that way.

Read More

Quickie: Install ColdFusion 7.02 on Ubuntu 7.04 with Apache 2.2.4

  • June 15, 2007
  • James Skemp

Once again, may not be the best, but installing ColdFusion 7.02 on Ubuntu 7.04 (Apache 2.2.4 already installed).

Read More

Quickie: Install Apache 2.2.4 on Ubuntu

  • June 15, 2007
  • James Skemp
May not be the best, but ... here's how I installed Apache 2.2.4 on Ubuntu (7.04), based on David Winter's guide Building Apache 2.2 from source for Ubuntu Dapper. All code from a terminal, unless otherwise noted. sudo apt-get install build-essential cd mkdir src cd src I downloaded zlib from http://www.zlib.net/ (zlib source code, version 1.2.3, tar.gz format) into the src folder, and extracted it to the same. cd zlib-1.

Read More