What is "mysqladmin"?Mysqlcheck is used to perform administrative tasks.
Following are the options:-
1. "mysqladmin shutdown" - Shuts down the server.
2. "mysqladmin ping" - Checks if the server is alive or not.
3. "mysqladmin status" - Displays several important server status values.
4. "mysqladmin version" - Displays version information of the server.
5. "mysqladmin create databaseName" - Creates a new database.
6. "mysqladmin drop databaseName" - Drops an existing database.
|