Deploying NTT Data UniKix in Azure, Part 2 – Configure TPE and compile the ACCT Application

This post has been republished via RSS; it originally appeared at: Azure Global articles.

Overview

This post continues the steps to deploy NTT Data UniKix on Azure. In Part 1, you deployed the preconfigured VM from Azure Marketplace. In this post, you will configure the TPE and BPE, then compile and deploy the ACCT Demo application. Next, you will connect to the ACCT application using any 3270 emulator you choose. For this blog, I used x3270, a freely available open-source emulator.

 

When you complete this walk-through, you will be running a mainframe legacy application in Azure using the NTT Data UniKix platform.  The ACCT application is an example of a CICS/VSAM application, a type that was prevalent from the 1970s through the 1990s. This is an example of Mainframe Application Rehosting.  Rehosting is a great way to see the rapid benefit of running these applications in the Cloud, typically at 1/10th the cost.

 

Semantics and definitions

Before you begin, it is a good idea to go over some of the definitions of terms we will be using. Unless you are familiar with mainframe environments they might be new to you.

 

  • Transaction Processing Environment (TPE). This is where you run your CICS transactions. The TPC is for online users running applications.
  • UniKix Regions. Like CICS, which allows you to have separate managed execution environments called CICS Regions, UniKix provides a similar functionality. UniKix Regions provide a security and execution boundary for applications.
  • Batch Processing Environment (BPE). The batch environment is a major component of mainframe systems. The BPE is where batch programs are typically called by batch jobs defined by Job Control Language (JCL).  

 

Connect to the VM

 

1. Complete Part 1 if you have not done so already to create and access the VM.

 

2.  On the Overview tab of Azure portal, select Connect.

 

3.  In the Connect to virtual machine dialog box, copy the public IP address to the clipboard or write it down. By default, port 22 has been made available on the VM for connection via SSH.

 

4.  Initiate a terminal session to the VM.  This can be done in several ways. For example, on a Windows 10 computer, the easiest way is to open a command prompt and type: 

 

ssh unikix@99.99.99.99

 

Note: Unikix in the command is the name of the administrator you used when creating the VM.  Also, if you choose to connect via an ssh private key, you will need to provide the path to the public key pair.   

 

Once connected, you are presented with a terminal session in the unikix user home directory.

 

Capture1.JPG

 

Open Port 4444

The next step is to open next step is port 4444, which the ACCT application listens on for this walk-through. This port is used to connect with x3270 (or the terminal emulator you choose). 

 

1. In the Azure portal, select the Virtual machine menu, then go to the Networking selection under Settings

 

2. Click on the Add inbound port rule and add the rule for port 4444.  Allow any protocol and any source.  When you are done it should look similar to the following.

 

 

Capture2.JPG

 

Sourcing the System for BPE and TPE

1. Now, go back to your terminal session.  You will be in the home directory for the unikix user.

 

2. Change to the opt/unikix directory cd /opt/unikix

 

3. Notice that a license file is provided VMUniKixMkt.lic in this directory. You will need this to start the UniKix system. 

 

4. Go to the example directory and run the 2 scripts that will source the BPE and TPE environment.  By Source, we mean create the appropriate links, paths and system variables needed by the scripts we will launch.  Type:

 

.  ./batchenv

and 

.  ./userenv

 

5. After both command run, the command prompt will be displayed.  There is no feedback from these scripts.  Your terminal should look similar to this.

 

Capture3.JPG

 

Start the Batch and UniKix Region

Now you need to start both the Batch environment and UniKix region.  To start Batch type:

 

bam start

 

To start UniKix, type:

 

kixregion start $KIXSYS

 

After you run both scripts, both the Batch and UniKix should be started and running.  Look for any errors.  You should see a terminal similar to this.

 

Capture4.JPG

 

 

Build the ACCT application

The source code for the ACCT application is on the VM in the /opt/unikix/example/TPE directory.  You need to build and deploy the application to the UniKix Region. 

 

To do this type:

 

/.build_programs

 

You should see output similar to the following in the terminal window.

 

Capture5.JPG

 

Shut Down the internal Red Hat Firewall

The last action you will need to perform on the server is to shut down the internal Red Hat Firewall.  By default, on this installation the Red Hat Firewall does not allow network traffic by on ports 4444. 

 

Type the following:

 

sudo systemctl stop firewalld

 

Connect to ACCT with the x3270 emulator

Now you can test the application with your 3270 emulator. 

 

1. Get the public IP address of the machine that you copied earlier when you connected to the terminal.

 

2. Enter this address into the configuration of the 3270 terminal emulator to connect to the UniKix region.  When connect, the standard UniKix start screen appears. The UniKix  application is listening on port 4444. 

 

3. On the UniKix screen, enter ACCT to launch the initial screen of the ACCT application.

 

The 3270 session should look like the following.

 

Capture6.JPG

 

Conclusion

So, in conclusion, in this blog post, you have successfully deployed a Mainframe Rehosting solution in Azure and have connected to it via a 3270 emulator.  Using a similar approach, you can migrate your legacy applications to a modern Cloud platform like Azure.

 

In the next post in this series, we will setup the Management and Administration tools for NTT Data UniKix.

 

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.