Running Multiple Instances of the Alpha Anywhere Application Server

Description

Step by step instructions for running multiple instances of the application server:

Alpha Anywhere Application Server for IIS

The Alpha Anywhere Application Server can be configured to run multiple instances on the same server, however this approach is made obsolete by the Alpha Anywhere Application Server for IIS. All the benefits from creating multiple instances of Application Server are built-in to the Application Server for IIS. The Application Server for IIS also supports virtual hosting, restarting the server when the system reboots, and is able to scale the number of Application Server instances on-demand to handle surges in application requests.

Running Multiple Instances of the Application Server on Windows

Multiple, separate instances of the Alpha Anywhere Application Server can be run on a single Windows server. Running multiple instances offers several benefits, including:

  • Servicing multiple URLs (www addresses) for separate applications.
  • Fully utilizing the machine's capacity.
  • Building test environments independent from production applications.

Configuring Windows to run multiple instances of the Alpha Anywhere Application Server is not difficult if you know how. And that's where this document comes in. We'll look at the process step-by-step starting with this overview. (We'll refer to the Alpha Anywhere Application Server simply as "Application Server" throughout this document).

An Overview of Running Multiple Alpha Anywhere App Server Instances

At the high level, here are the steps needed to run multiple instances of the Application Server:

  1. Make a note of the IP addresses you have been assigned.

  2. Point your domain name system (DNS) server to the corresponding IPs.

  3. Configure Microsoft's IIS server so it doesn't conflict with the Application Server.

  4. Build a Windows Shortcut for each Application Server instance.

  5. Create a Configuration File for each instance.

Some of these steps may be optional depending on your setup. (For example if you don't plan to use the IIS web server, you can skip step 3.)

Step 1: Gather your IP Addresses

Quick review: An IP address is like a phone number that uniquely identifies your computer on the Internet (or an intranet). For example, www.alphasoftware.com has a an IP of: 162.247.131.85. If you type http://162.247.131.85 into your web browser from practically anywhere in the world, you'll get to the Alpha Software website.

So in order to set up Application Server so that it can be seen on the Internet, you'll need an IP address for each instance of Application Server you plan to run. In addition, if you are planning on running Microsoft IIS as well - you will need an IP for that, too. IP addresses are assigned to you by your hosting provider. So, if you are hosting your server say at GoDaddy, GoDaddy will provide you with your IP addresses.

Of course people don't normally type these numbers into their web browsers, they type in URLs like "www.alphasoftware.com" and a separate server called the DNS (domain name system) server looks up the request and then converts it to the correct IP address.

We'll talk about the DNS in the next step, for now this is what you need to know. For each separate instance of the Application Server you'll need a separate IP address and (optionally) a separate URL (like www.alphasoftware.com). You'll also need a different IP and URL if you are planning on using the IIS server as well.

Using the chart below as a guide, fill out the URLs and IPs you plan to use.

URL
IP
www.alphasoftware.com

162.247.131.85

Step 2: Point your DNS Servers to the Correct IPs

Quick Review: A DNS (Domain Name System) server coverts the URL a user types into their browser, like www.alphasoftware.com(external link), into a numerical IP address so they can find your website.

For each URL you want to use, like say: www.alphasoftware.com(external link), you're going to need to point the domain to the correct IP address.

Some hosting providers (like GoDaddy) provide a self-service interface that lets you manager your domain names. Here is what their interface looks like:

images/DNS2.jpg

This is just one example of an interface used to manage your domain. The interface you use (unless you use GoDaddy) will be different. And in some cases your web hosting provider (or whoever manages your DNS servers) may need to help you.

It may take a little while for the change to propagate - depending on how long the TTL setting was set to before you changed the IP. TTL (or "time to live") indicates the duration a specific IP address is good for - before it is considered outdated information and needs to be looked up again.

Now that the DNS servers are pointed to the right IPs, it's time to configure IIS so that it won't conflict with Application Server. If you're not going to use IIS, you can skip the next step.

Step 3: Configure IIS to work with Application Server

To avoid the complications of working with both the Application Server and IIS running on the same server, use the Alpha Anywhere Application Server for IIS instead.

If you don't plan to use IIS - you can skip this step. But many people (including Alpha Software) have some legacy pages written in ASP that they would like to continue to run rather than rewrite them as A5W pages.

To allow Alpha Anywhere and IIS to run together and both use port 80 (which is the standard port for web traffic) - you'll need to assign them to different IPs.

Set the IP address to use in the IIS Manager as shown below (enter YOUR IP address in the IP address textbox, not the IP address shown):

images/iis.jpg

OK - in theory that should be all. But with IIS 6.0 there is a "gotcha". While IIS will now only serve pages that are requested from this IP - it still takes control of all the other IPs anyway so you can't use them with the Application Server. (If you try to run the Alpha Anywhere Application Server on port 80, you'll get a message saying that there is a conflict.)

However, Microsoft makes a free tool that fixes this problem. You can find complete instructions in the Microsoft support article, "Setting metabase property DisableSocketPooling has no effect". (Don't let the long, technical title of this article scare you. The instructions are actually quite straightforward.)

Step 4: Build a Windows Shortcut for each Application Server instance

In this step we're going to build desktop shortcuts that you can use to manually open new instances of the Alpha Anywhere server. Later on, we'll set up Application Server to run automatically. But for now we'll start each instance manually so that we can configure them.

This step assumes that you already have the Alpha Anywhere Application Server (Application Server) installed. If you haven't installed Application Server, please do so now using the link sent to you via email from Alpha Software.

Once installed we're going to make a new shortcut to the program, and in that shortcut we're going to specify the location of the configuration file.

  1. Right-click on the Windows desktop and choose New > Shortcut from the right-click menu. The Create Shortcut wizard appears.

  2. In the Type the Location of the Item box, type C:\ and click Next.

  3. Give the shortcut a name, like "Instance 1" or "www.alphasoftware.com". The name will is used to differentiate instances of the Application Server.

  4. Click Finish. A new shortcut icon will appear on the desktop.

  5. Right-click on the shortcut just created and choose Properties from the right-click menu.

  6. In the Target Box, enter the following:

    "C:\Program Files (x86)\a5v12 ApplicationServer\A5ApplicationServer.exe" -CONFIGFILE="C:\Config1.xml"
    The last part -CONFIGFILE="C:\Config1.xml" specifies the name and location of the server's configuration file. Here we've named it Config1.xml, but feel free to give it a different name and save it in a different location.
  7. In the Start In box, enter the following:

    "C:\Program Files (x86)\a5v12 ApplicationServer"
  8. Click OK to save your changes.

Test the shortcut by double-clicking it. The Application Server splash screen should appear followed by an error stating the configuration file cannot be found. This error is normal because the configuration file hasn't been created. Creating the configuration file is the next step.

Each instance of the Application Server requires a separate shortcut with an unique configuration file. A quick way to create multiple shortcuts is to duplicate the first shortcut on the desktop. Right-click on each copy of the shortcut and change its properties. Only the shortcut name and XML file need to be changed.

Step 5: Create the Application Server Configuration Files

In the last step, you created shortcuts for each instance of the Application Server you wanted to run. However, when you launched one of these shortcuts, you got an error telling you that the Application Server couldn't find the configuration file.

Creating this file is quite easy. All you need to do is create a blank text document and give it the filename you specified when you created the shortcut.

In our example, the configuration file we specified was C:\Config1.xml, so we'd create a new text file called config1.xml using Windows Explorer. Here are the step-by-step instructions.

  1. Right-click on the Windows Start menu and choose Explore to open Windows Explorer

  2. Navigate to the folder where you specified the configuration file would be. (In our example this was c:\)

  3. From the Tools Menu, choose Folder Options. The Folder Options dialog box appears.

  4. Click the View tab.

  5. Make sure that that the Hide Extensions for Known File Types checkbox is unchecked. (You need to see the file extensions)

    images/folderoptions.jpg
  6. Click OK to close the Folder Options dialog box.

  7. From the File menu, choose New > Text Document.

  8. Give the new text document the name you specified earlier (in our example, it was config.xml). Windows Explorer will warn you that you are changing the file's extension.

You'll need to repeat this process for each instance. To save time, simply copy, paste and rename the configuration file you just created.

So what's the with all these configuration files anyway? Well Application Server uses the configuration file to store its settings. Some of these settings include what port to use, whether to to enable security, the location of the Webroot, and what IP it should use.

To create these settings in the configuration file, you'll use Application Server itself to do it for you.

  1. Double-click on one of the desktop shortcuts you created earlier. This time you should not receive any errors because you created the configuration file. The Application Server icon appears in the system tray.

  2. Right-click on the Application Server icon and choose Configure Server. The Configuration dialog box appears.

    images/config1.png
  3. In the Document Root textbox, choose the location of the webroot for this server instance. The webroot is where you keep your A5w pages, html pages, images and other files. It's the "public" folder that will be accessible via the Internet.

    images/config2.png
  4. Check the Enable Security Framework checkbox.

    images/config3.png
  5. Enter the serial number you want to use for the server by clicking the Add License link.

    images/config4.png
  6. Click the Advanced tab.

    images/config5.png
  7. In the Systray Caption box, enter a name for this server instance, so that you can easily identify later when you have multiple instances running. You might name it after the URL that points to it. For example, we might have called this instance www.alphasoftware.com

    images/config6.png
  8. In the IP Address binding box, type in the IP address associated with this instance. This tells Alpha Anywhere only to serve pages to requests that come from this IP. (Refer back to step 1 where you wrote these down.)

    images/config7.png
  9. Click Save to save your settings and close the Application Server Settings window.

You're almost done. Now it's time to test.

  1. Start the server by right-clicking on the Application Server icon in the system tray, and choose Start Server from the right-click menu.

  2. Open a web browser and type in http:// followed by the IP address for the server and press Enter. In our example it was http://162.247.131.85.

If the webroot you specified above does not contain any files, you should get back a warning page telling you either that security files are incomplete or that directory browsing is not allowed. Either of these are indicators that you have set things up properly. And these warnings will disappear once you have published your files to the webroot.

If you get an error that says "Bad Header Request" it means that you have conflict with IIS, and you should check your work back in Step 3.

If you get no response back, it could mean that either you entered the wrong IP into the Application Server. But it could also be caused by a firewall preventing access to port 80. If your server is offsite at a hosting provider, you may need to ask them to open port 80 for you.

Once the changes to your DNS have taken affect, you should also be able to connect to the web server using its URL.

Repeat these steps to configure each instance you want to run.

About Running Instances as a Service

Running the Alpha Anywhere Classic Application Server as a Windows service is not supported, either directly or by using third party utilities. The Alpha Anywhere Application Server for IIS should be used where running as a service is required.

A Few Final Notes...

Congratulations! You have provisioned a server to run multiple instances Alpha Anywhere. There is no strict upper limit to the number of instances you can run. At Alpha Software, we currently run 5 instances along side IIS on a single server, and the performance is quite good.

In the introduction we said that you can run Alpha Anywhere on different cores of a multi-core processor. The Application Server actually handles this for you. So if you have a Quad processor, the Application Server will determine the best core of the four available cores to run on each time you start a new instance. Everything is handled automatically.