Click here to Skip to main content
Click here to Skip to main content

Monitoring a MySQL Server Process

By , 26 Oct 2010
 
window.PNG

Introduction

This article is an example of monitoring a process. It will look for a running process and can start and stop the process, too.

Background

If you are using MySQL 5 as a database server, you already know that there are no icons that show whether the server is running or not. You can look at the task manager, but perhaps you want to shutdown the server because the development session is over and the server uses so much memory (about 50 MB). If you installed the server as a service, you can stop the service, but you must have administrator privileges. If MySQL is not run as a service, you can execute a program to start and stop the server and this article contains the code to easily do that.

Using the code

To use this code, you need the MySQL server software that can be downloaded from www.mysql.com[^], but in reality, any software will do. This just an example.

The program works by monitoring the existence of a running process that you can check with the Windows Task Manager.

working_process.PNG

As shown in the figure, the MySQL server process is named mysqld.exe. To monitor the process, this code is executed periodically with a Timer event as follows:

private void timer1_Tick(object sender, EventArgs e)
{
    Process[] server =  Process.GetProcessesByName("mysqld");            
    if (server.Length != 0)
    {
        bool stat = true;
        //check if current status same as previous. this prevent notification always shown
        if (serverStat != stat) 
        {
            OnRaiseServerEvent(new serverEventArgs(true)); //raise server event
            serverStat = stat;
        }                
    }
    else
    {
        bool stat = false ;
        //check if current status same as previous. this prevent notification always shown
        if (serverStat != stat) 
        {
            OnRaiseServerEvent(new serverEventArgs(false)); //raise server event
            serverStat = stat; //update global status
        }                         
    }
}

Starting the server is easy; just execute mysqld.exe and it's done. Unfortunately you can't simply stop the process to shutdown the server. Well, it could be done, but an internal error might occur inside the server. To stop the server, you should instead execute: mysqladmin.exe --user=root shutdown.

To start the server:

FileInfo fi = new FileInfo(appPath + "\\mysqld.exe");
if (fi.Exists)
    Process.Start(fi.FullName);
else
    errorProvider1.SetError(txtPath, "this isn't mysql installation directory");

Similarly, to stop the server:

FileInfo fi = new FileInfo (appPath + "\\mysqladmin.exe");
if (fi.Exists)
    Process.Start(fi.FullName, "--user=root shutdown");
else
    errorProvider1.SetError(txtPath, "this isn't mysql installation directory");

Points of Interest

This code is useful if you are running MySQL server. You can start and stop the server by clicking a button, rather than by typing from a command prompt. You can also click on a button installed in the system tray as shown in the following image.
icon.PNG

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

asugix
Engineer Donatus Inc.
Indonesia Indonesia
Member
I'm currently a student of Brawijaya University. I work on programming just for hobby. I learn programming since 2nd year of my college. That's when I first bought my PC on year 2004.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
BugAcess starttime errormemberChrosxz1 Feb '13 - 0:08 
QuestionPassing parametermemberChrosxz27 Jan '13 - 17:23 
QuestionNeed VB.Net VersionmemberChrosxz25 Jan '13 - 21:26 
GeneralMy vote of 5memberdarkfr3ak8 Nov '11 - 8:49 
GeneralPathmemberNiemand2527 Jan '09 - 4:28 
GeneralRe: Pathmemberasugix3 Feb '09 - 19:42 
GeneralNice ArticlememberSyed M Hussain21 Jan '09 - 9:54 
Good article
 
Would be nice to have some stats on connections to the database.
 

AnswerRe: Nice Articlememberasugix21 Jan '09 - 18:06 
GeneralMy vote of 1memberkarabax21 Jan '09 - 6:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 26 Oct 2010
Article Copyright 2009 by asugix
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid