码迷,mamicode.com
首页 > 数据库 > 详细

MySQL Study之--mysqladmin工具应用

时间:2015-12-14 19:21:48      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:mysql

MySQL Study之--mysqladmin工具应用

1、查看mysql server是否启动

[root@rh64 ~]# mysqladmin -u root -p ping

Enter password: 

mysqld is alive

2、查看mysql server版本

[root@rh64 ~]# mysqladmin -u root -p version
Enter password: 
mysqladmin  Ver 8.42 Distrib 5.6.25-73.1, for Linux on x86_64
Copyright (c) 2009-2015 Percona LLC and/or its affiliates
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Server version          5.6.25-73.1-log
Protocol version        10
Connection              Localhost via UNIX socket
UNIX socket             /var/lib/mysql/mysql.sock
Uptime:                 1 min 33 sec
Threads: 1  Questions: 10  Slow queries: 0  Opens: 67  Flush tables: 1  Open tables: 60  Queries per second avg: 0.107
3、查看mysql server状态
[root@rh64 ~]# mysqladmin -u root -p status

Enter password: 

Uptime: 156  Threads: 1  Questions: 13  Slow queries: 0  Opens: 67  Flush tables: 1  Open tables: 60  Queries per second avg: 0.083

4、查看mysql server扩展信息

[root@rh64 ~]# mysqladmin -u root -p extended-status
Enter password: 
+-----------------------------------------------+-------------+
| Variable_name                                 | Value       |
+-----------------------------------------------+-------------+
| Aborted_clients                               | 0           |
| Aborted_connects                              | 1           |
| Binlog_snapshot_file                          |             |
| Binlog_snapshot_position                      | 0           |
| Binlog_cache_disk_use                         | 0           |
| Binlog_cache_use                              | 0           |
| Binlog_stmt_cache_disk_use                    | 0           |
| Binlog_stmt_cache_use                         | 0           |
......
5、查看mysql server变量信息
[root@rh64 ~]# mysqladmin -u root -p variables 

------------------------------------------------------+
| auto_increment_increment                               | 1                           
| auto_increment_offset                                  | 1                                            |
| autocommit                                             | ON                                                                    |
| automatic_sp_privileges                                | ON                                                  |
| avoid_temporal_upgrade                                 | OFF

6、查看mysql server进程
[root@rh64 ~]# mysqladmin -u root -p processlist

Enter password: 
+----+------+-----------+----+---------+------+-------+------------------+-----------+---------------+
| Id | User | Host      | db | Command | Time | State | Info             | Rows_sent | Rows_examined |
+----+------+-----------+----+---------+------+-------+------------------+-----------+---------------+
| 13 | root | localhost |    | Query   | 0    | init  | show processlist | 0         | 0             |
+----+------+-----------+----+---------+------+-------+------------------+-----------+---------------+
7、通过mysqladmin创建数据库
[root@rh64 ~]# mysqladmin -u root -p create  testdb;

Enter password: 

删除数据库:

[root@rh64 ~]# mysqladmin -u root -p drop testdb;
Enter password: 
Dropping the database is potentially a very bad thing to do.
Any data stored in the database will be destroyed.
Do you really want to drop the ‘testdb‘ database [y/N] y
Database "testdb" dropped
8、mysql server重新载入权限列表
[root@rh64 ~]# mysqladmin -u root -p reload

Enter password: 
[root@rh64 ~]# mysqladmin -u root -p refresh
Enter password: 
[root@rh64 ~]# mysqladmin -u root -p flush-hosts
Enter password: 
[root@rh64 ~]# mysqladmin -u root -p flush-logs
Enter password: 
[root@rh64 ~]# mysqladmin -u root -p flush-privileges
Enter password: 
[root@rh64 ~]# mysqladmin -u root -p flush-status
Enter password: 
[root@rh64 ~]# mysqladmin -u root -p flush-tables
Enter password: 
[root@rh64 ~]# mysqladmin -u root -p flush-threads
Enter password: 
9、通过mysqladmin关库
[root@rh64 ~]# mysqladmin -u root -p shutdown 

Enter password: 


本文出自 “天涯客的blog” 博客,请务必保留此出处http://tiany.blog.51cto.com/513694/1722830

MySQL Study之--mysqladmin工具应用

标签:mysql

原文地址:http://tiany.blog.51cto.com/513694/1722830

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!