脚踏实地、勇往直前!
全部博文(1005)
发布时间:2016-12-13 16:00:58
mysql版本:社区版5.6.34告警信息:2016-12-13 15:55:11 4bc8b940 InnoDB: Error: Table "mysql"."innodb_table_stats" not found.2016-12-13 15:55:11 4bc8b940 InnoDB: Recalculation of persistent statistics requested for table "chenli"."cp_tb_test" but the required persistent statistics storage is not pr.........【阅读全文】
发布时间:2016-12-12 13:59:18
我这里下载的是mysql-5.5.53-linux2.6-x86_64.tar.gz1.创建mysql用户和用户组#groupadd mysql#useradd -g mysql mysql#passwd mysql2.下载解压二进制文件,解压,进入解压出来的文件[root@host01 db]# tar -xvf mysql-5.6.34-linux-glibc2.5-x86_64.tar.gz[root@host01 db]# mv mysql-5.6.34-linux-glibc2.5-x86_64 m.........【阅读全文】
发布时间:2016-12-12 11:18:43
版本:社区版 5.6.34我这里下载的是mysql-5.6.34-linux-glibc2.5-x86_64.tar.gz1.创建mysql用户和用户组#groupadd mysql#useradd -g mysql mysql#passwd mysql2.下载解压二进制文件,解压,进入解压出来的文件[root@host01 db]# tar -xvf mysql-5.6.34-linux-glibc2.5-x86_64.tar.gz[root@host01 db]# mv mysql.........【阅读全文】
发布时间:2016-12-10 20:24:23
版本:5.7.11引擎:innodb物理删除表文件的恢复办法:1.创建一个跟删除表结构一样的表(前提是要知道被删除表的结构)mysql> create table tb_t2(id int);Query OK, 0 rows affected (0.04 sec)2.拷贝表结构文件[mysql@host02 hxl]$ cp -a tb_t2.frm tb_t1.frm[mysql@host02 hxl]$ ls -altotal 204drwxr-x--- 2 my.........【阅读全文】
发布时间:2016-12-10 18:31:16
版本:5.7.11mysql> flush privileges;ERROR 1146 (42S02): Table 'mysql.servers' doesn't existmysql> use mysql;Database changedmysql> mysql> mysql> mysql> create table servers ( -> server_name char(64) not null, -> host char(64) not null, .........【阅读全文】