MySQL - Tools that are available for managing MySQL Server

Explain the tools that are available for managing MySQL Server.

Following are the tools to manage MySQL server:

mysqld - MySQL server daemon. It is used to start the mysql server.
mysqladmin – Used to perform administrative tasks.

Example:

Mysqladmin shutdown – Used to shut down mysql server.
Mysqladmin ping – check the alive status of the server.
Mysqladmin version – to check version of mysql server.
mysql - A command-line interface for end users to manage user data objects.
mysqlcheck - A command-line interface for administrators to check and repair tables.
mysqlshow - A command-line interface for end users to see information on tables and columns.
mysqldump - A command-line interface for administrators or end users to export data from the server to files.
mysqlimport - A command-line interface for administrators or end users to load data files into tables program tool to load data into tables.
MySQL - Purpose of "mysql" command-line interface
Purpose of mysql command-line interface - Mysql or mysql monitor is a Command line interface used to manage mysql’s data objects like databases, tables etc..
MySQL - What is "mysqld"?
What is mysqld? - Mysqld is a daemon server program typically used to start and stop mysql server. It runs in the background......
MySQL - Explain the concept of "mysqlcheck" command-line interface
Explain the concept of mysqlcheck command-line interface - Mysqlcheck is used for Admin’s to check and repair the mysql tables......
Post your comment