20
Sat, Apr
5 New Articles

The Linux Letter: A Practical Connection

Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

In last month's article, I showed you how to install and configure the unixODBC manager as well as the iSeries ODBC driver so that your Linux machine could access the database on your iSeries. This month, we'll take advantage of this connectivity to use our iSeries as a database repository for the open-source project WebCalendar.

Replace Domino?

WebCalendar is an excellent example of the high-quality software being generated in the open-source community. As you may have guessed, WebCalendar is a Web-based calendar system that offers features similar to Lotus Domino's user calendar. It utilizes the PHP Web-scripting language and can use as its back-end any ODBC-compliant database, such as the open-source PostgreSQL and MySQL databases included in most Linux distributions. Assuming that your Linux machine has the appropriate software installed, the installation of WebCalendar is as simple as downloading the tar ball from the WebCalendar site (which, at the time of this writing, is WebCalendar-0.9.39.tar.gz), installing it into the Web server's document root directory, creating the database, and changing the "config.php" file to configure it for your database of choice. If you are comfortable working with your Linux machine, the installation can be accomplished in under 10 minutes.

When I installed WebCalendar on a newly-configured Red Hat 7.3 computer, I found that almost all of the requisite software had been installed, presumably because I had checked the "Web Server" and "Database Server" options during the Red Hat installation. There were only two things missing: 1) the iSeries ODBC drivers, the installation and configuration of which I discussed last month and 2) the ODBC module for PHP. Because PHP had been updated since my 7.3 installation, I downloaded all of the newest PHP RPMs from Red Hat's update site (look for the files called php*7.1.3*) and installed them using the Red Hat Package Manager program rpm.

To evaluate this package, I used my locally installed PostgreSQL for the back-end database and configured everything per the instructions in the INSTALL.html file included in the tar ball. The instructions (INSTALL.html) were accurate, and within minutes I was able to sign on to the administrator account by pointing my browser to my own PC at the URL http://localhost/WebCalendar/login.php.

This program has almost everything you could want in an office calendar system. It can have any number of users, and it has the capability to group users and to overlay users' calendars on top of each other. It supports the concept of "accepting" entries generated by one user into another's calendar, which makes it easy to schedule meetings. It even offers a public calendar. And these are just a few of the attributes of this software; you can "read all about it" on SourceForge's WebCalendar site.

A More Perfect Union

Before you unleash this program onto your users, you have to consider how to properly back up the database utilized by WebCalendar. If the Linux machine hosting WebCalendar happens to be hosted itself on an iSeries machine, then your backup solution is obvious and straightforward. In fact, that's one of the perquisites of Linux on the iSeries. But for those who will run WebCalendar on a separate Intel box, the backup solution is more convoluted.

One option is to use the backup tools provided with the open-source database to create a file on the Linux box that can be copied to the iSeries. For example, the PostgreSQL database (my preferred open-source DB) has the pg_dump command, making it easy to copy the schema definition and data to a text file that can then be shipped anywhere. I use this technique to back up databases on my co-located servers, with the system automatically emailing the backup file to me on a daily basis.

For this project, the obvious solution (to me, anyway) was to take advantage of the Linux/iSeries connectivity and use my iSeries to host the database used by WebCalendar. Since documentation provided with the project indicates that WebCalendar was written to use an ODBC driver (thus making it database agnostic), it was a logical conclusion.

Make It So

Once I decided to pursue the iSeries as my database server, the first order of business was to create a WebCalendar user profile and library on the iSeries into which the database would go. To that end, I created an iSeries user named WEBCAL, with the password WEBCALPW, and I signed on as that user. Next, I started the interactive SQL program (STRSQL) and issued a CREATE SCHEMA WEBCAL command. You could accomplish the same thing via the iSeries Operations Navigator, but I'm still a command-line kind of guy, so I chose to do it that way.

Once the library (schema) was created, I created a source physical file (WEBCAL/SOURCE, RCDLEN(112)) into which I later FTPed the file tables-db2.sql (located in the WebCalendar root directory), using the following commands:

