Deploy MySQL https://kubernetes.io/docs/tasks/run-application/run-single-instance-stateful-application/ You can run a stateful application by creating a Kubernetes Deployment and connecting it to an existing PersistentVolume using a PersistentVolumeC…
Install LEMP (Linux, Nginx, MySQL and PHP) Stack on Ubuntu Linux 14.04 LTS by VIVEK GITE on DECEMBER 2, 2014 I'm a new Ubuntu Linux user. How do I install the LEMP stack on an Ubuntu Linux 14.04 LTS server using command line options to serve dynamic…
问题出现的前因: 因为重新安装了MySQL Router,然后打算重新连接上目标集群进行MySQL Router的初始化引导,结果报错了! [root@linux666 system]# mysqlrouter --bootstrap icadmin@linux03:3306 --user root Please enter MySQL password for icadmin: # Bootstrapping system MySQL Router instance... Error: It…
背景: MySQL 大字段的DDL操作:加减字段.索引.修改字段属性等,在5.1之前都是非常耗时耗力的,特别是会对MySQL服务产生影响.在5.1之后随着Plugin Innodb的出现在线加索引的提高了很多,但是还会影响(时间缩短了),主要是出现了MDL锁.不过5.6可以避免上面的情况,但目前大部分在用的版本都是5.6之前的,所以DDL操作一直是运维人员“头疼"的事.那如何在不锁表的情况下安全快速地更新表结构?现在来说明下percona-toolkit 的pt-online-schema-ch…
摘要: 死锁:是指两个或则多个事务在同一个资源上相互占用,并请求锁定对方占用的资源,而导致恶性循环的现象:当产生死锁的时候,MySQL会回滚一个小事务的SQL,确保另一个完成.上面是死锁的概念,而在MySQL中innodb会出现死锁的情况,但是查看死锁却很不“智能”.只能通过 show engine innodb status 查看,但只保留最后一个死锁的信息,之前产生的死锁都被刷掉了.下面介绍的工具却很容易做到记录. 前提: 下载地址:wget www.percona.com/download…
背景: MySQL 大字段的DDL操作:加减字段.索引.修改字段属性等,在5.1之前都是非常耗时耗力的,特别是会对MySQL服务产生影响.在5.1之后随着Plugin Innodb的出现在线加索引的提高了很多,但是还会影响(时间缩短了),主要是出现了MDL锁.不过5.6可以避免上面的情况,但目前大部分在用的版本都是5.6之前的,所以DDL操作一直是运维人员“头疼"的事.那如何在不锁表的情况下安全快速地更新表结构?现在来说明下percona-toolkit 的pt-online-schema-ch…
pt-table-sync - Synchronize MySQL table data efficiently. pt-table-sync synchronizes data efficiently between MySQL tables. pt-table-sync是Percona-Toolkit工具集中的一个组件,主要用于表数据的高效同步. 因为涉及到数据的修改,所以为了安全,建议在工具修改数据前先进行备份.在主从环境下,它所做的变更都是基于主库,而不是直接修改从库,因为这是保持主从复…
pt-table-checksum - Verify MySQL replication integrity. pt-table-checksum performs an online replication consistency check by executing checksum queries on the master, which produces different results on replicas that are inconsistent with the master…
pt-online-schema-change - ALTER tables without locking them. pt-online-schema-change alters a table's structure without blocking reads or writes. Specify the database and table in the DSN. Do not use this tool before reading its documentation and che…
原文:http://www.unixmen.com/how-to-install-lamp-stack-on-ubuntu-16-04/ LAMP is a combination of operating system and open-source software stack. The acronym LAMP came from the first letters ofLinux, Apache HTTP Server, MySQL or MariaDB database, and PH…
MySQL的数据库名称,表名称是区分大小写,MySQL 的SQL keywords不区分大小写: if when you attempt to log in, you get an error message such as ERROR 2002 (HY000): can't connect to local Mysql server through socket '/tmp/mysql.sock'.(2),it means that the MySQL server daomon(Unix)…