Community journal

The latest from the MySQL community

Ideas, releases, practical guides, and perspectives from the people building with MySQL.

Follow the feed
Showing entries 2151 to 2160 of 15691 « Previous | Next »
2.4. myisamchk — MyISAM Table-Maintenance Utility

先停止mysqld,在--datadir目录运行 myisamchk */*.MYI >/dev/null #检查哪些表需要修复 修复用以下命令一个个修复: myisamchk -r table.

【mysql】  【myisam】   点击查看原文>

1.7. MySQL Custer

The cluster need a lot of server for experiments, if you haven't any server for one, I have a good idea that using Vmware for you.

【mysql】  【SQL】  【cluster】  【node】  【Server】  【Create】  【database】  【type】   …

[获取更多]
MHA高可用架构与Atlas读写分离

1.1 MHA简介 1.1.1 MHA软件介绍   MHA(Master High Availability)目前在MySQL高可用方面是一个相对成熟的解决方案,它由日本DeNA公司youshimaton(现就职于Facebook公司)开发,是一套优秀的作为MySQL高可用性环境下故障切换和主从提升的高可用软件。

【架构】  【服务器】  【mysql】  【日志】  【LOG】  【高可用】   …

[获取更多]
1.5. MySQL Plugin

1.5.1. validate_password

插件的卸载与安装 uninstall plugin validate_password; INSTALL PLUGIN validate_password SONAME 'validate_password.

【mysql】  【path】  【string】  【test】  【插件】  【Create】  【plugin】  【EXT】   …

[获取更多]
1.6. Replication

1.6.1. Master Slave

1.6.1.1. Master

过程 1.1. Master 设置步骤

配置 my.cnf 文件 确保主服务器主机上my.cnf文件的[mysqld]部分包括一个log-bin选项。

【服务器】  【mysql】  【数据库】  【配置】  【test】  【grant】  【replication】   …

[获取更多]
1.3. Percona

http://www.percona.com/

1.3.1. Percona yum Repository

# yum install http://www.percona.com/redir/downloads/percona-release/redhat/latest/percona-release-0.

【mysql】  【数据库】  【yum】  【rpm】  【stream】  【test】  【database】  【RedHat】   …

[获取更多]
1.4. my.cnf

1.4.1. bind-address

bind-address = 0.0.0.0

1.4.2. 禁用TCP/IP链接

与bind-address互斥,skip-networking 开启,只能通过UNIX SOCKET链接,而不能使用IP地址链接 [mysqld] skip-networking

1.

【mysql】  【LOG】  【数据库】  【配置】  【login】   点击查看原文>

第 1 章 MySQL Server

目录 1.1. MySQL Installation 1.1.1. Installation by apt-get under debian/ubuntu 1.1.2. Installation by source code 1.

【mysql】  【数据库】  【shell】  【yum】  【配置】  【rpm】  【Server】  【test】   …

[获取更多]
1.2. MariaDB

http://mariadb.org/

1.2.1. CentOS YUM 安装 MariaDB

cat >> /etc/yum.repos.d/MariaDB.repo
【mysql】  【SQL】  【数据库】  【yum】  【Server】  【Mariadb】  【test】  【fast】   …

[获取更多]
72.15. ERROR 1086 (HY000): File '/var/lib/mysql-files/order.txt' already exists

SELECT * FROM tabname INTO OUTFILE 不支持覆盖操作,这是MySQL从安全角度考虑的。 mysql> SELECT * FROM `order` INTO OUTFILE '/var/lib/mysql-files/order.txt'; ERROR 1086 (HY000): File '/var/lib/mysql-files/order.txt' already exists

原文出处:Netkiller 系列 手札 本文作者:陈景峯 转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

【安全】  【mysql】  【file】   点击查看原文>