Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How Do You Know If Your MySQL Server Is Alive
How Do You Know If Your MySQL Server Is Alive? - MySQL FAQs - Downloading and Installing MySQL on Windows
✍: FYIcenter.com
If you want to know whether your MySQL server is alive, you can use the "mysqladmin" program in a command window as shown in the following tutorial:
>cd \mysql\bin >mysqladmin -u root ping mysqld is alive
The "mysqld is alive" message tells you that your MySQL server is running ok. If your MySQL server is not running, you will get a "connect ... failed" message.
2007-05-10, 4772👍, 0💬
Popular Posts:
How To Calculate Expressions with SQL Statements? - MySQL FAQs - Introduction to SQL Basics There is...
What is the quickest sorting method to use? The answer depends on what you mean by quickest. For mos...
How do we configure “WebGarden”? “Web garden” can be configured by using process model settings in...
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...
What are the different storage classes in C? C has three types of storage: automatic, static and all...