Click here to Skip to main content
Licence CPOL
First Posted 21 Jan 2009
Views 13,868
Bookmarked 17 times

Monitoring a MySQL Server Process

By asugix | 26 Oct 2010
An example of monitoring a Windows process
1 vote, 20.0%
1

2

3

4
4 votes, 80.0%
5
4.56/5 - 5 votes
μ 4.56, σa 3.50 [?]
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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmemberdarkfr3ak9:49 8 Nov '11  
GeneralPath PinmemberNiemand255:28 27 Jan '09  
GeneralRe: Path Pinmemberasugix20:42 3 Feb '09  
GeneralNice Article PinmemberSyed M Hussain10:54 21 Jan '09  
AnswerRe: Nice Article Pinmemberasugix19:06 21 Jan '09  
GeneralMy vote of 1 Pinmemberkarabax7:15 21 Jan '09  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

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