mysql
文章平均质量分 74
DBA学习记录
这个作者很懒,什么都没留下…
展开
-
MySQL数据文件介绍及存放位置
一、MySQL数据库文件介绍 MySQL的每个数据库都对应存放在一个与数据库同名的文件夹中,MySQL数据库文件包括MySQL所建数据库文件和MySQL所用存储引擎创建的数据库文件。 1、MySQL创建并管理的数据库文件: .frm文件:存储数据表的框架结构,文件名与表名相同,每个表对应一个同名frm文件,与操作系统和存储引擎无关,即不管MySQL运行在何种操作系统上,使用何种存转载 2015-02-25 14:17:35 · 469 阅读 · 0 评论 -
开启InnoDB引擎
[root@djipidb01-dr mysqldata]# /etc/init.d/mysqld start MySQL Daemon failed to start. 150415 10:38:25 mysqld_safe Starting mysqld daemon with databases from /mysqldata 150415 10:38:25 Inno原创 2015-04-15 11:30:09 · 491 阅读 · 0 评论 -
Last_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are
mysql> SHOW SLAVE STATUS\G; *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: 10.10.1原创 2016-05-30 10:16:39 · 1321 阅读 · 0 评论 -
Mysql 密码安全策略: validate_password_policy
Server version: 5.7.9-log MySQLCommunity Server (GPL) mysql> GRANT REPLICATION CLIENT ON *.*TO 'zabbix'@'%' IDENTIFIED BY ‘xxxxxxxx’; ERROR 1819 (HY000): Your password does notsatisfy原创 2017-04-28 23:00:34 · 14194 阅读 · 0 评论 -
mysql 批量kill session
root@localhost > select concat('KILL ',id,';') from information_schema.processlist where user=’sam' into outfile '/tmp/a.txt 脚本内容如下: +------------------------+ | concat('KIL转载 2018-01-14 10:53:46 · 1910 阅读 · 0 评论