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, 4829👍, 0💬
Popular Posts:
What Is URI? URI (Uniform Resource Identifier) is a superset of URL. URI provides a simple and exten...
What are the standard ways of parsing XML document? XML parser sits in between the XML document and ...
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...
What are some advantages and disadvantages of Java Sockets? Advantages of Java Sockets: Sockets are ...
Jack developed a program by using a Map container to hold key/value pairs. He wanted to make a chang...