ftp hunt400(you'd use your own iSeries name here)
(log in using WEBCAL user ID and password)

ftp>cd webcal
ftp>put tables-db2.sql source.tables_db2
ftp>quit


Then, from the iSeries side and WEBCAL user profile, I issued the RUNSQLSTM command against the newly created source file member tables_db2 to generate the files. This is where I ran into the first problem. It seems as though that file isn't complete, since it creates only six or so of the 16 tables actually used by WebCalendar. So I got numerous errors when I went to my Web site that was now relying on the iSeries database. Undaunted, I looked over the other "*.sql" files and selected the tables-postgresql.sql file. I created a copy of this file and named it tables-db2.sql, thus overwriting the original. Next, I uploaded the new-and-improved tables-db2.sql to the iSeries using the commands noted earlier. Back on the iSeries, I deleted the tables created earlier, then reran the RUNSQLSTM command on the iSeries side. No joy that time either! The most notable problem among those presented by the SQL differences between PostgreSQL and DB2 is shown in Figure 1.

CREATE TABLE webcal_entry_user (
  cal_id int DEFAULT '0' NOT NULL,            <--- look here
  cal_login varchar(25) DEFAULT '' NOT NULL, 
  cal_status char(1) DEFAULT 'A' NOT NULL,
  cal_category INT DEFAULT NULL,
  PRIMARY KEY ( cal_id,cal_login )
);

Figure 1: This statement won't work under DB2.

Specifically, the line shown below caused the problem:


cal_id int DEFAULT '0' NOT NULL,


This line indicates that we want to create an integer field with a string default. PostgreSQL, and other databases, will automatically CAST a string, such as '1', into a numeric datatype. So for PostgreSQL, this is acceptable. DB2, on the other hand, takes a dim view of this tactic and refuses to create the table. I agree that it's somewhat sloppy; I'm a fan of strong column typing in a DBMS. I believe that it should be the responsibility of the programmer to make the CAST when writing to the database so that no assumptions are made.

My solution, then, was to edit tables-db2.sql and change all of the '0' and '1' instances to 0 and 1, respectively. After I made a couple of iterations of edit, FTP, and RUNSQLSM (to fix some of the other minor syntax differences), I was able to successfully create the database on the iSeries.

Let's Talk

Once the database was set up, the next step was to configure an ODBC data source name to point to the new database. I'm not going to rehash the instructions on unixODBC or the iSeries driver, since all of that was covered last month. Instead, I'll refer you to that installment and to Figure 2, which shows the settings I used to create the system data source name.

http://www.mcpressonline.com/articles/images/2002/The_Practical_ConnectionV400.png

Figure 2: These are the settings I used to configure a system DSN to my WebCalendar database on the iSeries.

Once the DSN was available, the next step was to modify the configuration file includes/config.php, located within the WebCalendar root directory. The required changes were simple. First, I needed to lose WebCalendar's affinity for MySQL. To do that, I simply commented out the lines under the "// MySQL example" heading by prepending two slashes (//) to each of those lines. Then, I configured the ODBC connection by uncommenting the lines under the "// ODBC example" heading, changing the values to the DSN we just created. In my case, the salient lines are shown in Figure 3.

// MySQL example  -- COMMENT THESE OUT
//$db_type = "mysql";
//$db_host = "localhost";
//$db_login = "webcalendar";
//$db_password = "webcal01";
//$db_database = "intranet";

// ODBC example
$db_type = "odbc";
//$db_host = ""; // not used for odbc
$db_login = "webcal";
$db_password = "webcalpw";
// for oracle, db_database should be the name in tnsnames.ora
$db_database = "webcal"; // this is the ODBC DSN

 

Figure 3: These statements show the configuration for an ODBC connection.

Testing...Testing...

Once the connection was up and running, I tested the database by pointing my browser to http://localhost/WebCalendar/login.php. In a brief moment, I was looking at a pile of errors that were unrelated to the ODBC connection (which worked flawlessly). Instead, I was getting SQL errors because the fields that I so cavalierly accepted as really being integers are used in SQL statements as though they are strings. Yikes! These errors prompted me to go back to my original tables-db2 file. This time, I changed the pesky INT DEFAULT 'some digit' to read CHAR(7) DEFAULT 'some digit'. Then, I went through yet one more FTP, delete, and RUNSQLSTM cycle.

Back on the browser, I reloaded the login.php page and...success! I was able to log on as the administrator, set the system defaults, and create a user for myself. Needless to say, I was quite pleased with myself. I dropped a note to the developer of WebCalendar, sending the updated tables-db2.sql file to him. A subsequent note from him indicates that it's now in Concurrent Versioning System (CVS) and available to all from there.

Don't Break Out the Champagne Yet

I had hoped to write the conclusion, "And everyone lived happily ever after," but that's not going to happen. Following a thorough test of the system, I found some additional rough edges, this time caused by character fields in the database being referred to as integers by the SQL statements. Oh, well. Most of the software works fine against the iSeries; in the meantime, I'm going to continue to work with the developer on this latest problem. Once the solution is in hand (which most likely will entail more consistent usage of data types within the PHP scripts), it will be merged back into the developer's CVS.

Such is how it (occasionally) goes in the open-source world. It's almost to be expected, since the version number of WebCalendar hasn't reached the 1-oh stage yet.
To be clear, the problems I had with WebCalendar are a result of using it with the iSeries database (which has strict type-checking). The program works fine when coupled to open-source databases (which are more permissive). In fact, WebCalendar has recently made the Top 10 download list on SourceForge, so it must be working for someone. You really should check out WebCalendar and see if it can be of use in your shop.

That's it for this installment of The Linux Letter. If you have any topics that you would like me to address, feel free to write to me at This email address is being protected from spambots. You need JavaScript enabled to view it.. See you next month!

Barry L. Kline is a consultant and has been developing software on various DEC and IBM midrange platforms for over 20 years. Barry discovered Linux back in the days when it was necessary to download diskette images and source code from the Internet. Since then, he has installed Linux on hundreds of machines, where it functions as servers and workstations in iSeries and Windows networks. He recently co-authored the book Understanding Linux Web Hosting with Don Denoncourt. Barry can be reached at This email address is being protected from spambots. You need JavaScript enabled to view it..

Barry Kline 0

Barry L. Kline is a consultant and has been developing software on various DEC and IBM midrange platforms since the early 1980s. Barry discovered Linux back in the days when it was necessary to download diskette images and source code from the Internet. Since then, he has installed Linux on hundreds of machines, where it functions as servers and workstations in iSeries and Windows networks. He co-authored the book Understanding Web Hosting on Linux with Don Denoncourt. Barry can be reached at This email address is being protected from spambots. You need JavaScript enabled to view it.

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: