19
Fri, Apr
5 New Articles

Practical Linux: M Is for MySQL

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

Add MySQL, the most prevalent free database in the Linux world, to your development machine. MySQL completes the LAMP stack.

The previous article on PHP guided you through the first part of Catherine Gaughan-Smith’s third video tutorial on installing the Ubuntu LAMP stack. That part of the video focused on PHP, leaving the remaining five minutes or so to cover the installation of MySQL. Today, we’ll work through that portion. We’ll configure MySQL, and we’ll also add a new SQL plug-in called DBeaver to our PHP Development Tools (PDT) environment.

MySQL: The DB2 of the Linux World

This is a concept that’s often even more alien to us old green-screen types than PHP. PHP is basically just adding a compiler, and we’re at least used to the difference between COBOL and RPG, even if we don’t code in both. So configuring PHP isn’t a completely bizarre concept. But configuring our database? That’s crazy! Heck, when I started in this biz, our database didn’t even have a name. It was just “the database.” But in the Linux world, you can pick your database. You can even use DB2, which is the official name of the database we grew up with.

One big difference between the Linux world and the RPG world is that all access to the database in Linux is performed using SQL syntax. If you’ve written embedded SQL code (SQLRPGLE, or even old-school SQLRPG), then you’re already comfortable with the basics. If not, you’ll need to start cracking some books (or Googling, as the kids say these days). You will have to understand SQL to do LAMP development, so we'll assume that you understand SQL basics and are ready to perform the installation. The video walks you through that installation process.

Using the Tutorial

Now it's time to go back to Catherine Gaughan-Smith's third video. My previous article covered the first 10 and a half minutes of this video, in which Catherine configured PHP. The other portion is about configuring SQL. It's only five and a half minutes, and of that we'll only use about three minutes and 45 seconds. That's because the first 30 seconds centers on port forwarding, which if you recall from the very first article in this series, we don't use. The last minute and a half introduces the standalone MySQL workbench, which doesn't plug in to the Eclipse PDT, so instead I'll show you how to add my favorite SQL plug-in, DBeaver.

Since we're using a very small (but important!) piece of the original, the timeline is similarly brief. The SQL portion starts at 10:30 into the video, but we ignore the first 30 seconds (port forwarding, as mentioned above). We use the next two portions: the MySQL configuration lasts until 13:30, followed by MySQL setup until 14:45. The remainder of the video is MySQL workbench, and I'll instead provide an alternative.

Another Benefit of PDT

At 11:30 of the video, Catherine immediately goes to the standalone terminal software on her Mac desktop. Remember, we don't use a standalone terminal; we use the PDT terminal. Right-click on the SshTerminals option in your Remote Systems view and select Launch Terminal.

Practical Linux: M Is for MySQL - Figure 1
 

Figure 1: Right-click on Ssh Terminals for the context menu and select Launch Terminal.

This brings up a terminal connection, as shown in Figure 2.

Practical Linux: M Is for MySQL - Figure 2

Figure 2: You see a Terminals tab for the connection to our Test1 machine.

This is where it gets fun. We need to edit a rather large file, which can be clumsy in the little window shown. But because this is Eclipse, we can take advantage of its windowing capabilities. You can maximize the Terminals tab by simply double-clicking on that tab; this will expand the tab to take up the entire size of the PDT window. My new favorite method, though, is to detach the tab. Right-click on the newly created terminal tab and select Detach. This will create a standalone window that you can make as tall as you want! Either way, you'll end up with a lot of room to do your work. Remember, we will use vi because nano doesn't work very well in PDT. Execute the following command in the detached tab:

sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf

Here's what the tab looks like, showing off the nice color-coding for comments (you won't see that in a standalone terminal).

Practical Linux: M Is for MySQL - Figure 3

Figure 3: This is a detached editing tab.

Do all the editing that Catherine indicates, and then restart MySQL as shown in the tutorial. This takes you to 13:30 in the video. The next minute or so is devoted to making MySQL respond to requests from outside the virtual machine. That's important, because not only will it allow us to use the DBeaver plug-in that we're about to install, but it also allows the IBM i to directly access the database on the server. That's important if we plan to use the Linux machine as a data repository that’s refreshed by the host. That's only one architectural model, of course. For example, we could have an asynchronous job on the Linux machine reach out to the IBM i for data. But we're going to spend some time using the Eclipse PDT to directly update data on the Linux machine, so this is a good practice.

Install DBeaver into the Eclipse PDT

The real beauty of Eclipse is that it was built from the ground up to be extended. You may find prepackaged toolsets (like IBM's Rational Developer products), but the underlying tenet of Eclipse has always been that the developer is the person who knows best which tools they need. And so, Eclipse continues to make it easier to add these tools, also known as plug-ins. The second article in this series added the Remote System Explorer plug-in. We'll follow nearly the same steps to add another plug-in named DBeaver. From the main Eclipse menu, select Help > Eclipse Marketplace …, then type in DBeaver in the search window:

Practical Linux: M Is for MySQL - Figure 4
 

Figure 4: Type "dbeaver" into the search box.

There are a number of DBeaver-related entries; you'll have to scroll down to get to the actual DBeaver client (at this writing, the client is at version 6.0.0). Find it and click on the Install button.

Practical Linux: M Is for MySQL - Figure 5 

Figure 5: The DBeaver client is at the end of the list; click Install to install it.

Click through the confirmation and license agreement, and the software will be installed. You'll probably have to accept a certificate, and eventually you'll need to restart the PDT. At this point, you'll have the DBeaver plug-in installed and you can configure a connection to your Linux virtual machine.

Configure a Connection to MySQL in Linux

Using the MySQL database requires two steps: configuring the connection and then initiating an SQL session. You only need to configure the connection once.

Practical Linux: M Is for MySQL

Figure 6: Create a new database connection.

Start from the new Database option in PDT's main menu. Click on that and then select the New Database Connection option.

Practical Linux: M Is for MySQL 

Figure 7: Select MySQL as the database.

A prompt comes up that allows you to set up many types of connection, but the good news is that the one you want, MySQL, is prominently displayed as one of the default options.

Practical Linux: M Is for MySQL - Figure 8 

Figure 8: DBeaver will download the latest driver for MySQL.

One of the first things that will happen is the plug-in will recognize that you need some drivers. Typically, you'd have to download those and put them in a folder to be available to PDT, but the DBeaver plug-in handles all of that for you. Just hit the Download button and let it run.

Practical Linux: M Is for MySQL - Figure 9 

Figure 9: Add the parameters, which will connect to your Linux VM and test the connection.

Next, key in the IP address of your virtual machine and the password for your MySQL connection. Because I originally configured my Linux VM to use a bridged adapter instead of network address translation and port forwarding (for more information, refer back to the original article), I can leave the port at 3306. I do have to specify the password for user root, which you may recall was also root. Not secure, but easy to remember. Finally, just hit the Test Connection… button.

Practical Linux: M Is for MySQL - Figure 10

Figure 10: The result of the test should be a success.

If you don't see something like the window above, then you've got something misconfigured. You'll want to go through things carefully to see what might have gone wrong. If nothing is obvious, just start from the beginning. The beauty of using virtual machines is that you can just start over without worrying about clearing disk drives or whatever.

Practical Linux: M Is for MySQL - Figure 11 

Figure 11: Create an editing session for the new connection.

If your connection is successful, you only have a couple additional steps to complete. First, create a new SQL editing session (or editor) using the SQL Editor menu. During the creation process you'll select the newly created connection.

Practical Linux: M Is for MySQL - Figure 12 

Figure 12: These two statements will query the system user table in MySQL.

In the newly created and opened SQL editor, type in the commands as shown. This switches to the MySQL configuration database (an internal database named mysql) and then lists all the users in the user table. Not something you'd do in a production environment, but it's an easy test that's always available.

Practical Linux: M Is for MySQL - Figure 13 

Figure 13: This is what the correctly configured SQL editing session looks like.

If you've done everything correctly, you'll see a panel that looks very much like this. If you've used graphical SQL clients, this should be familiar. If not, you'll need to get familiar. But for now, we've gotten quite far, setting up a complete LAMP stack.

Coming Up

In the next article, I hope to show you how to make this VM interact with the IBM i. Until then, you can get your feet wet with MySQL by using some of the many tutorials and examples on the Internet. One place to start is here. Have fun!

Joe Pluta

Joe Pluta is the founder and chief architect of Pluta Brothers Design, Inc. He has been extending the IBM midrange since the days of the IBM System/3. Joe uses WebSphere extensively, especially as the base for PSC/400, the only product that can move your legacy systems to the Web using simple green-screen commands. He has written several books, including Developing Web 2.0 Applications with EGL for IBM i, E-Deployment: The Fastest Path to the Web, Eclipse: Step by Step, and WDSC: Step by Step. Joe performs onsite mentoring and speaks at user groups around the country. You can reach him at This email address is being protected from spambots. You need JavaScript enabled to view it..


MC Press books written by Joe Pluta available now on the MC Press Bookstore.

Developing Web 2.0 Applications with EGL for IBM i Developing Web 2.0 Applications with EGL for IBM i
Joe Pluta introduces you to EGL Rich UI and IBM’s Rational Developer for the IBM i platform.
List Price $39.95

Now On Sale

WDSC: Step by Step WDSC: Step by Step
Discover incredibly powerful WDSC with this easy-to-understand yet thorough introduction.
List Price $74.95

Now On Sale

Eclipse: Step by Step Eclipse: Step by Step
Quickly get up to speed and productivity using Eclipse.
List Price $59.00

Now On Sale

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: