`
sillycat
  • 浏览: 2552407 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

Mysql Scalability(6)Mysql Trouble Shooting

 
阅读更多

Mysql Scalability(6)Mysql Trouble Shooting

Error Message
ERROR 2013 (HY000): Lost connection to MySQL server during query

Remove and reinstall the mysql again.
>sudo apt-get autoremove --purge mysql-server
>sudo apt-get remove mysql-server
>sudo apt-get autoremove mysql-server
>sudo apt-get remove mysql-common

>sudo apt-get install software-properties-common
>sudo add-apt-repository ppa:ondrej/mysql-5.6
>sudo apt-get update
>sudo apt-get install mysql-server

drop the database and create it again.

>drop database sillycat;
>create database sillycat;
>use sillycat;
>create table branduser(id int primary key, username char(255), age int);
>insert into branduser(id, username, age) values ( 1, "sillycat", 32);

Then configure them to be master/slave.

The master/slave stop after I restart the server. So we need to turn on the master/slave again.

References:
http://www.mysqlperformanceblog.com/2008/07/04/recovering-innodb-table-corruption/

分享到:
评论

相关推荐

    MySQL 8 Administrator's Guide

    MySQL 8 Administrator's Guide pdf ...MySQL 8 - Scalability & High Availability MySQL 8 - Security Optimizing MySQL 8 Extending MySQL 8 MySQL 8 Best Practices & Benchmarking Troubleshooting MySQL 8

    mysql5.6手册英文版本

    ##### 3.4 HA/Scalability Guide - **高可用性**: 包括 MySQL Thread Pool、MySQL Partitioning 等。 - **扩展性**: 如 MySQL Proxy、MySQL and Virtualization 等。 #### 四、安全与合规 ##### 4.1 Security - ...

    MySQL V5.5帮助文档

    1.5.1. Scalability Improvements 1.5.2. InnoDB I/O Subsystem Changes 1.5.3. Enhanced Solaris Support 1.5.4. Diagnostic and Monitoring Capabilities 1.6. MySQL Information Sources 1.6.1. MySQL Mailing ...

    The Art of Scalability

    "Scalability Mastery" Scalability是指系统、软件或应用程序能够满足增长和变化的需求,而不影响其性能和可靠性。Scalability是一个非常重要的概念,在现代软件开发和 IT 行业中扮演着关键角色。下面是从《The Art...

    mysql5.6参考手册

    - **HA/Scalability**: 高可用性和可扩展性解决方案,如MySQL和DRBD的集成。 - **Storage Engines**: 多种存储引擎支持,如InnoDB、MyISAM等。 - **Globalization**: 国际化支持,包括多语言环境和字符集管理。 ###...

    MySQL 5.7 Reference Manual

    - **HA/Scalability Guide**:介绍如何设置高可用性和可扩展性的 MySQL 架构。 - **Server Administration**:涵盖服务器管理的基础知识,包括安装、配置和日常维护。 - **MySQL Yum Repository**:介绍了如何使用 ...

    MySQL 5.6产品文档

    - **HA/Scalability Guide**:文档中还包含了一个关于高可用性和可扩展性的指南,这对于构建能够处理大量数据和高并发访问的应用程序至关重要。 - **MySQL Yum Repository**:为便于在Linux系统上安装MySQL及其相关...

    mysql官方文档

    8. MySQL Enterprise Scalability(第10部分):这部分内容可能讲述了如何利用MySQL企业版来扩展数据库应用,以应对高流量和高并发情况。 9. MySQL Enterprise High Availability(第11部分):讨论了如何使用MySQL...

    mysql5.0参考手册-english

    - **HA/Scalability Guide** - 提供了关于如何提高MySQL系统的高可用性和可扩展性的指南。 - **复制** - 解释MySQL复制的工作原理,包括主从复制、多源复制等不同模式。 - **虚拟化** - 探讨在虚拟化环境中...

    MySQL High Availability 2nd 原版pdf by Bell

    MySQL High Availability and Scalability team. He is architect and implementor of several MySQL features. Dr. Lars Thalmann is the development director and technical lead of the MySQL Replication, ...

    mysql-ref-5.6-en.pdf

    - **不支持的特性**:MySQL Cluster在MySQL 5.6中暂不支持,有关MySQL Cluster的信息可以在MySQL Cluster NDB 6.X/7.X的相关文档中查找。 - **版本许可**:手册中提到了某些特性可能不会包含在所有版本的MySQL 5.6中...

    MySQL 5.6 Reference Manual

    - 功能和API:涵盖了MySQL的主要功能,包括MySQL企业版、MySQL Workbench、HA/Scalability(高可用性/可扩展性)、MySQL Yum仓库等。 - 连接器和APIs:包括了多种不同编程语言和环境下的MySQL连接器信息。 - 全球化...

    MySQL 5.5 参考手册(英文版)

    - **Scalability Improvements(可扩展性改进)**:MySQL 5.5在可扩展性方面进行了重大升级,优化了多核处理器的性能,并增强了并发操作的能力,使得数据库在高负载情况下仍能保持良好的响应速度。 - **InnoDB I/O ...

    Guide to Optimizing Performance of the MySQL Cluster Database

    This guide explores how to tune and optimize the MySQL Cluster database to handle diverse workload requirements. It discusses data access patterns and how to build distribution awareness into ...

    Guide to Scaling Web Databases with MySQL Cluster

    Auto-sharding for write-scalability; SQL and NoSQL interfaces; Real-time responsiveness; Active / active geographic replication; Online scaling and schema upgrades; 99.999% availability. This Guide ...

    MYSQL_架构设计

    【MySQL 架构设计】是关于如何设计MySQL数据库系统以实现可扩展性的主题。随着数据量的快速增长,传统的单机数据库处理能力往往无法满足需求,因此需要通过改变架构设计,增强系统的扩展性,以组合多台低性能硬件来...

Global site tag (gtag.js) - Google Analytics