当前位置:首页 > Mysql教程 > 列表

MySQL管理工具MySQL Utilities查询MySQL使用的空间大小

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-17 15:09:02 浏览: 评论:0 

我们准备备份或维护数据的时候,常常会考虑磁盘空间大小的问题,通常需要知道我们的数据和日志有多大,数据是至关重要的,数据是生命线.

使用mysqldiskusage 工具来查看数据库实例使用到的空间,包括数据库和各种日志大小.

实例:

  1. shell> sudo env PYTHONPATH=$PYTHONPATH mysqldiskusage \ 
  2. --server=root:root@localhost --all 
  3. # Source on localhost: ... connected. 
  4. Database totals: 
  5. +-----------------+--------------+ 
  6. | db_name         |       total  | 
  7. +-----------------+--------------+ 
  8. | oltp2           | 829,669      | 
  9. | bvm             | 15,129       | 
  10. | db1             | 9,895        | 
  11. | db2             | 11,035       | 
  12. | employees       | 206,117,692  | 
  13. | griots          | 14,415       | 
  14. | mysql           | 995,722      | 
  15. | oltp1           | 177,393      | 
  16. | room_temp       | 9,847        | 
  17. | sakila          | 791,727      | 
  18. | test            | 647,911      | 
  19. | test_arduino    | 9,999        | 
  20. | welford_kindle  | 72,032       | 
  21. | world           | 472,785      | 
  22. | world_innodb    | 829,669      | 
  23. +-----------------+--------------+ 
  24.  
  25. Total database disk usage = 210,175,251 bytes or 200.44 MB 
  26.  
  27. # Log information. 
  28. +--------------------+--------------+ 
  29. | log_name           |        size  | 
  30. +--------------------+--------------+ 
  31. | host123.log        | 957,282,265  | 
  32. | host123-slow.log   |     123,647  | 
  33. | host123.local.err  | 321,772,803  | 
  34. +--------------------+--------------+ 
  35.  
  36. Total size of logs = 1,279,178,715 bytes or 1.19 GB 
  37.  
  38. Binary log information: 
  39. Current binary log file = my_log.000287 
  40. +----------------+---------+ 
  41. | log_file       | size    | 
  42. +----------------+---------+ 
  43. | my_log.000285  | 252208  | 
  44. | my_log.000286  | 256     | 
  45. | my_log.000287  | 3063    | 
  46. | my_log.index   | 48      | 
  47. +----------------+---------+ 
  48.  
  49. Total size of binary logs = 255,575 bytes or 249.58 KB 
  50.  
  51. # Server is not an active slave - no relay log information. 
  52. # InnoDB tablespace information: --phpfensi.com 
  53. +--------------+--------------+ 
  54. | innodb_file  |        size  | 
  55. +--------------+--------------+ 
  56. | ib_logfile0  |   5,242,880  | 
  57. | ib_logfile1  |   5,242,880  | 
  58. | ibdata1      | 815,792,128  | 
  59. | ibdata2      |  52,428,800  | 
  60. +--------------+--------------+ 
  61.  
  62. Total size of InnoDB files = 889,192,448 bytes or 848.00 MB 
  63.  
  64. InnoDB freespace = 635,437,056 bytes or 606.00 MB 

使用–all选项,将显示所有日志和InnoDB的磁盘使用情况,也会列出所有数据库,即使不包含任何数据.

权限:用户必须具有读取数据目录的权限.

Tags: MySQL管理工具 MySQL空间大小

分享到: